Home
last modified time | relevance | path

Searched refs:IntToHexString (Results 1 – 14 of 14) sorted by relevance

/aosp_15_r20/device/google/cuttlefish/host/commands/modem_simulator/
Dpdu_parser.cpp250 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()
Dpdu_parser.h41 std::string IntToHexString(int value);
/aosp_15_r20/external/pigweed/pw_string/
H A Dtype_to_string_test.cc288 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 Dtype_to_string.cc27 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 Dstring_utils_unittest.cc272 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 Dstring_utils.cc177 std::string IntToHexString(uint32_t number) { in IntToHexString() function
/aosp_15_r20/external/pigweed/pw_hex_dump/
H A Dhex_dump.cc26 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 Dtype_to_string.h73 StatusWithSize IntToHexString(uint64_t value,
H A Dto_string.h241 return string::IntToHexString(static_cast<unsigned>(byte), buffer, 2);
/aosp_15_r20/external/perfetto/src/trace_processor/importers/proto/
H A Dpixel_modem_parser.cc111 base::IntToHexString(token).c_str()))); in ParseEvent()
/aosp_15_r20/prebuilts/runtime/mainline/platform/sdk/include/external/perfetto/include/perfetto/ext/base/
H A Dstring_utils.h126 std::string IntToHexString(uint32_t number);
/aosp_15_r20/external/perfetto/include/perfetto/ext/base/
H A Dstring_utils.h171 std::string IntToHexString(uint32_t number);
/aosp_15_r20/external/perfetto/src/trace_processor/importers/ftrace/
H A Dbinder_tracker.cc265 base::IntToHexString(flags) + " " + BinderFlagsToHuman(flags); in Transaction()
H A Dftrace_parser.cc2355 auto code_str = base::IntToHexString(evt.code()) + " Java Layer Dependent"; in ParseBinderTransaction()