Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/app/timedetector/
DTelephonyTimeSuggestion.java83 ArrayList<String> debugInfo = (ArrayList<String>) in.readArrayList(null /* classLoader */); in createFromParcel() local
84 if (debugInfo != null) { in createFromParcel()
85 suggestion.addDebugInfo(debugInfo); in createFromParcel()
137 public void addDebugInfo(@NonNull String debugInfo) { in addDebugInfo() argument
141 mDebugInfo.add(debugInfo); in addDebugInfo()
149 public void addDebugInfo(@NonNull List<String> debugInfo) { in addDebugInfo() argument
151 mDebugInfo = new ArrayList<>(debugInfo.size()); in addDebugInfo()
153 mDebugInfo.addAll(debugInfo); in addDebugInfo()
224 public Builder addDebugInfo(@NonNull String debugInfo) { in addDebugInfo() argument
228 mDebugInfo.add(debugInfo); in addDebugInfo()
DNetworkTimeSuggestion.java72 ArrayList<String> debugInfo = (ArrayList<String>) in.readArrayList(null /* classLoader */); in createFromParcel() local
73 suggestion.mDebugInfo = debugInfo; in createFromParcel()
/frameworks/base/core/java/android/app/timezonedetector/
DTelephonyTimeZoneSuggestion.java83 int slotIndex, @NonNull String debugInfo) { in createEmptySuggestion() argument
84 return new Builder(slotIndex).addDebugInfo(debugInfo).build(); in createEmptySuggestion()
167 List<String> debugInfo = in createFromParcel() local
169 if (debugInfo != null) { in createFromParcel()
170 suggestion.addDebugInfo(debugInfo); in createFromParcel()
246 public void addDebugInfo(@NonNull String debugInfo) { in addDebugInfo() argument
250 mDebugInfo.add(debugInfo); in addDebugInfo()
258 public void addDebugInfo(@NonNull List<String> debugInfo) { in addDebugInfo() argument
260 mDebugInfo = new ArrayList<>(debugInfo.size()); in addDebugInfo()
262 mDebugInfo.addAll(debugInfo); in addDebugInfo()
[all …]
DTimeZoneDetector.java37 static ManualTimeZoneSuggestion createManualTimeZoneSuggestion(String tzId, String debugInfo) { in createManualTimeZoneSuggestion() argument
39 suggestion.addDebugInfo(debugInfo); in createManualTimeZoneSuggestion()
DManualTimeZoneSuggestion.java68 ArrayList<String> debugInfo = (ArrayList<String>) in.readArrayList(null /* classLoader */); in createFromParcel() local
69 suggestion.mDebugInfo = debugInfo; in createFromParcel()
/frameworks/base/services/core/java/com/android/server/
DRuntimeService.java142 String debugKeyPrefix, DebugInfo debugInfo) { in addDistroVersionDebugInfo() argument
152 debugInfo.addStringEntry(statusKey, "OK") in addDistroVersionDebugInfo()
159 debugInfo.addStringEntry(statusKey, "ERROR"); in addDistroVersionDebugInfo()
160 debugInfo.addStringEntry(debugKeyPrefix + "exception_class", in addDistroVersionDebugInfo()
162 debugInfo.addStringEntry(debugKeyPrefix + "exception_msg", e.getMessage()); in addDistroVersionDebugInfo()
166 debugInfo.addStringEntry(statusKey, "NOT_FOUND"); in addDistroVersionDebugInfo()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/nitz/
DTimeZoneLookupHelper.java78 public CountryResult(@NonNull String zoneId, @Quality int quality, String debugInfo) { in CountryResult() argument
81 mDebugInfo = debugInfo; in CountryResult()
210 String debugInfo; in lookupByCountry() local
214 debugInfo = "Country default is boosted"; in lookupByCountry()
222 debugInfo = "No effective time zones found at whenMillis=" + whenMillis; in lookupByCountry()
226 debugInfo = "One effective time zone found at whenMillis=" + whenMillis; in lookupByCountry()
233 debugInfo = "countryUsesDifferentOffsets=" + countryUsesDifferentOffsets + " at" in lookupByCountry()
237 return new CountryResult(countryDefaultZone.getID(), matchQuality, debugInfo); in lookupByCountry()
/frameworks/av/media/libaudiohal/impl/
DDevicesFactoryHalHidl.cpp146 DebugInfo debugInfo; in getHalPids() local
148 debugInfo = info; in getHalPids()
153 if (debugInfo.pid == (int)IServiceManager::PidConstant::NO_PID) { in getHalPids()
156 pidsSet.insert(debugInfo.pid); in getHalPids()
/frameworks/native/services/surfaceflinger/Scheduler/
DEventThread.cpp435 std::string debugInfo = "VsyncSource debug info:\n"; in threadMain() local
436 mVSyncSource->dump(debugInfo); in threadMain()
438 auto pos = debugInfo.find('\n'); in threadMain()
440 ALOGW("%s", debugInfo.substr(0, pos).c_str()); in threadMain()
441 debugInfo = debugInfo.substr(pos + 1); in threadMain()
442 pos = debugInfo.find('\n'); in threadMain()
/frameworks/native/cmds/lshal/
DTableEntry.cpp170 std::string debugInfo = emitDebugInfo(entry.interfaceName); in createTextTable() local
171 if (!debugInfo.empty()) textTable.add(debugInfo); in createTextTable()
DListCommand.cpp715 DebugInfo debugInfo; in fetchBinderizedEntry() local
717 debugInfo = received; in fetchBinderizedEntry()
725 entry->serverPid = debugInfo.pid; in fetchBinderizedEntry()
726 entry->serverObjectAddress = debugInfo.ptr; in fetchBinderizedEntry()
727 entry->arch = fromBaseArchitecture(debugInfo.arch); in fetchBinderizedEntry()
729 if (debugInfo.pid != NO_PID) { in fetchBinderizedEntry()
730 const PidInfo* pidInfo = getPidInfoCached(debugInfo.pid); in fetchBinderizedEntry()
733 "no information for PID " + std::to_string(debugInfo.pid) + in fetchBinderizedEntry()
737 if (debugInfo.ptr != NO_PTR) { in fetchBinderizedEntry()
738 auto it = pidInfo->refPids.find(debugInfo.ptr); in fetchBinderizedEntry()
/frameworks/base/services/tests/servicestests/src/com/android/server/usage/
DUsageStatsDatabaseTest.java356 String debugInfo = ""; in compareIntervalStats() local
358 debugInfo += c.toString() + "\n"; in compareIntervalStats()
360 debugInfo += "\n"; in compareIntervalStats()
362 debugInfo += c.toString() + "\n"; in compareIntervalStats()
365 + " not found in deserialized IntervalStat\n" + debugInfo); in compareIntervalStats()
/frameworks/native/libs/ui/
DGralloc2.cpp367 std::string debugInfo; in dumpDebugInfo() local
370 debugInfo = tmpDebugInfo.c_str(); in dumpDebugInfo()
373 return debugInfo; in dumpDebugInfo()
DGralloc3.cpp356 std::string debugInfo; in dumpDebugInfo() local
358 mAllocator->dumpDebugInfo([&](const auto& tmpDebugInfo) { debugInfo = tmpDebugInfo.c_str(); }); in dumpDebugInfo()
360 return debugInfo; in dumpDebugInfo()