Searched refs:HexDump (Results 1 – 6 of 6) sorted by relevance
/art/runtime/base/ |
D | hex_dump_test.cc | 33 TEST(HexDump, OneLine) { in TEST() argument 36 oss << HexDump(test_text, strlen(test_text), false, ""); in TEST() 42 TEST(HexDump, MultiLine) { in TEST() argument 45 oss << HexDump(test_text, strlen(test_text), false, ""); in TEST() 54 TEST(HexDump, ShowActualAddresses) { in TEST() argument 57 oss << HexDump(&g16byte_aligned_number, 8, true, ""); in TEST() 63 TEST(HexDump, Prefix) { in TEST() argument 66 oss << HexDump(test_text, strlen(test_text), false, "test prefix: "); in TEST()
|
D | hex_dump.h | 30 class HexDump { 32 HexDump(const void* address, size_t byte_count, bool show_actual_addresses, const char* prefix) in HexDump() function 45 DISALLOW_COPY_AND_ASSIGN(HexDump); 48 inline std::ostream& operator<<(std::ostream& os, const HexDump& rhs) {
|
D | hex_dump.cc | 25 void HexDump::Dump(std::ostream& os) const { in Dump()
|
/art/compiler/ |
D | cfi_test.h | 43 HexDump(f, actual_asm); in GenerateExpected() 46 HexDump(f, actual_cfi); in GenerateExpected() 135 static void HexDump(FILE* f, const std::vector<uint8_t>& data) { in HexDump() function
|
/art/runtime/arch/x86/ |
D | fault_handler_x86.cc | 278 VLOG(signals) << HexDump(pc, 32, true, "PC "); in GetMethodAndReturnPcAndSp()
|
/art/runtime/jdwp/ |
D | jdwp_handler.cc | 1632 LOG(ERROR) << HexDump(request->data(), request->size(), false, ""); in ProcessRequest() 1659 VLOG(jdwp) << HexDump(expandBufGetBuffer(pReply) + kJDWPHeaderLen, respLen, false, ""); in ProcessRequest()
|