Searched refs:IntToHexString (Results 1 – 14 of 14) sorted by relevance
/aosp_15_r20/device/google/cuttlefish/host/commands/modem_simulator/ |
D | pdu_parser.cpp | 250 std::string PDUParser::IntToHexString(int value) { in IntToHexString() function in cuttlefish::PDUParser 322 time_stamp += IntToHexString(local_time.tm_year % 100); in GetCurrentTimeStamp() 323 time_stamp += IntToHexString(local_time.tm_mon + 1); in GetCurrentTimeStamp() 324 time_stamp += IntToHexString(local_time.tm_mday); in GetCurrentTimeStamp() 325 time_stamp += IntToHexString(local_time.tm_hour); in GetCurrentTimeStamp() 326 time_stamp += IntToHexString(local_time.tm_min); in GetCurrentTimeStamp() 327 time_stamp += IntToHexString(local_time.tm_sec); in GetCurrentTimeStamp()
|
D | pdu_parser.h | 41 std::string IntToHexString(int value);
|
/aosp_15_r20/external/pigweed/pw_string/ |
H A D | type_to_string_test.cc | 288 auto result = IntToHexString(i, buffer_); in TEST_F() 297 EXPECT_TRUE(IntToHexString(val, buffer_, 8).ok()); in TEST_F() 304 IntToHexString(std::numeric_limits<uint32_t>::max() - 1, buffer_).size()); in TEST_F() 308 8u, IntToHexString(std::numeric_limits<uint32_t>::max(), buffer_).size()); in TEST_F() 315 IntToHexString(std::numeric_limits<uint64_t>::max() - 1, buffer_).size()); in TEST_F() 320 IntToHexString(std::numeric_limits<uint64_t>::max(), buffer_).size()); in TEST_F() 325 auto result = IntToHexString(0xbeef, span(buffer_, 0)); in TEST_F() 332 auto result = IntToHexString(0xbeef, span(buffer_, 3)); in TEST_F()
|
H A D | type_to_string.cc | 27 StatusWithSize IntToHexString(uint64_t value, in IntToHexString() function 75 return IntToHexString(reinterpret_cast<uintptr_t>(pointer), buffer); in PointerToString()
|
/aosp_15_r20/external/perfetto/src/base/ |
H A D | string_utils_unittest.cc | 272 EXPECT_EQ(IntToHexString(0), "0x00"); in TEST() 273 EXPECT_EQ(IntToHexString(1), "0x01"); in TEST() 274 EXPECT_EQ(IntToHexString(16), "0x10"); in TEST() 275 EXPECT_EQ(IntToHexString(4294967295), "0xffffffff"); in TEST()
|
H A D | string_utils.cc | 177 std::string IntToHexString(uint32_t number) { in IntToHexString() function
|
/aosp_15_r20/external/pigweed/pw_hex_dump/ |
H A D | hex_dump.cc | 26 using pw::string::IntToHexString; 80 return IntToHexString(addr, dest.subspan(2), sizeof(uintptr_t) * 2).status(); in DumpAddr()
|
/aosp_15_r20/external/pigweed/pw_string/public/pw_string/ |
H A D | type_to_string.h | 73 StatusWithSize IntToHexString(uint64_t value,
|
H A D | to_string.h | 241 return string::IntToHexString(static_cast<unsigned>(byte), buffer, 2);
|
/aosp_15_r20/external/perfetto/src/trace_processor/importers/proto/ |
H A D | pixel_modem_parser.cc | 111 base::IntToHexString(token).c_str()))); in ParseEvent()
|
/aosp_15_r20/prebuilts/runtime/mainline/platform/sdk/include/external/perfetto/include/perfetto/ext/base/ |
H A D | string_utils.h | 126 std::string IntToHexString(uint32_t number);
|
/aosp_15_r20/external/perfetto/include/perfetto/ext/base/ |
H A D | string_utils.h | 171 std::string IntToHexString(uint32_t number);
|
/aosp_15_r20/external/perfetto/src/trace_processor/importers/ftrace/ |
H A D | binder_tracker.cc | 265 base::IntToHexString(flags) + " " + BinderFlagsToHuman(flags); in Transaction()
|
H A D | ftrace_parser.cc | 2355 auto code_str = base::IntToHexString(evt.code()) + " Java Layer Dependent"; in ParseBinderTransaction()
|