Searched refs:timeout (Results 251 - 260 of 260) sorted by relevance

<<11

/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/base/services/backup/java/com/android/server/backup/
H A DBackupManagerService.java290 // User confirmation timeout for a full backup/restore operation. It's this long in
642 // Bookkeeping of in-flight operations for timeout etc. purposes. The operation
672 * If type of operation is OP_TYPE_WAIT, it are waiting for an ack or timeout.
676 * A BackupRestore task gets notified of ack/timeout for the operation via
1071 // Done: reset the session timeout clock
1094 // the timeout is suspended while a restore is in progress. Clean
1112 // Release the waiter; timeout == completion
1118 // Report a timeout to the observer, if any
2518 // Interface and methods used by the asynchronous-with-timeout backup/restore operations
2538 if (MORE_DEBUG) Slog.v(TAG, "starting timeout
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerShellCommand.java488 pw.println("Status: " + (result.timeout ? "timeout" : "ok"));
H A DActivityManagerService.java534 // How long we wait until we timeout on key dispatching.
537 // How long we wait until we timeout on key dispatching during instrumentation.
761 Slog.w(TAG, "getAssistContextExtras failed: timeout retrieving from " + activity);
5501 public long dumpWithTimeout(int pid, long timeout) { argument
5505 final long waitTime = Math.min(timeout, TRACE_DUMP_TIMEOUT_MS);
5515 // trace in case we've already hit the overall timeout.
5517 if (timeWaited >= timeout) {
5526 NATIVE_DUMP_TIMEOUT_MS, timeout - timeWaited);
6659 removeProcessLocked(app, false, true, "timeout publishing content providers");
6691 app.kill("start timeout", tru
12432 shutdown(int timeout) argument
12999 enqueueAssistContext(int requestType, Intent intent, String hint, IResultReceiver receiver, Bundle receiverExtras, IBinder activityToken, boolean focused, boolean newSessionId, int userHandle, Bundle args, long timeout, int flags) argument
[all...]
/frameworks/base/core/java/android/app/
H A DNotification.java7553 * @param timeout The requested screen timeout in milliseconds. Can also be either
7557 public WearableExtender setHintScreenTimeout(int timeout) { argument
7558 mHintScreenTimeout = timeout;
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowManagerService.java297 /** Amount of time (in milliseconds) to delay before declaring a window freeze timeout. */
300 /** Amount of time (in milliseconds) to delay before declaring a seamless rotation timeout. */
303 /** Amount of time (in milliseconds) to delay before declaring a window replacement timeout. */
318 // Default input dispatching timeout in nanoseconds.
1391 // window after the toast timeout only if the focused window is from another
1400 // toast focusable to force it not being hidden after the timeout.
4592 // 5 second timeout for this window to actually begin the drag
4972 Slog.w(TAG_WM, "App freeze timeout expired.");
4985 mLastFinishedFreezeSource = "client-timeout";
5224 // who miss the timeout du
7318 waitForAllWindowsDrawn(Runnable callback, long timeout) argument
[all...]
/frameworks/base/core/java/android/view/
H A DView.java3317 * hide after a short timeout.
13145 * less its own timeout. Remove it here.
26407 // Schedule showing the tooltip after a timeout.
26416 // Match the timeout used by NativeInputManager to hide the mouse pointer
26418 final int timeout;
26421 timeout = ViewConfiguration.getHoverTooltipHideShortTimeout();
26423 timeout = ViewConfiguration.getHoverTooltipHideTimeout();
26426 postDelayed(mTooltipInfo.mHideTooltipRunnable, timeout);
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java2009 public void setTimeout(long timeout) { argument
2010 mTimeout = timeout;
8735 public void setRadioScanningTimeoutLocked(long timeout) { argument
8737 mPhoneSignalScanningTimer.setTimeout(timeout);
/frameworks/native/services/surfaceflinger/tests/hwc2/
H A DHwc2Test.cpp1122 std::cv_status::timeout) { }
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerService.java470 * Wall-clock timeout (in milliseconds) after which we *require* that an fstrim
493 * The default response for package verification timeout.
14919 * Get the verification agent timeout. Used for both the APK verifier and the
14922 * @return verification timeout in milliseconds
15928 * but only start the verification timeout after the
19680 long timeout = SystemClock.uptimeMillis() + 5000;
19684 (now = SystemClock.uptimeMillis()) < timeout) {
19686 conn.wait(timeout - now);
[all...]

Completed in 1521 milliseconds

<<11