HomeSort by relevance Sort by last modified time
    Searched full:async (Results 1 - 25 of 2132) 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/chromium_org/net/socket/
deterministic_socket_data_unittest.cc 264 MockRead(ASYNC, kMsg1, kLen1, 0), // Async Read
275 MockRead(ASYNC, kMsg1, kLen1, 0), // Async Read
276 MockRead(ASYNC, kMsg2, kLen2, 1), // Async Read
277 MockRead(ASYNC, kMsg3, kLen3, 2), // Async Read
278 MockRead(ASYNC, kMsg3, kLen3, 3), // Async Rea
    [all...]
socks5_client_socket_unittest.cc 129 MockWrite(ASYNC, kSOCKS5GreetRequest, kSOCKS5GreetRequestLength),
130 MockWrite(ASYNC, kOkRequest, arraysize(kOkRequest)),
131 MockWrite(ASYNC, payload_write.data(), payload_write.size()) };
133 MockRead(ASYNC, kSOCKS5GreetResponse, kSOCKS5GreetResponseLength),
134 MockRead(ASYNC, kSOCKS5OkResponse, kSOCKS5OkResponseLength),
135 MockRead(ASYNC, payload_read.data(), payload_read.size()) };
261 MockWrite(ASYNC, arraysize(partial1)),
262 MockWrite(ASYNC, partial2, arraysize(partial2)),
263 MockWrite(ASYNC, kOkRequest, arraysize(kOkRequest)) };
265 MockRead(ASYNC, kSOCKS5GreetResponse, kSOCKS5GreetResponseLength)
    [all...]
  /external/libcxx/test/thread/futures/futures.async/
Android.mk 17 test_makefile := external/libcxx/test/thread/futures/futures.async/Android.mk
19 test_name := thread/futures/futures.async/async
20 test_src := async.pass.cpp
async.pass.cpp 14 // async(F&& f, Args&&... args);
18 // async(launch policy, F&& f, Args&&... args);
67 std::future<int> f = std::async(f0);
75 std::future<int> f = std::async(std::launch::async, f0);
83 std::future<int> f = std::async(std::launch::any, f0);
91 std::future<int> f = std::async(std::launch::deferred, f0);
100 std::future<int&> f = std::async(f1);
108 std::future<int&> f = std::async(std::launch::async, f1)
    [all...]
  /external/libcxx/test/thread/futures/futures.overview/
launch.pass.cpp 14 // async = 1,
16 // any = async | deferred
26 (static_cast<int>(std::launch::async) | static_cast<int>(std::launch::deferred)), "");
28 static_assert(std::launch::any == (std::launch::async | std::launch::deferred), "");
29 static_assert(std::launch(0) == (std::launch::async & std::launch::deferred), "");
30 static_assert(std::launch::any == (std::launch::async ^ std::launch::deferred), "");
31 static_assert(std::launch::deferred == ~std::launch::async, "");
32 std::launch x = std::launch::async;
35 x = std::launch::async;
39 assert(x == std::launch::async);
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.overview/
launch.pass.cpp 14 // async = 1,
16 // any = async | deferred
26 (static_cast<int>(std::launch::async) | static_cast<int>(std::launch::deferred)), "");
28 static_assert(std::launch::any == (std::launch::async | std::launch::deferred), "");
29 static_assert(std::launch(0) == (std::launch::async & std::launch::deferred), "");
30 static_assert(std::launch::any == (std::launch::async ^ std::launch::deferred), "");
31 static_assert(std::launch::deferred == ~std::launch::async, "");
32 std::launch x = std::launch::async;
35 x = std::launch::async;
39 assert(x == std::launch::async);
    [all...]
  /external/chromium_org/net/spdy/
