/external/chromium/net/http/ |
http_auth_handler_unittest.cc | 29 bool async = (i == 0); local 46 mock_handler.SetGenerateExpectation(async, rv); 49 if (async)
|
/external/chromium_org/chrome/browser/prefs/ |
chrome_pref_service_factory.h | 41 // If |async| is true, asynchronous version is used. 52 bool async); 61 bool async);
|
/external/chromium_org/net/http/ |
http_auth_handler_unittest.cc | 27 bool async = (i == 0); local 45 mock_handler.SetGenerateExpectation(async, rv); 48 if (async)
|
/external/chromium_org/ppapi/shared_impl/ |
file_io_state_manager.h | 28 // If there are pending reads, any other kind of async operation is not 32 // If there are pending writes, any other kind of async operation is not 37 // further async operation is allowed.
|
/external/chromium_org/remoting/protocol/ |
fake_authenticator.h | 18 FakeChannelAuthenticator(bool accept, bool async); 61 FakeAuthenticator(Type type, int round_trips, Action action, bool async); 88 int round_trips, FakeAuthenticator::Action action, bool async);
|
/external/chromium/net/socket/ |
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_org/third_party/sqlite/src/test/ |
async.test | 9 # $Id: async.test,v 1.21 2009/06/05 17:09:12 drh Exp $ 15 # The async logic is not built into this system 46 # This proc flushes the contents of the async-IO queue through to the 49 # this is required for the tests to work in async mode.
|
/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; }
|
/external/chromium_org/chrome/browser/chromeos/extensions/ |
default_app_order.h | 24 // Constructs an ExternalLoader and starts file loading. |async| is true to 26 explicit ExternalLoader(bool async);
|
/external/chromium_org/net/socket/ |
socks_client_socket_unittest.cc | 141 MockWrite(ASYNC, kSOCKSOkRequest, arraysize(kSOCKSOkRequest)), 142 MockWrite(ASYNC, payload_write.data(), payload_write.size()) }; 144 MockRead(ASYNC, kSOCKSOkReply, arraysize(kSOCKSOkReply)), 145 MockRead(ASYNC, payload_read.data(), payload_read.size()) }; 255 MockWrite(ASYNC, kSOCKSOkRequest, arraysize(kSOCKSOkRequest)) }; 257 MockRead(ASYNC, kSOCKSPartialReply1, arraysize(kSOCKSPartialReply1)), 258 MockRead(ASYNC, kSOCKSPartialReply2, arraysize(kSOCKSPartialReply2)) }; 289 MockWrite(ASYNC, arraysize(kSOCKSPartialRequest1)), 291 MockWrite(ASYNC, 0), 292 MockWrite(ASYNC, 0) [all...] |
/external/chromium_org/content/test/plugin/ |
plugin_thread_async_call_test.cc | 22 // used to verify that async callbacks are not invoked after NPP_Destroy. 31 g_long_lived_instance->SetError("Async callback invoked after NPP_Destroy"); 66 // Schedule an async call that will succeed. Make sure to call that API from 101 // Schedule an async call that should not be called. 104 // Schedule an async call to end the test using the long lived instance.
|
plugin_thread_async_call_test.h | 16 // This class tests scheduling and unscheduling of async callbacks using
|
/external/chromium_org/google_apis/gcm/engine/ |
connection_handler_impl_unittest.cc | 230 WriteList write_list(1, net::MockWrite(net::ASYNC, 234 ReadList read_list(1, net::MockRead(net::ASYNC, 253 WriteList write_list(1, net::MockWrite(net::ASYNC, 259 ReadList read_list(1, net::MockRead(net::ASYNC, 277 WriteList write_list(1, net::MockWrite(net::ASYNC, 297 WriteList write_list(1, net::MockWrite(net::ASYNC, 302 read_list.push_back(net::MockRead(net::ASYNC, 321 WriteList write_list(1, net::MockWrite(net::ASYNC, 338 read_list[0] = net::MockRead(net::ASYNC, 354 WriteList write_list(1, net::MockWrite(net::ASYNC, [all...] |
/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...] |
/external/chromium_org/third_party/sqlite/src/ext/async/ |
sqlite3async.c | 67 ** protected by the async.queueMutex. As are the async.ioError and 68 ** async.nFile variables. 70 ** * The async.pLock list and all AsyncLock and AsyncFileLock 71 ** structures must be protected by the async.lockMutex mutex. 103 ** prepare the entry, acquire the async.queueMutex momentarily while 113 ** write-op queue. So async.queueMutex is held for the duration 128 ** The async.writerMutex is used to make sure only there is only 138 ** The async.queueMutex is always held during the <write-op list is 380 ** State information is held in the static variable "async" define 394 } async = { 0,0,0,0,0,1,0,0 }; variable in typeref:struct:TestAsyncStaticData [all...] |
/frameworks/wilhelm/src/objects/ |
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_org/net/websockets/ |
websocket_basic_stream_test.cc | 205 // smaller). All reads must be either SYNCHRONOUS or ASYNC (not a mixture), 280 CreateRead(MockRead(ASYNC, kSampleFrame, kSampleFrameSize)); 303 ASYNC, kSampleFrame, kSampleFrameSize, 1, 2, LAST_FRAME_BIG); 315 MockRead(ASYNC, kSampleFrame + 1, kSampleFrameSize - 1)}; 362 MockRead(ASYNC, 383 CreateChunkedRead(ASYNC, 407 CreateChunkedRead(ASYNC, 433 CreateChunkedRead(ASYNC, 478 CreateRead(MockRead(ASYNC, "", 0)); 496 CreateRead(MockRead(ASYNC, ERR_CONNECTION_CLOSED)) [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/chromium_org/content/test/data/npapi/ |
plugin_thread_async_call.html | 21 Tests that a plugin can schedule async callbacks.<P>
|
/external/chromium_org/win8/metro_driver/ |
file_picker_ash.h | 105 HRESULT SinglePickerDone(SingleFileAsyncOp* async, AsyncStatus status); 108 HRESULT MultiPickerDone(MultiFileAsyncOp* async, AsyncStatus status); 141 HRESULT FilePickerDone(SaveFileAsyncOp* async, AsyncStatus status); 161 HRESULT FolderPickerDone(FolderPickerAsyncOp* async, AsyncStatus status);
|
/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);
|