ASN1C C/C++ Common Runtime
ASN1C v7.4.x
|
Functions | |
void | rtxPrintBoolean (const char *name, OSBOOL value) |
void | rtxPrintDate (const char *name, const OSNumDateTime *pvalue) |
void | rtxPrintTime (const char *name, const OSNumDateTime *pvalue) |
void | rtxPrintDateTime (const char *name, const OSNumDateTime *pvalue) |
void | rtxPrintGYear (const char *name, const OSNumDateTime *pvalue) |
void | rtxPrintGYearMonth (const char *name, const OSNumDateTime *pvalue) |
void | rtxPrintGMonth (const char *name, const OSNumDateTime *pvalue) |
void | rtxPrintGMonthDay (const char *name, const OSNumDateTime *pvalue) |
void | rtxPrintGDay (const char *name, const OSNumDateTime *pvalue) |
void | rtxPrintInteger (const char *name, OSINT32 value) |
void | rtxPrintInt64 (const char *name, OSINT64 value) |
void | rtxPrintIpv4Addr (const char *name, OSSIZE numocts, const OSOCTET *data) |
void | rtxPrintIpv6Addr (const char *name, OSSIZE numocts, const OSOCTET *data) |
void | rtxPrintTBCDStr (const char *name, OSSIZE numocts, const OSOCTET *data) |
void | rtxPrintText (const char *name, OSSIZE numocts, const OSOCTET *data) |
void | rtxPrintUnsigned (const char *name, OSUINT32 value) |
void | rtxPrintUInt64 (const char *name, OSUINT64 value) |
void | rtxPrintHexStr (const char *name, OSSIZE numocts, const OSOCTET *data) |
void | rtxPrintHexStrPlain (const char *name, OSSIZE numocts, const OSOCTET *data) |
void | rtxPrintHexStrNoAscii (const char *name, OSSIZE numocts, const OSOCTET *data) |
void | rtxPrintHexBinary (const char *name, OSSIZE numocts, const OSOCTET *data) |
void | rtxPrintCharStr (const char *name, const char *cstring) |
void | rtxPrintUTF8CharStr (const char *name, const OSUTF8CHAR *cstring) |
void | rtxPrintUnicodeCharStr (const char *name, const OSUNICHAR *str, int nchars) |
void | rtxPrintUnicodeCharStr64 (const char *name, const OSUNICHAR *str, OSSIZE nchars) |
void | rtxPrintReal (const char *name, OSREAL value) |
void | rtxPrintNull (const char *name) |
void | rtxPrintNVP (const char *name, const OSUTF8NVP *value) |
int | rtxPrintFile (const char *filename) |
void | rtxPrintIndent (OSVOIDARG) |
void | rtxPrintIncrIndent (OSVOIDARG) |
void | rtxPrintDecrIndent (OSVOIDARG) |
void | rtxPrintCloseBrace (OSVOIDARG) |
void | rtxPrintOpenBrace (const char *) |
These functions simply print the output in a "name=value" format. The value format is obtained by calling one of the ToString functions with the given value.
void rtxPrintBoolean | ( | const char * | name, |
OSBOOL | value | ||
) |
Prints a boolean value to stdout.
name | The name of the variable to print. |
value | Boolean value to print. |
void rtxPrintCharStr | ( | const char * | name, |
const char * | cstring | ||
) |
Prints an ASCII character string value to stdout.
name | The name of the variable to print. |
cstring | A pointer to the character string to be printed. |
Referenced by OSRTFastString::print(), OSRTUTF8String::print(), and OSRTString::print().
void rtxPrintCloseBrace | ( | OSVOIDARG | ) |
This function closes a braced region by decreasing the indent level, printing indent spaces, and printing the closing brace.
void rtxPrintDate | ( | const char * | name, |
const OSNumDateTime * | pvalue | ||
) |
Prints a date value to stdout.
name | Name of the variable to print. |
pvalue | Pointer to a structure that holds numeric DateTime value to print. |
void rtxPrintDateTime | ( | const char * | name, |
const OSNumDateTime * | pvalue | ||
) |
Prints a dateTime value to stdout.
name | Name of the variable to print. |
pvalue | Pointer to a structure that holds numeric DateTime value to print. |
void rtxPrintDecrIndent | ( | OSVOIDARG | ) |
This function decrements the current indentation level.
int rtxPrintFile | ( | const char * | filename | ) |
This function prints the contents of a text file to stdout.
filename | The name of the text file to print. |
void rtxPrintHexBinary | ( | const char * | name, |
OSSIZE | numocts, | ||
const OSOCTET * | data | ||
) |
Prints an octet string value in hex binary format to stdout.
name | The name of the variable to print. |
numocts | The number of octets to be printed. |
data | A pointer to the data to be printed. |
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. If the string is 32 bytes or less, it is printed on a single line with a '0x' prefix. If longer, a formatted hex dump showing both hex and ascii codes is done.
name | The name of the variable to print. |
numocts | The number of octets to be printed. |
data | A pointer to the data to be printed. |
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. In contrast to rtxPrintHexStr, it never contains an ASCII dump.
name | The name of the variable to print. |
numocts | The number of octets to be printed. |
data | A pointer to the data to be printed. |
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. In contrast to rtxPrintHexStr, it is always printed on a single line with a '0x' prefix.
name | The name of the variable to print. |
numocts | The number of octets to be printed. |
data | A pointer to the data to be printed. |
void rtxPrintIncrIndent | ( | OSVOIDARG | ) |
This function increments the current indentation level.
void rtxPrintIndent | ( | OSVOIDARG | ) |
This function prints indentation spaces to stdout.
void rtxPrintInt64 | ( | const char * | name, |
OSINT64 | value | ||
) |
Prints a 64-bit integer value to stdout.
name | The name of the variable to print. |
value | 64-bit integer value to print. |
void rtxPrintInteger | ( | const char * | name, |
OSINT32 | value | ||
) |
Prints an integer value to stdout.
name | The name of the variable to print. |
value | Integer value to print. |
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.
name | The name of the variable to print. |
numocts | The number of octets to be printed. |
data | A pointer to the data to be printed. |
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.
name | The name of the variable to print. |
numocts | The number of octets to be printed. |
data | A pointer to the data to be printed. |
void rtxPrintNull | ( | const char * | name | ) |
Prints a NULL value to stdout.
name | The name of the variable to print. |
void rtxPrintNVP | ( | const char * | name, |
const OSUTF8NVP * | value | ||
) |
Prints a name-value pair to stdout.
name | The name of the variable to print. |
value | A pointer to name-value pair structure to print. |
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.
void rtxPrintReal | ( | const char * | name, |
OSREAL | value | ||
) |
Prints a REAL (float, double, decimal) value to stdout.
name | The name of the variable to print. |
value | REAL value to print. |
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.
name | The name of the variable to print. |
numocts | The number of octets to be printed. |
data | A pointer to the data to be printed. |
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.
name | The name of the variable to print. |
numocts | The number of octets to be printed. |
data | A pointer to the data to be printed. |
void rtxPrintTime | ( | const char * | name, |
const OSNumDateTime * | pvalue | ||
) |
Prints a time value to stdout.
name | Name of the variable to print. |
pvalue | Pointer to a structure that holds numeric DateTime value to print. |
void rtxPrintUInt64 | ( | const char * | name, |
OSUINT64 | value | ||
) |
Prints an unsigned 64-bit integer value to stdout.
name | The name of the variable to print. |
value | Unsigned 64-bit integer value to print. |
void rtxPrintUnicodeCharStr | ( | const char * | name, |
const OSUNICHAR * | str, | ||
int | nchars | ||
) |
This function prints a Unicode string to standard output. Characters in the string that are within the normal Ascii range are printed as single characters. Characters outside the Ascii range are printed as 4-byte hex codes (0xnnnn).
name | The name of the variable to print. |
str | Pointer to unicode sring to be printed. String is an array of C unsigned short data variables. |
nchars | Number of characters in the string. If value is negative, string is assumed to be null-terminated (i.e. ends with a 0x0000 character). |
void rtxPrintUnsigned | ( | const char * | name, |
OSUINT32 | value | ||
) |
Prints an unsigned integer value to stdout.
name | The name of the variable to print. |
value | Unsigned integer value to print. |
void rtxPrintUTF8CharStr | ( | const char * | name, |
const OSUTF8CHAR * | cstring | ||
) |
Prints a UTF-8 encoded character string value to stdout.
name | The name of the variable to print. |
cstring | A pointer to the character string to be printed. |