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

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8XMLHttpRequestCustom.cpp 156 // open(method, url, async)
157 // open(method, url, async, user)
158 // open(method, url, async, user, passwd)
177 bool async = info[2]->BooleanValue(); local
184 xmlHttpRequest->open(method, url, async, user, password, exceptionState);
186 xmlHttpRequest->open(method, url, async, user, exceptionState);
189 xmlHttpRequest->open(method, url, async, exceptionState);
  /external/chromium_org/third_party/google_appengine_cloudstorage/cloudstorage/
rest_api.py 38 """Helper to synthesize a synchronous method from an async method name.
60 """Class decorator to add synchronous methods corresponding to async methods.
109 APIs are available as synchronous and async methods; synchronous
110 methods are synthesized from async ones by the add_sync_methods()
164 This is an async wrapper around urlfetch(). It adds an authentication
235 """Make an async urlfetch() call.
237 This just passes the url and keyword arguments to NDB's async
  /external/chromium_org/net/quic/
quic_network_transaction_unittest.cc 420 mock_quic_data.AddRead(ASYNC, ERR_SOCKET_NOT_CONNECTED);
443 MockRead(ASYNC, OK)
448 SSLSocketDataProvider ssl(ASYNC, OK);
462 MockRead(ASYNC, OK)
503 MockRead(ASYNC, OK)
559 MockWrite(ASYNC, ERR_IO_PENDING, 0)
562 MockRead(ASYNC, ERR_IO_PENDING, 1),
739 MockRead(ASYNC, close->data(), close->length()),
740 MockRead(ASYNC, OK), // EOF
751 MockRead(ASYNC, OK
    [all...]
  /external/chromium_org/net/websockets/
websocket_basic_stream_test.cc 207 // smaller). All reads must be either SYNCHRONOUS or ASYNC (not a mixture),
282 CreateRead(MockRead(ASYNC, kSampleFrame, kSampleFrameSize));
305 ASYNC, kSampleFrame, kSampleFrameSize, 1, 2, LAST_FRAME_BIG);
317 MockRead(ASYNC, kSampleFrame + 1, kSampleFrameSize - 1)};
364 MockRead(ASYNC,
385 CreateChunkedRead(ASYNC,
409 CreateChunkedRead(ASYNC,
435 CreateChunkedRead(ASYNC,
480 CreateRead(MockRead(ASYNC, "", 0));
498 CreateRead(MockRead(ASYNC, ERR_CONNECTION_CLOSED))
    [all...]
  /external/chromium_org/base/third_party/symbolize/
demangle.h 32 // An async-signal-safe and thread-safe demangler for Itanium C++ ABI
35 // The demangler is implemented to be used in async signal handlers to
37 // abi::__cxa_demangle() in such signal handlers since it's not async
  /external/chromium_org/chrome/browser/prefs/
chrome_pref_service_factory.h 57 // If |async| is true, asynchronous version is used.
68 bool async);
78 bool async);
  /external/chromium_org/content/child/
web_database_observer_impl.cc 54 UMA_HISTOGRAM_ENUMERATION("websql.Async." name, \
57 UMA_HISTOGRAM_ENUMERATION("websql.Async." name ".ErrorSite", \
163 UMA_HISTOGRAM_ENUMERATION("websql.Async.VacuumResult",
  /external/chromium_org/gpu/command_buffer/common/
gles2_cmd_format_test.cc 79 // Set initial async token.
85 // Loop until previous async token has passed if any was set.
98 // Set the async upload token on the fake upload thread and assert that
  /external/chromium_org/net/http/
http_network_transaction_ssl_unittest.cc 113 SSLSocketDataProvider ssl_data1(ASYNC, ERR_SSL_PROTOCOL_ERROR);
121 SSLSocketDataProvider ssl_data2(ASYNC, ERR_SSL_PROTOCOL_ERROR);
129 SSLSocketDataProvider ssl_data3(ASYNC, ERR_SSL_PROTOCOL_ERROR);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLScriptElement.cpp 106 void HTMLScriptElement::setAsync(bool async)
108 setBooleanAttribute(asyncAttr, async);
112 bool HTMLScriptElement::async() const function in class:WebCore::HTMLScriptElement
  /external/chromium_org/win8/metro_driver/
file_picker.cc 127 HRESULT SinglePickerDone(SingleFileAsyncOp* async, AsyncStatus status);
130 HRESULT MultiPickerDone(MultiFileAsyncOp* async, AsyncStatus status);
151 HRESULT FilePickerDone(SaveFileAsyncOp* async, AsyncStatus status);
198 HRESULT OpenFilePickerSession::SinglePickerDone(SingleFileAsyncOp* async,
202 HRESULT hr = async->GetResults(file.GetAddressOf());
231 LOG(ERROR) << "Unexpected async status " << static_cast<int>(status);
239 HRESULT OpenFilePickerSession::MultiPickerDone(MultiFileAsyncOp* async,
243 HRESULT hr = async->GetResults(files.GetAddressOf());
263 LOG(ERROR) << "Unexpected async status " << static_cast<int>(status);
570 HRESULT SaveFilePickerSession::FilePickerDone(SaveFileAsyncOp* async,
    [all...]
secondary_tile.cc 36 HRESULT Respond(winfoundtn::IAsyncOperation<bool>* async,
53 HRESULT TileRequestCompleter::Respond(winfoundtn::IAsyncOperation<bool>* async,
60 CheckHR(async->GetResults(&result));
80 LOG(ERROR) << __FUNCTION__ << " Unexpected async status "
117 // Deleted in TileRequestCompleter::Respond when the async operation
187 // Deleted in TileRequestCompleter::Respond when the async operation
  /frameworks/native/libs/gui/
IGraphicBufferProducer.cpp 93 virtual status_t dequeueBuffer(int *buf, sp<Fence>* fence, bool async,
97 data.writeInt32(async);
257 virtual void allocateBuffers(bool async, uint32_t width, uint32_t height,
261 data.writeInt32(static_cast<int32_t>(async));
302 bool async = data.readInt32(); local
309 int result = dequeueBuffer(&buf, &fence, async, w, h, format, usage);
415 bool async = static_cast<bool>(data.readInt32()); local
420 allocateBuffers(async, width, height, format, usage);
439 + sizeof(async)
459 FlattenableUtils::write(buffer, size, async);
    [all...]
BufferQueueCore.cpp 133 int BufferQueueCore::getMinUndequeuedBufferCountLocked(bool async) const {
140 if (mDequeueBufferCannotBlock || async) {
147 int BufferQueueCore::getMinMaxBufferCountLocked(bool async) const {
148 return getMinUndequeuedBufferCountLocked(async) + 1;
151 int BufferQueueCore::getMaxBufferCountLocked(bool async) const {
152 int minMaxBufferCount = getMinMaxBufferCountLocked(async);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/alsa/
global.h 109 * \brief Internal structure for an async notification client handler.
111 * The ALSA library uses a pointer to this structure as a handle to an async
117 * \brief Async notification callback.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/alsa/
global.h 109 * \brief Internal structure for an async notification client handler.
111 * The ALSA library uses a pointer to this structure as a handle to an async
117 * \brief Async notification callback.
  /external/chromium-trace/trace-viewer/src/tracing/tracks/
async_slice_group_track.js 18 'async-slice-group-track',
27 this.classList.add('async-slice-group-track');
  /external/chromium_org/gpu/command_buffer/service/
gles2_cmd_decoder_unittest_async_pixel.cc 69 // Set a mock Async delegate
142 // Async redefinitions are not allowed!
154 // Binding/defining of the async transfer
199 .WillOnce(Return(false)) // async validation
217 // No async call, command fails.
257 // Start async transfer.
297 // Start async transfer.
330 // Set a mock Async delegate.
gpu_switches.cc 55 // Allows async texture uploads (off main thread) via GL context sharing.
57 "enable-share-group-async-texture-upload";
  /external/chromium_org/ppapi/examples/enumerate_devices/
enumerate_devices.html 53 status.innerText = 'Enumerating devices async...'
76 <li><a href="javascript:EnumerateDevices(false)">Enumerate devices async</a></li>
  /external/chromium_org/remoting/webapp/
xhr_proxy.js 45 method, url, async, user, password) {
46 if (!async) {
  /external/chromium_org/sandbox/linux/seccomp-bpf/
die.h 14 // exits with a fatal error. This is not async-signal safe.
17 // An async signal safe version of the same API. Won't print the filename
  /external/chromium_org/third_party/libjingle/source/talk/base/
macasyncsocket.h 58 // Creates an async socket from an existing bsd socket
62 // to async mode
  /external/chromium_org/third_party/sinonjs/src/
sinon-qunit.js 54 QUnit.test = global.test = function (testName, expected, callback, async) {
60 return qTest(testName, expected, sinon.test(callback), async);
  /external/chromium_org/third_party/webrtc/base/
macasyncsocket.h 64 // Creates an async socket from an existing bsd socket
68 // to async mode

Completed in 1165 milliseconds

1 2 34 5 6 7 8 91011>>