HomeSort by relevance Sort by last modified time
    Searched full:async (Results 1 - 25 of 1591) 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);
  /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...]
buffered_write_stream_socket_unittest.cc 64 MockWrite(ASYNC, 0, "abc"),
84 MockWrite(ASYNC, 0, "abc"),
85 MockWrite(ASYNC, 1, "def"),
86 MockWrite(ASYNC, 2, "ghi"),
100 MockWrite(ASYNC, 0, "abc"),
101 MockWrite(ASYNC, 1, "def"),
111 MockWrite(ASYNC, 0, "abc"),
112 MockWrite(ASYNC, 1, "def"),
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...]
  /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 478 CreateMockRead(*resp, 1, ASYNC),
479 MockRead(ASYNC, 0, 2), // EOF
499 CreateMockRead(*resp, 1, ASYNC),
500 MockRead(ASYNC, 0, 2), // EOF
522 CreateMockRead(*resp, 1, ASYNC),
523 MockRead(ASYNC, 0, 2), // EOF
542 CreateMockRead(*resp, 1, ASYNC),
543 MockRead(ASYNC, 0, 2), // EOF
571 MockRead(ASYNC, 0, 1), // EOF
593 CreateMockRead(*resp, 1, ASYNC),
    [all...]
  /external/chromium_org/net/url_request/
url_request_ftp_job_unittest.cc 255 MockWrite(ASYNC, 0, "GET ftp://ftp.example.com/ HTTP/1.1\r\n"
260 MockRead(ASYNC, 1, "HTTP/1.1 200 OK\r\n"),
261 MockRead(ASYNC, 2, "Content-Length: 9\r\n\r\n"),
262 MockRead(ASYNC, 3, "test.html"),
305 MockWrite(ASYNC, 0, "GET ftp://ftp.example.com/ HTTP/1.1\r\n"
311 MockRead(ASYNC, 1, "HTTP/1.1 407 Proxy Authentication Required\r\n"),
312 MockRead(ASYNC, 2, "Proxy-Authenticate: Basic "
314 MockRead(ASYNC, 3, "Content-Length: 9\r\n\r\n"),
315 MockRead(ASYNC, 4, "test.html"),
338 MockWrite(ASYNC, 0, "GET ftp://ftp.example.com/ HTTP/1.1\r\n
    [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 25 if (!input_ime.onKeyEvent.async)
30 input_ime.onKeyEvent.async = false;
33 if (opt_extraInfo[i] == "async") {
34 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>
  /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);
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...]
  /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/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...]
  /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."));
122 "Couldn't initiate async attestation enroll request."));
132 "Couldn't initiate async attestation enroll."));
148 "Couldn't initiate async attestation cert request."));
167 "Couldn't initiate async attestation finish cert request."))
    [all...]
  /external/chromium_org/net/http/
http_proxy_client_socket_pool_unittest.cc 283 MockWrite(ASYNC, 0, "CONNECT www.google.com:443 HTTP/1.1\r\n"
289 MockRead(ASYNC, 1, "HTTP/1.1 407 Proxy Authentication Required\r\n"),
290 MockRead(ASYNC, 2, "Proxy-Authenticate: Basic realm=\"MyRealm1\"\r\n"),
291 MockRead(ASYNC, 3, "Content-Length: 10\r\n\r\n"),
292 MockRead(ASYNC, 4, "0123456789"),
299 CreateMockWrite(*req, 0, ASYNC),
300 CreateMockWrite(*rst, 2, ASYNC),
319 CreateMockRead(*resp, 1, ASYNC),
320 MockRead(ASYNC, 0, 3)
382 MockWrite(ASYNC, 0, "CONNECT www.google.com:443 HTTP/1.1\r\n
    [all...]
  /external/chromium_org/webkit/browser/fileapi/
file_stream_writer.h 27 // from |initial_offset|. Uses |task_runner| for async file operations.
53 // It is invalid to call Write while there is an in-flight async operation.
57 // Cancels an in-flight async operation.
64 // invalid to call Cancel() more than once on the same async operation.
66 // In either case, the callback function passed to the in-flight async
78 // It is invalid to call Flush while there is an in-flight async operation.

Completed in 2126 milliseconds

1 2 3 4 5 6 7 8 91011>>