Home
last modified time | relevance | path

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

/aosp12/frameworks/base/core/java/android/app/timedetector/
H A DTelephonyTimeSuggestion.java74 mDebugInfo = builder.mDebugInfo != null ? new ArrayList<>(builder.mDebugInfo) : null; in TelephonyTimeSuggestion()
99 dest.writeList(mDebugInfo); in writeToParcel()
128 return mDebugInfo == null in getDebugInfo()
138 if (mDebugInfo == null) { in addDebugInfo()
139 mDebugInfo = new ArrayList<>(); in addDebugInfo()
141 mDebugInfo.add(debugInfo); in addDebugInfo()
150 if (mDebugInfo == null) { in addDebugInfo()
153 mDebugInfo.addAll(debugInfo); in addDebugInfo()
179 + ", mDebugInfo=" + mDebugInfo in toString()
225 if (mDebugInfo == null) { in addDebugInfo()
[all …]
H A DGnssTimeSuggestion.java61 @Nullable private ArrayList<String> mDebugInfo; field in GnssTimeSuggestion
73 suggestion.mDebugInfo = debugInfo; in createFromParcel()
85 dest.writeList(mDebugInfo); in writeToParcel()
95 return mDebugInfo == null in getDebugInfo()
96 ? Collections.emptyList() : Collections.unmodifiableList(mDebugInfo); in getDebugInfo()
105 if (mDebugInfo == null) { in addDebugInfo()
106 mDebugInfo = new ArrayList<>(); in addDebugInfo()
108 mDebugInfo.addAll(Arrays.asList(debugInfos)); in addDebugInfo()
132 + ", mDebugInfo=" + mDebugInfo in toString()
H A DManualTimeSuggestion.java61 @Nullable private ArrayList<String> mDebugInfo; field in ManualTimeSuggestion
73 suggestion.mDebugInfo = debugInfo; in createFromParcel()
85 dest.writeList(mDebugInfo); in writeToParcel()
95 return mDebugInfo == null in getDebugInfo()
96 ? Collections.emptyList() : Collections.unmodifiableList(mDebugInfo); in getDebugInfo()
105 if (mDebugInfo == null) { in addDebugInfo()
106 mDebugInfo = new ArrayList<>(); in addDebugInfo()
108 mDebugInfo.addAll(Arrays.asList(debugInfos)); in addDebugInfo()
132 + ", mDebugInfo=" + mDebugInfo in toString()
H A DNetworkTimeSuggestion.java61 @Nullable private ArrayList<String> mDebugInfo; field in NetworkTimeSuggestion
73 suggestion.mDebugInfo = debugInfo; in createFromParcel()
85 dest.writeList(mDebugInfo); in writeToParcel()
95 return mDebugInfo == null in getDebugInfo()
96 ? Collections.emptyList() : Collections.unmodifiableList(mDebugInfo); in getDebugInfo()
105 if (mDebugInfo == null) { in addDebugInfo()
106 mDebugInfo = new ArrayList<>(); in addDebugInfo()
108 mDebugInfo.addAll(Arrays.asList(debugInfos)); in addDebugInfo()
132 + ", mDebugInfo=" + mDebugInfo in toString()
/aosp12/frameworks/base/core/java/android/app/timezonedetector/
H A 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()
247 if (mDebugInfo == null) { in addDebugInfo()
248 mDebugInfo = new ArrayList<>(); in addDebugInfo()
250 mDebugInfo.add(debugInfo); in addDebugInfo()
259 if (mDebugInfo == null) { in addDebugInfo()
262 mDebugInfo.addAll(debugInfo); in addDebugInfo()
357 if (mDebugInfo == null) { in addDebugInfo()
[all …]
H A 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()
/aosp12/frameworks/base/core/java/android/app/time/
H A DExternalTimeSuggestion.java88 private ArrayList<String> mDebugInfo; field in ExternalTimeSuggestion
109 suggestion.mDebugInfo = debugInfo; in createFromParcel()
121 dest.writeList(mDebugInfo); in writeToParcel()
137 return mDebugInfo == null in getDebugInfo()
139 : Collections.unmodifiableList(mDebugInfo); in getDebugInfo()
148 if (mDebugInfo == null) { in addDebugInfo()
149 mDebugInfo = new ArrayList<>(); in addDebugInfo()
151 mDebugInfo.addAll(Arrays.asList(debugInfos)); in addDebugInfo()
173 return "ExternalTimeSuggestion{" + "mUtcTime=" + mUtcTime + ", mDebugInfo=" + mDebugInfo in toString()
/aosp12/frameworks/base/services/core/java/com/android/server/timezonedetector/
H A DGeolocationTimeZoneSuggestion.java65 @Nullable private ArrayList<String> mDebugInfo; field in GeolocationTimeZoneSuggestion
87 return mDebugInfo == null in getDebugInfo()
88 ? Collections.emptyList() : Collections.unmodifiableList(mDebugInfo); in getDebugInfo()
97 if (mDebugInfo == null) { in addDebugInfo()
98 mDebugInfo = new ArrayList<>(); in addDebugInfo()
100 mDebugInfo.addAll(Arrays.asList(debugInfos)); in addDebugInfo()
125 + ", mDebugInfo=" + mDebugInfo in toString()
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/nitz/
H A DTimeZoneLookupHelper.java76 private final String mDebugInfo; field in TimeZoneLookupHelper.CountryResult
81 mDebugInfo = debugInfo; in CountryResult()
107 + ", mDebugInfo=" + mDebugInfo in toString()
/aosp12/frameworks/base/services/core/java/com/android/server/timezonedetector/location/
H A DLocationTimeZoneProvider.java178 @Nullable private final String mDebugInfo; field in LocationTimeZoneProvider.ProviderState
191 this.mDebugInfo = debugInfo; in ProviderState()
303 + ", mDebugInfo=" + mDebugInfo in toString()