HomeSort by relevance Sort by last modified time
    Searched full:async (Results 1 - 25 of 1004) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/none/tests/
async-sigs.vgtest 1 prog: async-sigs
async-sigs.c 2 // following combinations: sync and async signals, caught and uncaught
26 it's running independently of Valgrind, and so is async with
130 test(/*non-blocked*/0, /* sync*/SIGSEGV, /*async*/SIGHUP);
131 test(/*non-blocked*/0, /*async*/SIGUSR1, /* sync*/SIGBUS);
132 test(/*non-blocked*/0, /*async*/SIGUSR1, /*async*/SIGHUP);
134 test(/* blocked*/1, /* sync*/SIGSEGV, /*async*/SIGHUP);
135 test(/* blocked*/1, /*async*/SIGUSR1, /* sync*/SIGBUS);
136 test(/* blocked*/1, /*async*/SIGUSR1, /*async*/SIGHUP)
    [all...]
  /external/libppp/src/
async.c 31 __FBSDID("$FreeBSD: src/usr.sbin/ppp/async.c,v 1.29.26.1 2010/12/21 17:10:29 kensmith Exp $");
48 #include "async.h"
59 async_Init(struct async *async)
61 async_Setup(async);
62 memset(async->cfg.EscMap, '\0', sizeof async->cfg.EscMap);
66 async_Setup(struct async *async)
68 async->mode = MODE_HUNT
    [all...]
async.h 26 * $FreeBSD: src/usr.sbin/ppp/async.h,v 1.8.40.1 2010/12/21 17:10:29 kensmith Exp $
31 struct async { struct
49 extern void async_Init(struct async *);
50 extern void async_Setup(struct async *);
51 extern void async_SetLinkParams(struct async *, u_int32_t, u_int32_t);
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/futures/futures.overview/
launch.pass.cpp 14 // async = 1,
16 // any = async | deferred
24 (static_cast<int>(std::launch::async) | static_cast<int>(std::launch::deferred)), "");
25 static_assert(static_cast<int>(std::launch::async) == 1, "");
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/futures/futures.async/
async.pass.cpp 14 // async(F&& f, Args&&... args);
18 // async(launch policy, F&& f, Args&&... args);
61 std::future<int> f = std::async(f0);
69 std::future<int> f = std::async(std::launch::async, f0);
77 std::future<int> f = std::async(std::launch::any, f0);
85 std::future<int> f = std::async(std::launch::deferred, f0);
94 std::future<int&> f = std::async(f1);
102 std::future<int&> f = std::async(std::launch::async, f1)
    [all...]
  /frameworks/wilhelm/src/objects/
CAudioRecorder.c 24 SLresult CAudioRecorder_Realize(void *self, SLboolean async)
30 result = android_audioRecorder_realize(thiz, async);
39 SLresult CAudioRecorder_Resume(void *self, SLboolean async)
CMediaPlayer.c 27 XAresult CMediaPlayer_Realize(void *self, XAboolean async)
35 result = android_Player_realize(thiz, async);
41 XAresult CMediaPlayer_Resume(void *self, XAboolean async)
CAudioPlayer.c 24 SLresult CAudioPlayer_Realize(void *self, SLboolean async)
30 result = android_audioPlayer_realize(thiz, async);
47 SLresult CAudioPlayer_Resume(void *self, SLboolean async)
COutputMix.c 24 SLresult COutputMix_Realize(void *self, SLboolean async)
30 result = android_outputMix_realize(thiz, async);
39 SLresult COutputMix_Resume(void *self, SLboolean async)
  /external/chromium/net/socket/
deterministic_socket_data_unittest.cc 235 MockRead(true, kMsg1, kLen1, 0), // Async Read
246 MockRead(true, kMsg1, kLen1, 0), // Async Read
247 MockRead(true, kMsg2, kLen2, 1), // Async Read
248 MockRead(true, kMsg3, kLen3, 2), // Async Read
249 MockRead(true, kMsg3, kLen3, 3), // Async Read
250 MockRead(true, kMsg2, kLen2, 4), // Async Read
251 MockRead(true, kMsg3, kLen3, 5), // Async Read
252 MockRead(true, kMsg1, kLen1, 6), // Async Read
270 MockRead(true, kMsg2, kLen2, 1), // Async Read
272 MockRead(true, kMsg3, kLen3, 3), // Async Rea
    [all...]
