Home
last modified time | relevance | path

Searched refs:debugInfo (Results 1 – 23 of 23) 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()
DGnssTimeSuggestion.java72 ArrayList<String> debugInfo = (ArrayList<String>) in.readArrayList(null /* classLoader */); in createFromParcel() local
73 suggestion.mDebugInfo = debugInfo; in createFromParcel()
DManualTimeSuggestion.java72 ArrayList<String> debugInfo = (ArrayList<String>) in.readArrayList(null /* classLoader */); in createFromParcel() local
73 suggestion.mDebugInfo = debugInfo; in createFromParcel()
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.java103 static ManualTimeZoneSuggestion createManualTimeZoneSuggestion(String tzId, String debugInfo) { in createManualTimeZoneSuggestion() argument
105 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.java141 String debugKeyPrefix, DebugInfo debugInfo) { in addDistroVersionDebugInfo() argument
151 debugInfo.addStringEntry(statusKey, "OK") in addDistroVersionDebugInfo()
158 debugInfo.addStringEntry(statusKey, "ERROR"); in addDistroVersionDebugInfo()
159 debugInfo.addStringEntry(debugKeyPrefix + "exception_class", in addDistroVersionDebugInfo()
161 debugInfo.addStringEntry(debugKeyPrefix + "exception_msg", e.getMessage()); in addDistroVersionDebugInfo()
165 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()
DStreamHalHidl.cpp238 DebugInfo debugInfo; in getHalPid() local
240 debugInfo = info; in getHalPid()
245 if (debugInfo.pid != (int)IServiceManager::PidConstant::NO_PID) { in getHalPid()
246 *pid = debugInfo.pid; in getHalPid()
/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.cpp631 DebugInfo debugInfo; in fetchBinderizedEntry() local
633 debugInfo = received; in fetchBinderizedEntry()
641 entry->serverPid = debugInfo.pid; in fetchBinderizedEntry()
642 entry->serverObjectAddress = debugInfo.ptr; in fetchBinderizedEntry()
643 entry->arch = fromBaseArchitecture(debugInfo.arch); in fetchBinderizedEntry()
645 if (debugInfo.pid != NO_PID) { in fetchBinderizedEntry()
646 const BinderPidInfo* pidInfo = getPidInfoCached(debugInfo.pid); in fetchBinderizedEntry()
649 "no information for PID " + std::to_string(debugInfo.pid) + in fetchBinderizedEntry()
653 if (debugInfo.ptr != NO_PTR) { in fetchBinderizedEntry()
654 auto it = pidInfo->refPids.find(debugInfo.ptr); in fetchBinderizedEntry()
/frameworks/base/core/java/android/app/time/
DExternalTimeSuggestion.java108 ArrayList<String> debugInfo = (ArrayList<String>) in.readArrayList(null /* classLoader */); in createFromParcel() local
109 suggestion.mDebugInfo = debugInfo; in createFromParcel()
/frameworks/native/services/surfaceflinger/Scheduler/
DEventThread.cpp488 std::string debugInfo = "VsyncSource debug info:\n"; in threadMain() local
489 mVSyncSource->dump(debugInfo); in threadMain()
491 auto pos = debugInfo.find('\n'); in threadMain()
493 ALOGW("%s", debugInfo.substr(0, pos).c_str()); in threadMain()
494 debugInfo = debugInfo.substr(pos + 1); in threadMain()
495 pos = debugInfo.find('\n'); in threadMain()
/frameworks/base/services/core/java/com/android/server/timezonedetector/location/
DLocationTimeZoneProvider.java185 @Nullable String debugInfo) { in ProviderState() argument
191 this.mDebugInfo = debugInfo; in ProviderState()
208 @Nullable String debugInfo) { in newState() argument
278 return new ProviderState(provider, newStateEnum, event, currentUserConfig, debugInfo); in newState()
DLocationTimeZoneManagerShellCommand.java245 for (String debugInfo : lastSuggestion.getDebugInfo()) { in runDumpControllerState()
247 "debug_info", GeolocationTimeZoneSuggestionProto.DEBUG_INFO, debugInfo); in runDumpControllerState()
/frameworks/base/services/tests/servicestests/src/com/android/server/usage/
DUsageStatsDatabaseTest.java357 String debugInfo = ""; in compareIntervalStats() local
359 debugInfo += c.toString() + "\n"; in compareIntervalStats()
361 debugInfo += "\n"; in compareIntervalStats()
363 debugInfo += c.toString() + "\n"; in compareIntervalStats()
366 + " not found in deserialized IntervalStat\n" + debugInfo); in compareIntervalStats()
/frameworks/native/libs/ui/
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()
DGralloc2.cpp367 std::string debugInfo; in dumpDebugInfo() local
370 debugInfo = tmpDebugInfo.c_str(); in dumpDebugInfo()
373 return debugInfo; in dumpDebugInfo()
/frameworks/native/services/inputflinger/dispatcher/
DInputDispatcher.h518 std::vector<std::string> debugInfo; member
DInputDispatcher.cpp2038 for (const auto& log : occlusionInfo.debugInfo) { in findTouchedWindowTargetsLocked()
2575 info.debugInfo.push_back( in computeTouchOcclusionInfoLocked()
2604 info.debugInfo.push_back( in computeTouchOcclusionInfoLocked()
/frameworks/base/services/core/java/com/android/server/am/
DActiveServices.java6099 final String debugInfo = in shouldAllowFgsStartForegroundLocked() local
6118 if (!debugInfo.equals(r.mInfoAllowStartForeground)) { in shouldAllowFgsStartForegroundLocked()
6120 r.mInfoAllowStartForeground = debugInfo; in shouldAllowFgsStartForegroundLocked()