Searched defs:timeoutMs (Results 51 - 58 of 58) sorted by relevance

123

/frameworks/support/samples/SupportLeanbackShowcase/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/base/core/java/android/app/admin/
H A DDevicePolicyManager.java2983 * @param timeoutMs The new timeout in milliseconds, after which the user will have to unlock
2994 long timeoutMs) {
2997 mService.setRequiredStrongAuthTimeout(admin, timeoutMs, mParentInstance);
2993 setRequiredStrongAuthTimeout(@onNull ComponentName admin, long timeoutMs) argument
/frameworks/base/services/core/java/com/android/server/
H A DConnectivityService.java4042 Messenger messenger, int timeoutMs, IBinder binder, int legacyType) {
4062 if (timeoutMs < 0) {
4075 if (timeoutMs > 0) {
4077 nri), timeoutMs);
4041 requestNetwork(NetworkCapabilities networkCapabilities, Messenger messenger, int timeoutMs, IBinder binder, int legacyType) argument
/frameworks/data-binding/developmentPlugins/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/multidex/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/support/development/checkstyle/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/support/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
H A DDevicePolicyManagerService.java4595 public void setRequiredStrongAuthTimeout(ComponentName who, long timeoutMs, argument
4601 Preconditions.checkArgument(timeoutMs >= 0, "Timeout must not be a negative number.");
4602 // timeoutMs with value 0 means that the admin doesn't participate
4603 // timeoutMs is clamped to the interval in case the internal constants change in the future
4605 if (timeoutMs != 0 && timeoutMs < minimumStrongAuthTimeout) {
4606 timeoutMs = minimumStrongAuthTimeout;
4608 if (timeoutMs > DevicePolicyManager.DEFAULT_STRONG_AUTH_TIMEOUT_MS) {
4609 timeoutMs = DevicePolicyManager.DEFAULT_STRONG_AUTH_TIMEOUT_MS;
4616 if (ap.strongAuthUnlockTimeout != timeoutMs) {
[all...]

Completed in 409 milliseconds

123