HomeSort by relevance Sort by last modified time
    Searched refs:hex_address (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/base/debug/
trace_event_memory_unittest.cc 234 std::ostringstream hex_address; local
235 hex_address << &kHello;
236 EXPECT_STREQ(kHello, StringFromHexAddress(hex_address.str()));
trace_event_memory.h 144 // Returns a pointer to a string given its hexadecimal address in |hex_address|.
147 BASE_EXPORT const char* StringFromHexAddress(const std::string& hex_address);
trace_event_memory.cc 429 const char* StringFromHexAddress(const std::string& hex_address) {
431 if (!base::HexStringToUInt64(hex_address, &address))

Completed in 537 milliseconds