spdy_proxy_client_socket_unittest.cc 394 CreateMockRead(*resp, 1, ASYNC),
395 MockRead(ASYNC, 0, 2), // EOF
415 CreateMockRead(*resp, 1, ASYNC),
416 MockRead(ASYNC, 0, 2), // EOF
436 CreateMockRead(*resp, 1, ASYNC),
437 MockRead(ASYNC, 0, 2), // EOF
458 CreateMockRead(*resp, 1, ASYNC), MockRead(ASYNC, 0, 3), // EOF
489 MockRead(ASYNC, 0, 1), // EOF
513 CreateMockRead(*resp, 1, ASYNC), MockRead(ASYNC, 0, 3), // EO
    [all...]
  /external/chromium_org/net/url_request/
url_request_ftp_job_unittest.cc 258 MockWrite(ASYNC, 0, "GET ftp://ftp.example.com/ HTTP/1.1\r\n"
263 MockRead(ASYNC, 1, "HTTP/1.1 200 OK\r\n"),
264 MockRead(ASYNC, 2, "Content-Length: 9\r\n\r\n"),
265 MockRead(ASYNC, 3, "test.html"),
310 MockWrite(ASYNC, 0, "GET ftp://ftp.example.com/ HTTP/1.1\r\n"
316 MockRead(ASYNC, 1, "HTTP/1.1 407 Proxy Authentication Required\r\n"),
317 MockRead(ASYNC, 2, "Proxy-Authenticate: Basic "
319 MockRead(ASYNC, 3, "Content-Length: 9\r\n\r\n"),
320 MockRead(ASYNC, 4, "test.html"),
345 MockWrite(ASYNC, 0, "GET ftp://ftp.example.com/ HTTP/1.1\r\n
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.async/
async.pass.cpp 14 // async(F&& f, Args&&... args);
18 // async(launch policy, F&& f, Args&&... args);
67 std::future<int> f = std::async(f0);
75 std::future<int> f = std::async(std::launch::async, f0);
83 std::future<int> f = std::async(std::launch::any, f0);
91 std::future<int> f = std::async(std::launch::deferred, f0);
100 std::future<int&> f = std::async(f1);
108 std::future<int&> f = std::async(std::launch::async, f1)
    [all...]
  /external/chromium_org/chrome/browser/net/
async_dns_field_trial.h 10 // Returns true when the async resolver should be used.
network_stats_unittest.cc 48 // |io_mode_write| is the IO mode for writing only. Reading is always async.
84 net::MockRead(net::ASYNC, &inputs_[0][0], inputs_[0].size(), 1));
99 net::ASYNC, &inputs_[1 + i][0], inputs_[1 + i].size(), 3 + i));
253 TestStart(true, 0, 1, 100, net::ASYNC);
261 TestStart(false, 1, 1, 100, net::ASYNC);
269 TestStart(true, 1, 1, 100, net::ASYNC);
277 TestStart(true, 1, 1, 500, net::ASYNC);
285 TestStart(false, 1, 1, 500, net::ASYNC);
293 TestStart(true, 1, 1, 1200, net::ASYNC);
301 TestStart(false, 1, 1, 1200, net::ASYNC);
    [all...]
  /external/chromium_org/chrome/renderer/resources/extensions/
input.ime_custom_bindings.js 26 if (!input_ime.onKeyEvent.async) {
32 input_ime.onKeyEvent.async = false;
35 if (opt_extraInfo[i] == "async") {
36 input_ime.onKeyEvent.async = true;
  /external/chromium_org/chrome/renderer/spellchecker/
cocoa_spelling_engine_mac.cc 29 // TODO(groby): We might want async support here, too. Ideally,
30 // all engines share a similar path for async requests.
40 // TODO(groby): We might want async support here, too. Ideally,
41 // all engines share a similar path for async requests.
  /external/chromium_org/content/test/data/webkit/
async_script_abort_on_end.html 3 <script async src="http://url.handled.by.abort.on.end/400"></script>
  /external/chromium_org/chrome/browser/extensions/api/cast_channel/
cast_socket_unittest.cc 83 if (connect_data_.mode == net::ASYNC) {
346 socket_->AddReadResult(net::ASYNC, net::ERR_IO_PENDING);
388 // - TCP connection succeeds (async)
389 // - SSL connection succeeds (async)
393 socket_->SetupTcp1Connect(net::ASYNC, net::OK);
394 socket_->SetupSsl1Connect(net::ASYNC, net::OK);
395 socket_->AddReadResult(net::ASYNC, net::ERR_IO_PENDING);
407 // - TCP connection succeeds (async)
408 // - SSL connection fails with cert error (async)
410 // - Second TCP connection succeeds (async)
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
async2.test 18 # The async logic is not built into this system
85 do_test async-$err-1.1.$n {
92 do_test async-$err-1.2.$n.1 {
97 do_test async-$err-1.2.$n.2 {
104 do_test async-$err-1.3.$n.1 {
109 do_test async-$err-1.3.$n.2 {
  /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)
  /external/chromium_org/third_party/tcmalloc/chromium/src/
profile-handler.h 39 * registering a callback. All registered callbacks must be async-signal-safe.
66 * be async-signal-safe. The first three arguments are the values provided by
71 * - Callback must be async-signal-safe.
72 * - None of the functions in ProfileHandler are async-signal-safe. Therefore,
82 * async-signal-safe). If such a serialization is needed, follow the model
100 * created. This function is not async-signal-safe.
106 * context of SIGPROF handler, so must be async-signal-safe. The returned token
110 * function is not async-signal-safe.
120 * complete before returning. This function is not async-signal-safe.
128 * re-registered after this call. This function is not async-signal-safe
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
profile-handler.h 39 * registering a callback. All registered callbacks must be async-signal-safe.
66 * be async-signal-safe. The first three arguments are the values provided by
71 * - Callback must be async-signal-safe.
72 * - None of the functions in ProfileHandler are async-signal-safe. Therefore,
82 * async-signal-safe). If such a serialization is needed, follow the model
100 * created. This function is not async-signal-safe.
106 * context of SIGPROF handler, so must be async-signal-safe. The returned token
110 * function is not async-signal-safe.
120 * complete before returning. This function is not async-signal-safe.
128 * re-registered after this call. This function is not async-signal-safe
    [all...]
  /external/chromium_org/chromeos/cryptohome/
async_method_caller.cc 46 "Couldn't initiate async check of user's key."));
70 "Couldn't initiate async mount of cryptohome."));
82 "Couldn't initiate async key addition."));
91 "Couldn't initiate async mount of cryptohome."));
102 "Couldn't initiate async mount public of cryptohome."));
112 "Couldn't initiate async removal of cryptohome."));
123 "Couldn't initiate async attestation enroll request."));
135 "Couldn't initiate async attestation enroll."));
153 "Couldn't initiate async attestation cert request."));
172 "Couldn't initiate async attestation finish cert request."))
    [all...]
  /external/chromium_org/net/http/
