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

1 2

  /external/libppp/src/
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);
physical.h 83 struct async async; /* Our async state */ member in struct:physical
  /external/chromium_org/chrome/browser/resources/file_manager/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 = {};
68 test.util.async.openMainWindow = function(path, callback) {
100 test.util.async.waitForWindow = function(appIdPrefix, callback) {
206 test.util.async.waitForWindowGeometry = function(
229 test.util.async.waitForElement = function(
257 test.util.async.waitForFileListChange = function(
303 test.util.async.performAutocompleteAndWait = function(
337 test.util.async.waitAndAcceptDialog = function(contentWindow, callback)
    [all...]
  /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/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/third_party/WebKit/Source/bindings/v8/custom/
V8XMLHttpRequestCustom.cpp 133 // open(method, url, async)
134 // open(method, url, async, user)
135 // open(method, url, async, user, passwd)
153 bool async = args[2]->BooleanValue(); local
160 xmlHttpRequest->open(method, url, async, user, passwd, es);
162 xmlHttpRequest->open(method, url, async, user, es);
165 xmlHttpRequest->open(method, url, async, es);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLScriptElement.cpp 100 void HTMLScriptElement::setAsync(bool async)
102 setBooleanAttribute(asyncAttr, async);
106 bool HTMLScriptElement::async() const function in class:WebCore::HTMLScriptElement
  /frameworks/native/include/gui/
IGraphicBufferProducer.h 88 // The async parameter sets whether we're in asynchrnous mode for this
90 virtual status_t dequeueBuffer(int *slot, sp<Fence>* fence, bool async,
102 // The async parameter sets whether we're queuing a buffer in asynchronous mode.
112 const Rect& crop, int scalingMode, uint32_t transform, bool async,
115 scalingMode(scalingMode), transform(transform), async(async),
125 *outAsync = bool(async);
141 int async; member in struct:android::IGraphicBufferProducer::QueueBufferInput
  /external/chromium_org/ui/aura/test/
event_generator.h 114 void set_async(bool async) { async_ = async; }
115 bool async() const { return async_; } function in class:aura::test::EventGenerator
303 void DoDispatchEvent(ui::Event* event, bool async);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
NetworkResourcesData.h 52 static PassRefPtr<XHRReplayData> create(const String &method, const KURL&, bool async, PassRefPtr<FormData>, bool includeCredentials);
57 bool async() const { return m_async; } function in class:WebCore::XHRReplayData
63 XHRReplayData(const String &method, const KURL&, bool async, PassRefPtr<FormData>, bool includeCredentials);
  /frameworks/native/libs/gui/
IGraphicBufferProducer.cpp 82 virtual status_t dequeueBuffer(int *buf, sp<Fence>* fence, bool async,
86 data.writeInt32(async);
199 bool async = data.readInt32(); local
206 int result = dequeueBuffer(&buf, &fence, async, w, h, format, usage);
278 + sizeof(async)
297 FlattenableUtils::write(buffer, size, async);
310 + sizeof(async);
321 FlattenableUtils::read(buffer, size, async);
BufferQueue.cpp 170 // fine to assume async to false before we're setting the buffer count
253 status_t BufferQueue::dequeueBuffer(int *outBuf, sp<Fence>* outFence, bool async,
284 const int maxBufferCount = getMaxBufferCountLocked(async);
285 if (async && mOverrideMaxBufferCount) {
290 ST_LOGE("dequeueBuffer: async mode is invalid with buffercount override");
347 const int minUndequeuedCount = getMinUndequeuedBufferCount(async);
479 bool async; local
483 &async, &fence);
511 const int maxBufferCount = getMaxBufferCountLocked(async);
512 if (async && mOverrideMaxBufferCount)
    [all...]
  /frameworks/native/services/surfaceflinger/DisplayHardware/
VirtualDisplaySurface.cpp 236 true /* async*/,
267 bool async = (source == SOURCE_SINK); local
269 status_t result = mSource[source]->dequeueBuffer(sslot, fence, async,
303 status_t VirtualDisplaySurface::dequeueBuffer(int* pslot, sp<Fence>* fence, bool async,
309 VDS_LOGW_IF(!async, "EGL called dequeueBuffer with !async despite eglSwapInterval(0)");
408 bool async; local
410 &transform, &async, &mFbFence);
  /frameworks/native/cmds/atrace/
atrace.cpp 746 bool async = false; local
815 async = true;
820 async = true;
823 async = true;
861 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:
  /external/chromium/net/socket/
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/net/websockets/
websocket_channel_test.cc 417 ASYNC
432 // and PrepareReadFramesError(). If |async| is ASYNC, then ReadFrames() will
435 // |async| is SYNC, the response will be returned synchronously. |error| is
441 void PrepareReadFrames(IsSync async,
445 new Response(async, error, CreateFrameChunkVector(chunks)));
450 void PrepareRawReadFrames(IsSync async,
453 responses_.push_back(new Response(async, error, chunks.Pass()));
457 void PrepareReadFramesError(IsSync async, int error) {
459 new Response(async, error, ScopedVector<WebSocketFrameChunk>()))
495 IsSync async; member in struct:net::__anon11622::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...]
  /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:__anon2054::__anon2055
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 */
  /external/bluetooth/bluedroid/bta/include/
bta_jv_api.h 258 BOOLEAN async; /* FALSE, if local initiates disconnect */ member in struct:__anon3226
340 BOOLEAN async; /* FALSE, if local initiates disconnect */ member in struct:__anon3235
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
gles2_cmd_decoder.cc 874 // Extra validation for async tex(Sub)Image2D.
6969 GLboolean async = c.async; local
    [all...]
  /external/chromium_org/gpu/command_buffer/common/
gles2_cmd_format_autogen.h 4928 uint32 async; member in struct:ReadPixels
    [all...]
  /prebuilts/tools/common/m2/internal/org/gradle/gradle-tooling-api/1.6/
gradle-tooling-api-1.6.jar 
  /prebuilts/tools/common/m2/internal/org/gradle/gradle-tooling-api/1.6-rc-1/
gradle-tooling-api-1.6-rc-1.jar 

Completed in 1323 milliseconds

1 2