Home | History | Annotate | Download | only in js

Lines Matching refs:The

1 // Copyright 2014 The Chromium Authors. All rights reserved.
3 // found in the LICENSE file.
7 // Note: This file is for documentation purposes only. The code here is not
8 // actually executed. The real module is implemented natively in Mojo.
15 * Waits on the given handle until the state indicated by |signals| is
18 * @param {MojoHandle} handle The handle to wait on.
19 * @param {MojoHandleSignals} signals Specifies the condition to wait for.
20 * @param {function (mojoResult)} callback Called with the result the wait is
23 * @return {MojoWaitId} A waitId that can be passed to cancelWait to cancel the
31 * Cancels the asyncWait operation specified by the given |waitId|.
33 * @param {MojoWaitId} waitId The waitId returned by asyncWait.
39 * @param {MojoHandle} handle The handle to watch.
40 * @param {MojoHandleSignals} signals The signals to watch.
42 * the watched signals become satisfied or unsatisfiable.
51 * @param {MojoWatchId} watchId The watch identifier returned by watch().