printBinary overloads
Declared in <llvm/Support/ScopedPrinter.h>
Print a labeled binary blob from a string's bytes.
void
printBinary(
StringRef Label,
StringRef Value);
» more...
Print a labeled binary blob of chars.
void
printBinary(
StringRef Label,
ArrayRef<char> Value);
» more...
Print a labeled binary blob of unsigned bytes.
void
printBinary(
StringRef Label,
ArrayRef<uint8_t> Value);
» more...
Print a labeled binary blob of chars with a symbolic string value.
void
printBinary(
StringRef Label,
StringRef Str,
ArrayRef<char> Value);
» more...
Print a labeled binary blob with a symbolic string value.
void
printBinary(
StringRef Label,
StringRef Str,
ArrayRef<uint8_t> Value);
» more...
| Name | Description |
|---|---|
| Label | Field label to print. |
| Value | String whose bytes are printed. |
| Str | Symbolic string associated with the bytes. |