socks_client_socket_pool_unittest.cc 30 explicit SOCKS5MockData(bool async) {
32 writes_[0] = MockWrite(async, kSOCKS5GreetRequest,
34 writes_[1] = MockWrite(async, kSOCKS5OkRequest, kSOCKS5OkRequestLength);
35 writes_[2] = MockWrite(async, 0);
38 reads_[0] = MockRead(async, kSOCKS5GreetResponse,
40 reads_[1] = MockRead(async, kSOCKS5OkResponse, kSOCKS5OkResponseLength);
41 reads_[2] = MockRead(async, 0);
111 TEST_F(SOCKSClientSocketPoolTest, Async) {
258 // Now wait for the async data to reach the SOCKS connect jobs.
socket_test_util.h 55 MockConnect() : async(true), result(OK) { }
56 MockConnect(bool a, int r) : async(a), result(r) { }
58 bool async; member in struct:net::MockConnect
69 MockRead() : async(false), result(0), data(NULL), data_len(0),
73 MockRead(bool async, int result) : async(async) , result(result), data(NULL),
77 MockRead(bool async, int result, int seq) : async(async) , result(result)
106 bool async; member in struct:net::MockRead
128 bool async; member in struct:net::MockWriteResult
    [all...]
  /external/chromium/net/http/
http_auth_handler_unittest.cc 29 bool async = (i == 0); local
46 mock_handler.SetGenerateExpectation(async, rv);
49 if (async)
  /cts/suite/audio_quality/lib/include/task/
TaskSequential.h 34 * Queue async task for asynchronous execution (= call complete later)
41 * Run all async tasks queued (= call complete) and dequeue them.
  /external/chromium/chrome/browser/extensions/
pack_extension_job.h 48 void set_asynchronous(bool async) { asynchronous_ = async; }
  /frameworks/wilhelm/src/
sles_allinclusive.h 116 typedef SLresult (*AsyncHook)(void *self, SLboolean async);
216 AsyncHook mRealize; // called with mutex locked; can temporarily unlock mutex (for async)
217 AsyncHook mResume; // called with mutex locked; can temporarily unlock mutex (for async)
337 extern SLresult CAudioPlayer_Realize(void *self, SLboolean async);
338 extern SLresult CAudioPlayer_Resume(void *self, SLboolean async);
342 extern SLresult CAudioRecorder_Realize(void *self, SLboolean async);
343 extern SLresult CAudioRecorder_Resume(void *self, SLboolean async);
347 extern SLresult CEngine_Realize(void *self, SLboolean async);
348 extern SLresult CEngine_Resume(void *self, SLboolean async);
353 extern SLresult COutputMix_Realize(void *self, SLboolean async);
    [all...]
  /build/tools/droiddoc/templates-sac/
head_tag.cs 41 <script src="<?cs var:toroot ?>gms_navtree_data.js" async type="text/javascript"></script>
42 <script src="<?cs var:toroot ?>gcm_navtree_data.js" async type="text/javascript"></script>
46 <script src="<?cs var:toroot ?>navtree_data.js" async type="text/javascript"></script>
55 var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  /external/webkit/LayoutTests/http/tests/appcache/
fallback.html 80 log("FAIL: Fallback resource wasn't used for a 404 response (async)");
86 log("FAIL: Unexpected result for a 404 response (async)");
100 log("FAIL: Fallback resource wasn't used for a redirect to a resource with another origin (async)");
106 log("FAIL: Unexpected result for a redirect response (async)");
  /frameworks/base/core/java/android/app/
QueuedWork.java 36 // The set of Runnables that will finish or wait on any async
63 * a scratch set for callers doing async work to keep updated with
78 * Finishes or waits for async operations to complete.
83 * etc. (so async work is never lost)
  /frameworks/wilhelm/src/android/
OutputMix_to_android.h 20 extern SLresult android_outputMix_realize(COutputMix *om, SLboolean async);
  /frameworks/base/core/java/android/view/accessibility/
IAccessibilityInteractionCallback.aidl 31 * Sets the result of an async request that returns an {@link AccessibilityNodeInfo}.
39 * Sets the result of an async request that returns {@link AccessibilityNodeInfo}s.
IAccessibilityInteractionConnectionCallback.aidl 31 * Sets the result of an async request that returns an {@link AccessibilityNodeInfo}.
39 * Sets the result of an async request that returns {@link AccessibilityNodeInfo}s.
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
prctl.h 39 # define PR_FP_EXC_NONRECOV 1 /* async non-recoverable exc. mode */
40 # define PR_FP_EXC_ASYNC 2 /* async recoverable exception mode */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
prctl.h 39 # define PR_FP_EXC_NONRECOV 1 /* async non-recoverable exc. mode */
40 # define PR_FP_EXC_ASYNC 2 /* async recoverable exception mode */

Completed in 2286 milliseconds

1 2 3 4 5 6 7 8 91011>>