Home
last modified time | relevance | path

Searched refs:mDebugInfo (Results 1 – 11 of 11) sorted by relevance

/frameworks/base/core/java/android/app/timedetector/
DTelephonyTimeSuggestion.java71 @Nullable private ArrayList<String> mDebugInfo; field in TelephonyTimeSuggestion
76 mDebugInfo = builder.mDebugInfo != null ? new ArrayList<>(builder.mDebugInfo) : null; in TelephonyTimeSuggestion()
159 dest.writeList(mDebugInfo); in writeToParcel()
188 return mDebugInfo == null in getDebugInfo()
189 ? Collections.emptyList() : Collections.unmodifiableList(mDebugInfo); in getDebugInfo()
198 if (mDebugInfo == null) { in addDebugInfo()
199 mDebugInfo = new ArrayList<>(); in addDebugInfo()
201 mDebugInfo.add(debugInfo); in addDebugInfo()
210 if (mDebugInfo == null) { in addDebugInfo()
211 mDebugInfo = new ArrayList<>(debugInfo.size()); in addDebugInfo()
[all …]
DTimeSuggestionHelper.java55 @Nullable private ArrayList<String> mDebugInfo; field in TimeSuggestionHelper
73 return mDebugInfo == null in getDebugInfo()
74 ? Collections.emptyList() : Collections.unmodifiableList(mDebugInfo); in getDebugInfo()
83 if (mDebugInfo == null) { in addDebugInfo()
84 mDebugInfo = new ArrayList<>(); in addDebugInfo()
86 mDebugInfo.add(debugInfo); in addDebugInfo()
104 if (mDebugInfo == null) { in addDebugInfo()
105 mDebugInfo = new ArrayList<>(debugInfo.size()); in addDebugInfo()
107 mDebugInfo.addAll(debugInfo); in addDebugInfo()
140 + ", mDebugInfo=" + mDebugInfo in handleToString()
[all …]
/frameworks/base/core/java/android/app/timezonedetector/
DTelephonyTimeZoneSuggestion.java148 @Nullable private List<String> mDebugInfo; field in TelephonyTimeZoneSuggestion
155 mDebugInfo = builder.mDebugInfo != null ? new ArrayList<>(builder.mDebugInfo) : null; in TelephonyTimeZoneSuggestion()
181 dest.writeList(mDebugInfo); in writeToParcel()
237 return mDebugInfo == null in getDebugInfo()
238 ? Collections.emptyList() : Collections.unmodifiableList(mDebugInfo); in getDebugInfo()
247 if (mDebugInfo == null) { in addDebugInfo()
248 mDebugInfo = new ArrayList<>(); in addDebugInfo()
250 mDebugInfo.add(debugInfo); in addDebugInfo()
259 if (mDebugInfo == null) { in addDebugInfo()
260 mDebugInfo = new ArrayList<>(debugInfo.size()); in addDebugInfo()
[all …]
DManualTimeZoneSuggestion.java58 @Nullable private ArrayList<String> mDebugInfo; field in ManualTimeZoneSuggestion
69 suggestion.mDebugInfo = debugInfo; in createFromParcel()
81 dest.writeList(mDebugInfo); in writeToParcel()
91 return mDebugInfo == null in getDebugInfo()
92 ? Collections.emptyList() : Collections.unmodifiableList(mDebugInfo); in getDebugInfo()
101 if (mDebugInfo == null) { in addDebugInfo()
102 mDebugInfo = new ArrayList<>(); in addDebugInfo()
104 mDebugInfo.addAll(Arrays.asList(debugInfos)); in addDebugInfo()
129 + ", mDebugInfo=" + mDebugInfo in toString()
/frameworks/base/services/core/java/com/android/server/timedetector/
DNetworkTimeSuggestion.java53 @Nullable private ArrayList<String> mDebugInfo; field in NetworkTimeSuggestion
82 return mDebugInfo == null in getDebugInfo()
83 ? Collections.emptyList() : Collections.unmodifiableList(mDebugInfo); in getDebugInfo()
92 if (mDebugInfo == null) { in addDebugInfo()
93 mDebugInfo = new ArrayList<>(); in addDebugInfo()
95 mDebugInfo.addAll(Arrays.asList(debugInfos)); in addDebugInfo()
121 + ", mDebugInfo=" + mDebugInfo in toString()
/frameworks/base/services/core/java/com/android/server/timezonedetector/
DLocationAlgorithmEvent.java56 @Nullable private ArrayList<String> mDebugInfo; field in LocationAlgorithmEvent
86 return mDebugInfo == null in getDebugInfo()
87 ? Collections.emptyList() : Collections.unmodifiableList(mDebugInfo); in getDebugInfo()
96 if (mDebugInfo == null) { in addDebugInfo()
97 mDebugInfo = new ArrayList<>(); in addDebugInfo()
99 mDebugInfo.addAll(Arrays.asList(debugInfos)); in addDebugInfo()
125 + ", mDebugInfo=" + mDebugInfo in toString()
/frameworks/native/services/surfaceflinger/
DWindowInfosListenerInvoker.cpp151 result = mDebugInfo; in getDebugInfo()
163 if (delay > mDebugInfo.maxSendDelayDuration) { in updateMaxSendDelay()
164 mDebugInfo.maxSendDelayDuration = delay; in updateMaxSendDelay()
165 mDebugInfo.maxSendDelayVsyncId = VsyncId{mDelayInfo->vsyncId}; in updateMaxSendDelay()
DWindowInfosListenerInvoker.h78 DebugInfo mDebugInfo; variable
/frameworks/opt/telephony/src/java/com/android/internal/telephony/nitz/
DTimeZoneLookupHelper.java76 private final String mDebugInfo; field in TimeZoneLookupHelper.CountryResult
81 mDebugInfo = debugInfo; in CountryResult()
107 + ", mDebugInfo=" + mDebugInfo in toString()
/frameworks/base/services/core/java/com/android/server/timezonedetector/location/
DLocationTimeZoneProvider.java187 @Nullable private final String mDebugInfo; field in LocationTimeZoneProvider.ProviderState
200 this.mDebugInfo = debugInfo; in ProviderState()
346 + ", mDebugInfo=" + mDebugInfo in toString()
/frameworks/base/services/core/java/com/android/server/wm/
DBackgroundActivityStartController.java1565 joiner.add(prefix + "TopFinishedActivity: " + mTopFinishedActivity.mDebugInfo); in getDebugInfoForActivitySecurity()
1571 (fae) -> joiner.add(prefix + " " + fae.mDebugInfo)); in getDebugInfoForActivitySecurity()
1820 String mDebugInfo; field in FinishedActivityEntry
1828 this.mDebugInfo = getDebugStringForActivityRecord(ar); in FinishedActivityEntry()