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