XBinder
Version 2.9.x
|
Go to the source code of this file.
Functions | |
EXTERNRT void | rtxPrintBoolean (const char *name, OSBOOL value) |
Prints a boolean value to stdout. More... | |
EXTERNRT void | rtxPrintDate (const char *name, const OSNumDateTime *pvalue) |
Prints a date value to stdout. More... | |
EXTERNRT void | rtxPrintTime (const char *name, const OSNumDateTime *pvalue) |
Prints a time value to stdout. More... | |
EXTERNRT void | rtxPrintDateTime (const char *name, const OSNumDateTime *pvalue) |
Prints a dateTime value to stdout. More... | |
EXTERNRT void | rtxPrintInteger (const char *name, OSINT32 value) |
Prints an integer value to stdout. More... | |
EXTERNRT void | rtxPrintInt64 (const char *name, OSINT64 value) |
Prints a 64-bit integer value to stdout. More... | |
EXTERNRT void | rtxPrintIpv4Addr (const char *name, OSSIZE numocts, const OSOCTET *data) |
This function prints the value of a binary string in IPv4 address format to standard output. More... | |
EXTERNRT void | rtxPrintIpv6Addr (const char *name, OSSIZE numocts, const OSOCTET *data) |
This function prints the value of a binary string in IPv6 address format to standard output. More... | |
EXTERNRT void | rtxPrintTBCDStr (const char *name, OSSIZE numocts, const OSOCTET *data) |
This function prints the value of a binary string in TBCD format to standard output. More... | |
EXTERNRT void | rtxPrintText (const char *name, OSSIZE numocts, const OSOCTET *data) |
This function prints the value of a binary string in ASCII text format to standard output. More... | |
EXTERNRT void | rtxPrintUnsigned (const char *name, OSUINT32 value) |
Prints an unsigned integer value to stdout. More... | |
EXTERNRT void | rtxPrintUInt64 (const char *name, OSUINT64 value) |
Prints an unsigned 64-bit integer value to stdout. More... | |
EXTERNRT void | rtxPrintHexStr (const char *name, OSSIZE numocts, const OSOCTET *data) |
This function prints the value of a binary string in hex format to standard output. More... | |
EXTERNRT void | rtxPrintHexStrPlain (const char *name, OSSIZE numocts, const OSOCTET *data) |
This function prints the value of a binary string in hex format to standard output. More... | |
EXTERNRT void | rtxPrintHexStrNoAscii (const char *name, OSSIZE numocts, const OSOCTET *data) |
This function prints the value of a binary string in hex format to standard output. More... | |
EXTERNRT void | rtxPrintHexBinary (const char *name, OSSIZE numocts, const OSOCTET *data) |
Prints an octet string value in hex binary format to stdout. More... | |
EXTERNRT void | rtxPrintCharStr (const char *name, const char *cstring) |
Prints an ASCII character string value to stdout. More... | |
EXTERNRT void | rtxPrintUTF8CharStr (const char *name, const OSUTF8CHAR *cstring) |
Prints a UTF-8 encoded character string value to stdout. More... | |
EXTERNRT void | rtxPrintUnicodeCharStr (const char *name, const OSUNICHAR *str, int nchars) |
This function prints a Unicode string to standard output. More... | |
EXTERNRT void | rtxPrintReal (const char *name, OSREAL value) |
Prints a REAL (float, double, decimal) value to stdout. More... | |
EXTERNRT void | rtxPrintNull (const char *name) |
Prints a NULL value to stdout. More... | |
EXTERNRT void | rtxPrintNVP (const char *name, const OSUTF8NVP *value) |
Prints a name-value pair to stdout. More... | |
EXTERNRT void | rtxPrintArrayNVP (const char *name, OSSIZE subscript, const OSUTF8NVP *value) |
Prints a name-value pair to stdout. More... | |
EXTERNRT int | rtxPrintFile (const char *filename) |
This function prints the contents of a text file to stdout. More... | |
EXTERNRT void | rtxPrintIndent (OSVOIDARG) |
This function prints indentation spaces to stdout. | |
EXTERNRT void | rtxPrintIncrIndent (OSVOIDARG) |
This function increments the current indentation level. | |
EXTERNRT void | rtxPrintDecrIndent (OSVOIDARG) |
This function decrements the current indentation level. | |
EXTERNRT void | rtxPrintCloseBrace (OSVOIDARG) |
This function closes a braced region by decreasing the indent level, printing indent spaces, and printing the closing brace. | |
EXTERNRT void | rtxPrintOpenBrace (const char *) |
This function opens a braced region by printing indent spaces, printing the name and opening brace, and increasing the indent level. | |
EXTERNRT const char * | rtxGetArrayElemName (char *buffer, OSSIZE bufsize, const char *name, OSSIZE subscript) |
This function returns an array element name in the form of 'name[subscript]' in the given character array buffer. More... | |