HomeSort by relevance Sort by last modified time
    Searched full:asynchronous (Results 51 - 75 of 1227) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/bison/m4/
sig_atomic_t.m4 12 accessed atomically even in the presence of asynchronous signals.])],
  /external/libevent/
libevent.pc.in 9 Description: libevent is an asynchronous notification event loop library
  /external/tcpdump/
gmpls.c 82 { 5, "Asynchronous mapping of E4"},
83 { 6, "Asynchronous mapping of DS3/T3"},
84 { 7, "Asynchronous mapping of E3"},
87 { 10, "Asynchronous mapping of DS2/T2"},
90 { 13, "Asynchronous mapping of E1"},
93 { 16, "Asynchronous mapping of DS1/T1"},
99 { 22, "DS1 SF Asynchronous"},
100 { 23, "DS1 ESF Asynchronous"},
101 { 24, "DS3 M23 Asynchronous"},
102 { 25, "DS3 C-Bit Parity Asynchronous"},
    [all...]
  /external/chromium-trace/catapult/docs/
promises-vs-tasks.md 3 `Promise` is a well-defined [built-in object](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Promise) that makes it easy, among other things, to chain synchronous or asynchronous operations.
11 A first important difference is that tasks cannot be used with asynchronous operations. In a `Promise`, you can chain an asynchronous operation by calling `then(functionReturningAPromise)`. On the other hand, if you create a task from `functionReturningAPromise` and call `after()` on it, then the subsequent task will execute before the promise is resolved.
30 `Task.RunWhenIdle` is another API call that is not available on promises. It schedule the task queue to be gradually consumed, tying task execution to `requestAnimationFrame` in a way that makes sure not to bust the time budget for a frame. Given its asynchronous nature `RunWhenIdle` returns a `Promise`.
36 If some of the operations you want to chain are asynchronous then you don't have a choice and must use `Promise`. If you want to chain only synchronous operations, then `Task` may be the right choice for you, especially if you plan on executing your operations when the application is idle, in which case you'll want to benefit from `RunWhenIdle`.
40 It's sad that the nature of tasks makes it impossible to use `RunWhenIdle` with an asynchronous operation. It might be interesting to figure out whether it's possible to build a `RunWhenIdle` on top of promises. Also, if the `after()` and `subtask()` API of tasks make the code simpler in some instances it may be interesting to try to reproduce it on top of promises. Given these improvements to `Promise` it may be possible to eventually remove `Task` entirely.
  /external/autotest/client/cros/netprotos/
__init__.py 16 * Host.socket(family, sock_type) that returns a new asynchronous socket.
18 An asynchronous socket must have the following interface:
24 Note that this interface is asynchronous since there's no blocking recv()
  /external/parameter-framework/asio-1.10.6/include/asio/
handler_alloc_hook.hpp 24 * Asynchronous operations may need to allocate temporary objects. Since
25 * asynchronous operations have a handler function object, these temporary
36 * be reused for a subsequent asynchronous operation initiated by the handler.
handler_invoke_hook.hpp 25 * Completion handlers for asynchronous operations are invoked by the
33 * When asynchronous operations are composed from other asynchronous
  /development/samples/USB/AdbTest/
README.txt 11 - Asynchronous IO on bulk endpoint
_index.html 12 <li>Asynchronous IO on bulk endpoints</li>
  /external/c-ares/
libcares.pc.in 14 Description: asynchronous DNS lookup library
  /development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
PrepareMusicRetrieverTask.java 22 * Asynchronous task that prepares a MusicRetriever. This asynchronous task essentially calls
  /frameworks/av/media/utils/
SchedulingPolicyService.cpp 31 int requestPriority(pid_t pid, pid_t tid, int32_t prio, bool asynchronous)
50 ret = sps->requestPriority(pid, tid, prio, asynchronous);
ISchedulingPolicyService.cpp 40 virtual int requestPriority(int32_t pid, int32_t tid, int32_t prio, bool asynchronous)
47 uint32_t flags = asynchronous ? IBinder::FLAG_ONEWAY : 0;
52 if (asynchronous) {
ISchedulingPolicyService.h 30 int32_t prio, bool asynchronous) = 0;
  /frameworks/av/media/utils/include/mediautils/
SchedulingPolicyService.h 24 // The asynchronous parameter should be 'true' to return immediately,
27 int requestPriority(pid_t pid, pid_t tid, int32_t prio, bool asynchronous = false);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/pulse/
operation.h 30 * Asynchronous operations */
34 /** An asynchronous operation object */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/pulse/
operation.h 30 * Asynchronous operations */
34 /** An asynchronous operation object */
  /external/libweave/src/commands/
cloud_command_proxy.h 52 // asynchronous request to GCD server to update the command resource, if there
56 // Sends an asynchronous request to GCD server to update the command resource,
63 // Callback invoked by the asynchronous PATCH request to the server.
  /external/opencv3/modules/cudaarithm/include/opencv2/
cudaarithm.hpp 82 @param stream Stream for the asynchronous version.
97 @param stream Stream for the asynchronous version.
111 @param stream Stream for the asynchronous version.
125 @param stream Stream for the asynchronous version.
138 @param stream Stream for the asynchronous version.
148 @param stream Stream for the asynchronous version.
158 @param stream Stream for the asynchronous version.
166 @param stream Stream for the asynchronous version.
176 @param stream Stream for the asynchronous version.
186 @param stream Stream for the asynchronous version
    [all...]
  /external/autotest/client/cros/cellular/pseudomodem/
modem_simple.py 43 @param return_cb: The callback to execute to send an asynchronous
45 @param raise_cb: The callback to execute to send an asynchronous error
66 @param return_cb: The callback to execute to send an asynchronous
68 @param raise_cb: The callback to execute to send an asynchronous error
  /external/opencv3/modules/java/generator/src/java/
android+LoaderCallbackInterface.java 4 * Interface for callback object in case of asynchronous initialization of OpenCV.
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowResultReceiver.java 14 // TODO: Use handler to make asynchronous
  /frameworks/base/core/java/android/accounts/
IAccountManagerResponse.aidl 21 * The interface used to return responses for asynchronous calls to the {@link IAccountManager}
  /frameworks/base/core/java/android/app/
IWallpaperManagerCallback.aidl 20 * Callback interface used by IWallpaperManager to send asynchronous
  /packages/apps/Nfc/nci/jni/
IntervalTimer.h 18 * Asynchronous interval timer.

Completed in 835 milliseconds

1 23 4 5 6 7 8 91011>>