HomeSort by relevance Sort by last modified time
    Searched refs:asyncWait (Results 1 - 6 of 6) sorted by null

  /external/libmojo/mojo/public/java/system/src/org/chromium/mojo/system/
AsyncWaiter.java 16 * Allows cancellation of an asyncWait operation.
20 * Cancels an asyncWait operation. Has no effect if the operation has already been canceled
23 * Must be called from the same thread as {@link AsyncWaiter#asyncWait} was called from.
29 * Callback passed to {@link AsyncWaiter#asyncWait}.
45 * of the result of the wait on the same thread as asyncWait was called.
51 Cancellable asyncWait(Handle handle, HandleSignals signals, long deadline, Callback callback);
  /external/libmojo/mojo/public/js/
support.js 13 * asyncWait()/cancelWait().
26 function asyncWait(handle, signals, callback) { [native code] }
29 * asyncWait()/cancelWait().
31 * Cancels the asyncWait operation specified by the given |waitId|.
33 * @param {MojoWaitId} waitId The waitId returned by asyncWait.
  /external/libmojo/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
ExecutorFactory.java 77 asyncWait();
84 private void asyncWait() {
85 mWaiter.asyncWait(mReadHandle, Core.HandleSignals.READABLE, Core.DEADLINE_INFINITE,
129 asyncWait();
Connector.java 190 mCancellable = mAsyncWaiter.asyncWait(mMessagePipeHandle, Core.HandleSignals.READABLE,
  /external/libmojo/mojo/android/javatests/src/org/chromium/mojo/system/impl/
CoreImplTest.java 636 core.getDefaultAsyncWaiter().asyncWait(handles.first, Core.HandleSignals.READABLE,
663 core.getDefaultAsyncWaiter().asyncWait(handles.first, Core.HandleSignals.READABLE,
693 core.getDefaultAsyncWaiter().asyncWait(handles.first, Core.HandleSignals.READABLE,
725 core.getDefaultAsyncWaiter().asyncWait(handles.first, Core.HandleSignals.READABLE,
748 core.getDefaultAsyncWaiter().asyncWait(InvalidHandle.INSTANCE, Core.HandleSignals.READABLE,
774 core.getDefaultAsyncWaiter().asyncWait(
799 Cancellable cancellable = core.getDefaultAsyncWaiter().asyncWait(handles.first,
    [all...]
  /external/libmojo/mojo/android/system/src/org/chromium/mojo/system/impl/
CoreImpl.java 255 * @see AsyncWaiter#asyncWait(Handle, Core.HandleSignals, long, Callback)
258 public Cancellable asyncWait(

Completed in 74 milliseconds