Home
last modified time | relevance | path

Searched refs:userShouldConfirmId (Results 1 – 4 of 4) sorted by relevance

/aosp14/frameworks/base/core/java/android/app/time/
H A DTimeZoneState.java59 public TimeZoneState(@NonNull String id, boolean userShouldConfirmId) { in TimeZoneState() argument
61 mUserShouldConfirmId = userShouldConfirmId; in TimeZoneState()
66 boolean userShouldConfirmId = in.readBoolean(); in createFromParcel()
67 return new TimeZoneState(zoneId, userShouldConfirmId); in createFromParcel()
80 Boolean userShouldConfirmId = null; in parseCommandLineArgs() local
89 userShouldConfirmId = Boolean.parseBoolean(cmd.getNextArgRequired()); in parseCommandLineArgs()
100 if (userShouldConfirmId == null) { in parseCommandLineArgs()
103 return new TimeZoneState(zoneIdString, userShouldConfirmId); in parseCommandLineArgs()
H A DTimeState.java66 boolean userShouldConfirmId = in.readBoolean(); in createFromParcel()
67 return new TimeState(unixEpochTime, userShouldConfirmId); in createFromParcel()
/aosp14/frameworks/base/services/core/java/com/android/server/timezonedetector/
H A DTimeZoneDetectorStrategyImpl.java379 boolean userShouldConfirmId = in getTimeZoneState()
381 return new TimeZoneState(mEnvironment.getDeviceTimeZone(), userShouldConfirmId); in getTimeZoneState()
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/timezonedetector/
H A DTimeZoneDetectorStrategyImplTest.java1501 boolean userShouldConfirmId = false; in testSetTimeZoneState()
1502 TimeZoneState state = new TimeZoneState(timeZoneId, userShouldConfirmId); in testSetTimeZoneState()