HomeSort by relevance Sort by last modified time
    Searched full:async (Results 151 - 175 of 2132) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/ppapi/native_client/tools/browser_tester/browserdata/
nacltest.js 88 // Async calls can make it faster, but it can also change order of events.
89 this.async = false;
137 // Async result handler
138 if (this_.async) {
146 req.open('GET', url, this_.async);
148 if (!this_.async) {
690 function TestStatus(tester, name, async) {
695 this.async = async;
762 // Async tests do not move on without an explicit pass
    [all...]
  /frameworks/wilhelm/src/android/
android_GenericPlayer.cpp 285 void GenericPlayer::notify(const char* event, int data, bool async) {
286 SL_LOGV("GenericPlayer::notify(event=%s, data=%d, async=%s)", event, data,
287 async ? "true" : "false");
290 if (async) {
298 void GenericPlayer::notify(const char* event, int data1, int data2, bool async) {
299 SL_LOGV("GenericPlayer::notify(event=%s, data1=%d, data2=%d, async=%s)", event, data1, data2,
300 async ? "true" : "false");
303 if (async) {
403 true /*async*/);
555 notify(PLAYEREVENT_PREFETCHSTATUSCHANGE, (int32_t)mCacheStatus, true /*async*/);
    [all...]
  /external/lldb/source/Plugins/Process/gdb-remote/
GDBRemoteCommunicationClient.cpp 338 log->Printf ("async: async packet = %s", m_async_packet.c_str());
351 log->Printf ("async: sent interrupt");
356 log->Printf ("async: got response");
365 log->Printf ("async: timed out waiting for response");
374 log->Printf ("async: timed out waiting for process to resume, but process was resumed");
376 log->Printf ("async: async packet sent");
382 log->Printf ("async: timed out waiting for process to resume");
391 log->Printf ("async: got lock without sending interrupt")
    [all...]
  /external/chromium_org/base/
async_socket_io_handler.h 64 // thread's message loop (must be TYPE_IO), to do async reads from the socket
72 // was issued. Regardless of async or sync operation, the
  /external/chromium_org/chrome/browser/extensions/api/push_messaging/
push_messaging_api.h 78 // Begin the async fetch of the Gaia ID.
81 // Begin the async fetch of the access token for Gaia ID fetcher.
obfuscated_gaia_id_fetcher.h 26 // Call "Start()" to start the async fetch.
  /external/chromium_org/content/browser/service_worker/
service_worker_storage_unittest.cc 192 EXPECT_FALSE(was_called); // always async
205 EXPECT_FALSE(was_called); // always async
216 EXPECT_FALSE(was_called); // always async
227 EXPECT_FALSE(was_called); // always async
252 EXPECT_FALSE(was_called); // always async
318 // But FindRegistrationForPattern is always async.
336 // Now FindRegistrationForDocument should be async.
348 // And FindRegistrationForPattern is always async.
  /external/chromium_org/jingle/glue/
proxy_resolving_client_socket_unittest.cc 79 net::MockConnect(net::ASYNC, net::ERR_ADDRESS_UNREACHABLE));
92 socket_data2.set_connect_data(net::MockConnect(net::ASYNC, net::OK));
  /external/chromium_org/net/http/
http_auth_handler_mock.cc 75 void HttpAuthHandlerMock::SetGenerateExpectation(bool async, int rv) {
76 generate_async_ = async;
  /external/chromium_org/sandbox/linux/services/
broker_process.h 51 // Can be used in place of access(). Will be async signal safe.
56 // Can be used in place of open(). Will be async signal safe.
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
net.js 62 var async = true;
63 xhr.open(method, options.url, async);
  /external/chromium_org/ui/events/gestures/
gesture_recognizer.h 79 // Subscribes |helper| for dispatching async gestures such as long press.
85 // Unsubscribes |helper| from async gesture dispatch.
  /external/fio/engines/
skeleton_external.c 35 * The ->getevents() hook is used to reap completion events from an async
48 * async io engines, and need not be supported.
  /frameworks/base/core/java/android/util/
TimedRemoteCaller.java 24 * This is a helper class for making an async one way call and
25 * its async one way response response in a sync fashion within
  /frameworks/native/libs/gui/tests/
IGraphicBufferProducer_test.cpp 132 async = QUEUE_BUFFER_INPUT_ASYNC;
143 async,
172 QueueBufferInputBuilder& setAsync(bool async) {
173 this->async = async;
188 int async; member in struct:android::IGraphicBufferProducerTest::QueueBufferInputBuilder
198 status_t dequeueBuffer(bool async, uint32_t w, uint32_t h, uint32_t format, uint32_t usage, DequeueBufferResult* result) {
199 return mProducer->dequeueBuffer(&result->slot, &result->fence, async, w, h, format, usage);
  /frameworks/testing/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/base/
ThreadPoolExecutorExtractor.java 68 throw new RuntimeException("Interrupted while trying to get the async task executor!", ie);
79 throw new RuntimeException("Interrupted while trying to get the compat async executor!", ie);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/
prctl.h 40 # define PR_FP_EXC_NONRECOV 1 /* async non-recoverable exc. mode */
41 # define PR_FP_EXC_ASYNC 2 /* async recoverable exception mode */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
prctl.h 40 # define PR_FP_EXC_NONRECOV 1 /* async non-recoverable exc. mode */
41 # define PR_FP_EXC_ASYNC 2 /* async recoverable exception mode */
  /development/host/windows/usb/api/
adb_endpoint_object.h 60 /** \brief Common code for async read / write
66 @param[in] event_handle Event handle that should be signaled when async I/O
118 @param[in] event_handle Event handle that should be signaled when async I/O
138 @param[in] event_handle Event handle that should be signaled when async I/O
  /external/chromium_org/base/debug/
debugger_posix.cc 60 // NOTE: This code MUST be async-signal safe (it's used by in-process
63 // While some code used below may be async-signal unsafe, note how
129 // NOTE: This code MUST be async-signal safe (it's used by in-process
238 // NOTE: This code MUST be async-signal safe (it's used by in-process
  /external/chromium_org/chrome/browser/android/provider/
blocking_ui_thread_async_request.h 14 // Allows making async requests and blocking the current thread until the
  /external/chromium_org/chrome/browser/prerender/
prerender_resource_throttle.h 61 bool async,
  /external/chromium_org/chrome/browser/resources/net_internals/
dns_view.html 14 <h4>Async DNS Configuration</h4>
  /external/chromium_org/chrome/browser/ui/webui/chromeos/login/
network_dropdown_handler.cc 88 // Since language change is async,
  /external/chromium_org/chrome/browser/ui/webui/options/
certificate_manager_handler.h 74 // buffer -> starts async write operation
89 // 3. user enters password -> ImportPersonalPasswordSelected -> starts async
105 // 2. user selects file -> ImportServerFileSelected -> starts async read
115 // 2. user selects file -> ImportCAFileSelected -> starts async read

Completed in 2482 milliseconds

1 2 3 4 5 67 8 91011>>