Home
last modified time | relevance | path

Searched refs:hex (Results 1 – 25 of 42) sorted by relevance

12

/system/extras/perfprofd/quipper/
Daddress_mapper.cc41 LOG(ERROR) << "Address mapping at " << std::hex << real_addr in MapWithID()
42 << " with size " << std::hex << size << " overflows."; in MapWithID()
138 LOG(ERROR) << "Could not find space to map addr=" << std::hex << real_addr in MapWithID()
139 << " with size " << std::hex << size; in MapWithID()
146 LOG(INFO) << " real_addr: " << std::hex << it->real_addr in DumpToLog()
147 << " mapped: " << std::hex << it->mapped_addr in DumpToLog()
148 << " id: " << std::hex << it->id in DumpToLog()
149 << " size: " << std::hex << it->size; in DumpToLog()
/system/tpm/trunks/
Dtrunks_ftdi_spi.cc177 LOG(ERROR) << "unknown did_vid: 0x" << std::hex << did_vid; in Init()
185 LOG(ERROR) << "invalid reset status: 0x" << std::hex << (unsigned)cmd; in Init()
192 LOG(ERROR) << "failed to claim locality, status: 0x" << std::hex in Init()
199 LOG(ERROR) << "unexpected TPM family value, status: 0x" << std::hex in Init()
224 LOG(ERROR) << "failed to get expected status " << std::hex in WaitForStatus()
318 LOG(ERROR) << "unexpected status 0x" << std::hex << status; in SendCommandAndWait()
329 LOG(ERROR) << "unexpected status 0x" << std::hex << status; in SendCommandAndWait()
Dresource_manager.cc257 VLOG(1) << "CLEANUP_SESSION: " << std::hex << flushed_handle; in CleanupFlushedHandle()
290 VLOG(1) << "RELOAD_SESSION: " << std::hex << session_handle; in EnsureSessionIsLoaded()
318 VLOG(1) << "EVICT_OBJECT: " << std::hex << info.tpm_handle; in EvictObjects()
332 VLOG(1) << "EVICT_SESSION: " << std::hex << session_to_evict; in EvictSession()
760 VLOG(1) << "RELOAD_OBJECT: " << std::hex << virtual_handle; in ProcessInputHandle()
762 VLOG(1) << "INPUT_HANDLE_REPLACE: " << std::hex << virtual_handle << " -> " in ProcessInputHandle()
763 << std::hex << handle_info.tpm_handle; in ProcessInputHandle()
776 VLOG(1) << "OUTPUT_HANDLE_NEW_SESSION: " << std::hex << handle; in ProcessOutputHandle()
791 VLOG(1) << "OUTPUT_HANDLE_NEW_VIRTUAL: " << std::hex << handle << " -> " in ProcessOutputHandle()
792 << std::hex << new_virtual_handle; in ProcessOutputHandle()
[all …]
Derror_codes.cc218 ss << "Unknown error: " << error << " (0x" << std::hex << error << ")"; in GetErrorString()
/system/core/adb/
Dusb_osx.cpp147 LOG(ERROR) << "Unable to create an interface plug-in (" << std::hex << kr << ")"; in AndroidInterfaceAdded()
158 LOG(ERROR) << "Couldn't query the interface (" << std::hex << result << ")"; in AndroidInterfaceAdded()
179 LOG(ERROR) << "Couldn't grab device from interface (" << std::hex << kr << ")"; in AndroidInterfaceAdded()
194 LOG(ERROR) << "Unable to create a device plug-in (" << std::hex << kr << ")"; in AndroidInterfaceAdded()
204 LOG(ERROR) << "Couldn't create a device interface (" << std::hex << result << ")"; in AndroidInterfaceAdded()
307 LOG(ERROR) << "Could not clear pipe stall both ends: " << std::hex << rc; in ClearPipeStallBothEnds()
327 LOG(ERROR) << "Could not open interface: " << std::hex << kr; in CheckInterface()
334 LOG(ERROR) << "Unable to get number of endpoints: " << std::hex << kr; in CheckInterface()
370 << std::hex << kr; in CheckInterface()
481 LOG(ERROR) << "usb_write failed with status: " << std::hex << result; in usb_write()
[all …]
DOVERVIEW.TXT104 4-byte hex length, followed by a string giving the reason
108 hex string corresponding to the server's internal version number
/system/extras/ext4_utils/
Dext4_crypt.cpp66 static void policy_to_hex(const char* policy, char* hex) { in policy_to_hex() argument
68 hex[j++] = HEX_LOOKUP[(policy[i] & 0xF0) >> 4]; in policy_to_hex()
69 hex[j++] = HEX_LOOKUP[policy[i] & 0x0F]; in policy_to_hex()
71 hex[EXT4_KEY_DESCRIPTOR_SIZE_HEX - 1] = '\0'; in policy_to_hex()
/system/netd/server/
DNetlinkHandler.cpp126 const char *hex = evt->findParam("HEX"); in onEvent() local
127 notifyStrictCleartext(uid, hex); in onEvent()
224 void NetlinkHandler::notifyStrictCleartext(const char* uid, const char* hex) { in notifyStrictCleartext() argument
225 notify(ResponseCode::StrictCleartext, "%s %s", uid, hex); in notifyStrictCleartext()
DNetlinkHandler.h50 void notifyStrictCleartext(const char* uid, const char* hex);
/system/bt/btif/src/
Dbtif_sock_util.c163 static inline void word2hex(const char* data, char** hex) in word2hex() argument
165 byte2hex(&data[1], hex); in word2hex()
166 byte2hex(&data[0], hex); in word2hex()
/system/tpm/tpm_manager/server/
Dtpm_util.h23 LOG(severity) << "TPM error 0x" << std::hex << result \
/system/extras/libfec/
Dfec_read.cpp34 char hex[bytes_per_line * 3 + 1]; in dump() local
45 memset(hex, 0, sizeof(hex)); in dump()
50 sprintf(&hex[m * 3], "%02x ", data[n + m]); in dump()
58 strcpy(&hex[m * 3], " "); in dump()
62 warn(" %04zu %s %s", n, hex, prn); in dump()
/system/vold/
DUtils.cpp374 status_t HexToStr(const std::string& hex, std::string& str) { in HexToStr() argument
378 for (size_t i = 0; i < hex.size(); i++) { in HexToStr()
380 switch (hex[i]) { in HexToStr()
415 status_t StrToHex(const std::string& str, std::string& hex) { in StrToHex() argument
416 hex.clear(); in StrToHex()
418 hex.push_back(kLookup[(str[i] & 0xF0) >> 4]); in StrToHex()
419 hex.push_back(kLookup[str[i] & 0x0F]); in StrToHex()
DUtils.h83 status_t HexToStr(const std::string& hex, std::string& str);
85 status_t StrToHex(const std::string& str, std::string& hex);
DExt4Crypt.cpp141 o << std::hex << std::setw(2) << std::setfill('0') << (int)i; in keyname()
577 static bool parse_hex(const char* hex, std::string* result) { in parse_hex() argument
578 if (strcmp("!", hex) == 0) { in parse_hex()
582 if (android::vold::HexToStr(hex, *result) != 0) { in parse_hex()
/system/core/libsysutils/src/
DNetlinkEvent.cpp290 char* hex = (char*) calloc(1, 5 + (len * 2)); in parseNfPacketMessage() local
291 strcpy(hex, "HEX="); in parseNfPacketMessage()
293 hex[4 + (i * 2)] = "0123456789abcdef"[(raw[i] >> 4) & 0xf]; in parseNfPacketMessage()
294 hex[5 + (i * 2)] = "0123456789abcdef"[raw[i] & 0xf]; in parseNfPacketMessage()
298 mParams[1] = hex; in parseNfPacketMessage()
/system/bt/btcore/test/
Ddevice_class_test.cpp38 ss << std::showbase << std::hex << std::setw(8) << std::setfill('0') << m; in check_bitfield()
42 ss << std::showbase << std::hex << std::setw(8) << std::setfill('0') << n; in check_bitfield()
/system/core/init/
Dutil.cpp484 std::string hex("0x"); in bytes_to_hex() local
486 android::base::StringAppendF(&hex, "%02x", bytes[i]); in bytes_to_hex()
487 return hex; in bytes_to_hex()
Dproperty_service.cpp511 std::string hex = bytes_to_hex(reinterpret_cast<uint8_t*>(hdr.id), sizeof(hdr.id)); in load_recovery_id_prop() local
512 property_set("ro.recovery_id", hex.c_str()); in load_recovery_id_prop()
/system/tpm/attestation/common/
Dcrypto_utility_impl_test.cc48 std::string HexDecode(const std::string hex) { in HexDecode() argument
50 CHECK(base::HexStringToBytes(hex, &output)); in HexDecode()
/system/extras/simpleperf/
Devent_attr.cpp42 LOG(DEBUG) << "unknown " << name << " bits: " << std::hex << bits; in BitsToString()
/system/connectivity/shill/net/
Drtnl_handler.cc206 << std::showbase << std::hex in RequestDump()
227 << std::showbase << std::hex in NextRequest()
/system/update_engine/
Dcommon_service.cc82 << "flags=0x" << std::hex << flags << " " in AttemptUpdate()
/system/core/libmemunreachable/
DMemUnreachable.cpp413 oss << std::hex << begin; in ToString()
444 oss << " " << std::hex << begin + i << ": "; in ToString()
/system/connectivity/shill/wifi/
Dmac80211_monitor.cc145 << std::showbase << std::hex << stuck_flags in WakeQueuesIfNeeded()

12