Home | History | Annotate | Download | only in lshal

Lines Matching refs:debugInfo

46 using ::android::hidl::base::V1_0::DebugInfo;
421 static Architecture fromBaseArchitecture(::android::hidl::base::V1_0::DebugInfo::Architecture a) {
423 case ::android::hidl::base::V1_0::DebugInfo::Architecture::IS_64BIT:
425 case ::android::hidl::base::V1_0::DebugInfo::Architecture::IS_32BIT:
427 case ::android::hidl::base::V1_0::DebugInfo::Architecture::UNKNOWN: // fallthrough
614 DebugInfo debugInfo;
616 debugInfo = received;
624 entry->serverPid = debugInfo.pid;
625 entry->serverObjectAddress = debugInfo.ptr;
626 entry->arch = fromBaseArchitecture(debugInfo.arch);
628 if (debugInfo.pid != NO_PID) {
629 const PidInfo* pidInfo = getPidInfoCached(debugInfo.pid);
632 "no information for PID " + std::to_string(debugInfo.pid) +
636 if (debugInfo.ptr != NO_PTR) {
637 auto it = pidInfo->refPids.find(debugInfo.ptr);