module ti.uia.runtime.UIAMetaData |
 |
 |
 |
Unified Arch. Hardware Interrupt Context Instrumentation
The UIAHWICtx module defines context change events
and methods that allow tooling to identify hardware interrutp context
switches and to enable HWI-aware filtering, trace and
analysis.
#include <ti/uia/runtime/UIAMetaData.h>
Functions common to all target modules |
|
|
Module-Wide Built-Ins |
 |
// Get this module's unique id
Bool UIAMetaData_Module_startupDone();
// Test if this module has completed startup
// The heap from which this module allocates memory
Bool UIAMetaData_Module_hasMask();
// Test whether this module has a diagnostics mask
Bits16 UIAMetaData_Module_getMask();
// Returns the diagnostics mask for this module
Void UIAMetaData_Module_setMask(Bits16 mask);
// Set the diagnostics mask for this module
var UIAMetaData = xdc.useModule('ti.uia.runtime.UIAMetaData');
module-wide config parameters
module-wide functions
metaonly config UIAMetaData.common$ // module-wide |
 |
Common module configuration parameters
XDCscript usage |
meta-domain |
DETAILS
All modules have this configuration parameter. Its name
contains the '$' character to ensure it does not conflict with
configuration parameters declared by the module. This allows
new configuration parameters to be added in the future without
any chance of breaking existing modules.
metaonly UIAMetaData.genXmlComment() // module-wide |
 |
add an XML style comment to the active xml file
XDCscript usage |
meta-domain |
UIAMetaData.genXmlComment(Any indent, Any comment) returns Any
metaonly UIAMetaData.genXmlEntry() // module-wide |
 |
write an entry into an xml file
XDCscript usage |
meta-domain |
UIAMetaData.genXmlEntry(Any indent, Any tag, Any value) returns Any
DETAILS
e.g. <myTag>myValue</myTag>\n
metaonly UIAMetaData.genXmlEntryClose() // module-wide |
 |
write an entry into an xml file with a key field
XDCscript usage |
meta-domain |
UIAMetaData.genXmlEntryClose(Any indent, Any tag) returns Any
DETAILS
e.g. </myTag>\n
metaonly UIAMetaData.genXmlEntryOpen() // module-wide |
 |
write an entry into an xml file with a key field
XDCscript usage |
meta-domain |
UIAMetaData.genXmlEntryOpen(Any indent, Any tag) returns Any
DETAILS
e.g. <myTag myKeyName=myKeyValue>
metaonly UIAMetaData.genXmlEntryOpenWithKey() // module-wide |
 |
write an entry into an xml file with a key field
XDCscript usage |
meta-domain |
UIAMetaData.genXmlEntryOpenWithKey(Any indent, Any tag, Any keyName, Any keyValue, Any value) returns Any
DETAILS
e.g. <myTag myKeyName=myKeyValue>
metaonly UIAMetaData.genXmlEntryWithKey() // module-wide |
 |
write an entry into an xml file with a key field
XDCscript usage |
meta-domain |
UIAMetaData.genXmlEntryWithKey(Any indent, Any tag, Any keyName, Any keyValue, Any value) returns Any
DETAILS
e.g. <myTag myKeyName=myKeyValue>myValue</myTag>\n
metaonly UIAMetaData.generateXML() // module-wide |
 |
XDCscript usage |
meta-domain |
UIAMetaData.generateXML() returns Any
generated on Thu, 15 Sep 2011 17:27:05 GMT