http_proxy_client_socket_pool_unittest.cc 280 MockWrite(ASYNC, 0, "CONNECT www.google.com:443 HTTP/1.1\r\n"
286 MockRead(ASYNC, 1, "HTTP/1.1 407 Proxy Authentication Required\r\n"),
287 MockRead(ASYNC, 2, "Proxy-Authenticate: Basic realm=\"MyRealm1\"\r\n"),
288 MockRead(ASYNC, 3, "Content-Length: 10\r\n\r\n"),
289 MockRead(ASYNC, 4, "0123456789"),
296 CreateMockWrite(*req, 0, ASYNC),
297 CreateMockWrite(*rst, 2, ASYNC),
316 CreateMockRead(*resp, 1, ASYNC),
317 MockRead(ASYNC, 0, 3)
379 MockWrite(ASYNC, 0, "CONNECT www.google.com:443 HTTP/1.1\r\n
    [all...]
  /external/chromium_org/ui/file_manager/video_player/js/
test_util.js 13 * Public functions in the test.util.sync and the test.util.async namespaces are
17 * first argument. The functions in the test.util.async namespace are passed the
30 test.util.async = {};
101 if (test.util.async[request.func]) {
102 args[test.util.async[request.func].length - 1] = function() {
107 test.util.async[request.func].apply(null, args);

Completed in 1977 milliseconds

1 2 3 4 5 6 7 8 91011>>