HomeSort by relevance Sort by last modified time
    Searched defs:async (Results 1 - 25 of 36) sorted by null

1 2

  /external/chromium_org/net/http/
http_auth_handler_unittest.cc 29 bool async = (i == 0); local
47 mock_handler.SetGenerateExpectation(async, rv);
50 if (async)
  /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/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
HTMLLinkElement.cpp 418 bool HTMLLinkElement::async() const function in class:WebCore::HTMLLinkElement
  /frameworks/native/include/gui/
IGraphicBufferProducer.h 128 // The async parameter sets whether we're in asynchronous mode for this
155 // * BAD_VALUE - both in async mode and buffer count was less than the
169 virtual status_t dequeueBuffer(int* slot, sp<Fence>* fence, bool async,
223 // async mode and buffer count override.
258 // * both in async mode and buffer count was less than the
273 // async - if the buffer is queued in asynchronous mode
279 const Rect& crop, int scalingMode, uint32_t transform, bool async,
283 async(async), fence(fence) { }
293 *outAsync = bool(async);
313 int async; member in struct:android::IGraphicBufferProducer::QueueBufferInput
    [all...]
  /external/chromium_org/ui/aura/test/
event_generator.h 111 void set_async(bool async) { async_ = async; }
112 bool async() const { return async_; } function in class:aura::test::EventGenerator
346 void DoDispatchEvent(ui::Event* event, bool async);
  /external/chromium_org/ui/file_manager/file_manager/background/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 = {};
46 test.util.async.openMainWindow = function(appState, callback) {
276 test.util.async.selectVolume = function(contentWindow, iconName, callback) {
324 test.util.async.executeScriptInWebView = function(
700 if (test.util.async[request.func]) {
701 args[test.util.async[request.func].length - 1] = function() {
706 test.util.async[request.func].apply(null, args);
  /external/chromium_org/base/files/
file.h 286 bool async() const { return async_; } function in class:base::File
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
NetworkResourcesData.h 56 static PassRefPtr<XHRReplayData> create(ExecutionContext*, const AtomicString& method, const KURL&, bool async, PassRefPtr<FormData>, bool includeCredentials);
61 bool async() const { return m_async; } function in class:WebCore::XHRReplayData
67 XHRReplayData(ExecutionContext*, const AtomicString& method, const KURL&, bool async, PassRefPtr<FormData>, bool includeCredentials);
  /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...]
BufferQueueProducer.cpp 130 bool async, int* found, status_t* returnFlags) const {
138 const int maxBufferCount = mCore->getMaxBufferCountLocked(async);
139 if (async && mCore->mOverrideMaxBufferCount) {
144 BQ_LOGE("%s: async mode is invalid with buffer count override",
202 mCore->getMinUndequeuedBufferCountLocked(async);
247 sp<android::Fence> *outFence, bool async,
255 BQ_LOGV("dequeueBuffer: async=%s w=%u h=%u format=%#x, usage=%#x",
256 async ? "true" : "false", width, height, format, usage);
280 status_t status = waitForFreeSlotThenRelock("dequeueBuffer", async,
478 // TODO: Should we provide an async flag to attachBuffer? It seem
518 bool async; local
    [all...]
  /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/native/services/surfaceflinger/DisplayHardware/
VirtualDisplaySurface.cpp 239 true /* async*/,
290 bool async = (source == SOURCE_SINK);
292 status_t result = mSource[source]->dequeueBuffer(sslot, fence, async,
331 status_t VirtualDisplaySurface::dequeueBuffer(int* pslot, sp<Fence>* fence, bool async,
334 return mSource[SOURCE_SINK]->dequeueBuffer(pslot, fence, async, w, h, format, usage);
340 VDS_LOGW_IF(!async, "EGL called dequeueBuffer with !async despite eglSwapInterval(0)");
459 bool async; local
461 &transform, &async, &mFbFence);
519 void VirtualDisplaySurface::allocateBuffers(bool /* async */,
    [all...]
  /frameworks/native/cmds/atrace/
atrace.cpp 811 bool async = false; local
880 async = true;
885 async = true;
888 async = true;
926 if (ok && !async) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
xmlbuilder.py 337 async = False variable in class:DocumentLS
341 def _set_async(self, async):
342 if async:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
xmlbuilder.py 337 async = False variable in class:DocumentLS
341 def _set_async(self, async):
342 if async:
  /bionic/libc/kernel/uapi/drm/
exynos_drm.h 102 __u64 async; member in struct:drm_exynos_g2d_exec
  /external/chromium_org/net/websockets/
websocket_channel_test.cc 452 enum IsSync { SYNC, ASYNC };
466 // PrepareReadFramesError(). If |async| is ASYNC, then ReadFrames() will
469 // |async| is SYNC, the response will be returned synchronously. |error| is
475 void PrepareReadFrames(IsSync async,
478 responses_.push_back(new Response(async, error, CreateFrameVector(frames)));
483 void PrepareRawReadFrames(IsSync async,
486 responses_.push_back(new Response(async, error, frames.Pass()));
490 void PrepareReadFramesError(IsSync async, int error) {
492 new Response(async, error, ScopedVector<WebSocketFrame>()))
528 IsSync async; member in struct:net::__anon13825::ReadableFakeWebSocketStream::Response
    [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...]
  /external/kernel-headers/original/uapi/drm/
exynos_drm.h 149 __u64 async; member in struct:drm_exynos_g2d_exec
  /external/lldb/tools/debugserver/source/
RNBRemote.h 41 halt, // ^C (async halt)
255 HandlePacketCallback async; // Function to call when inferior is running member in struct:RNBRemote::Packet
275 async (NULL),
288 async (in_async),
  /device/lge/mako/camera/QCamera/stack/mm-camera-interface/inc/
mm_camera.h 73 MM_CAMERA_ASYNC_CMD_TYPE_STOP, /* async stop */
112 mm_camera_async_cmd_t async; /* async cmd */ member in union:__anon3508::__anon3509
357 /* cmd thread for superbuffer dataCB and async stop*/
409 mm_camera_cmd_thread_t async_cmd_thread; /* thread for async cmd */
561 * from the context of dataCB, but async stop is holding ch_lock */
  /device/moto/shamu/camera/QCamera/stack/mm-camera-interface/inc/
mm_camera.h 72 MM_CAMERA_ASYNC_CMD_TYPE_STOP, /* async stop */
115 mm_camera_async_cmd_t async; /* async cmd */ member in union:__anon3989::__anon3990
391 /* cmd thread for superbuffer dataCB and async stop*/
446 mm_camera_cmd_thread_t async_cmd_thread; /* thread for async cmd */
636 * from the context of dataCB, but async stop is holding ch_lock */
  /external/bluetooth/bluedroid/bta/include/
bta_jv_api.h 258 BOOLEAN async; /* FALSE, if local initiates disconnect */ member in struct:__anon5508
340 BOOLEAN async; /* FALSE, if local initiates disconnect */ member in struct:__anon5517
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
gles2_cmd_decoder.cc 735 // Helper for async upload token completion notification callback.
907 // Extra validation for async tex(Sub)Image2D.
7330 GLboolean async = c.async; local
    [all...]

Completed in 1494 milliseconds

1 2