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

1 2 3 4 5 6 7 8 910

  /external/libppp/src/
async.c 31 __FBSDID("$FreeBSD: src/usr.sbin/ppp/async.c,v 1.29.26.1 2010/12/21 17:10:29 kensmith Exp $");
48 #include "async.h"
59 async_Init(struct async *async)
61 async_Setup(async);
62 memset(async->cfg.EscMap, '\0', sizeof async->cfg.EscMap);
66 async_Setup(struct async *async)
68 async->mode = MODE_HUNT
    [all...]
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);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.overview/
launch.pass.cpp 14 // async = 1,
16 // any = async | deferred
26 (static_cast<int>(std::launch::async) | static_cast<int>(std::launch::deferred)), "");
28 static_assert(std::launch::any == (std::launch::async | std::launch::deferred), "");
29 static_assert(std::launch(0) == (std::launch::async & std::launch::deferred), "");
30 static_assert(std::launch::any == (std::launch::async ^ std::launch::deferred), "");
31 static_assert(std::launch::deferred == ~std::launch::async, "");
32 std::launch x = std::launch::async;
35 x = std::launch::async;
39 assert(x == std::launch::async);
    [all...]
  /frameworks/wilhelm/src/android/
OutputMix_to_android.h 20 extern SLresult android_outputMix_realize(COutputMix *om, SLboolean async);
  /frameworks/wilhelm/src/objects/
CAudioRecorder.c 24 SLresult CAudioRecorder_Realize(void *self, SLboolean async)
30 result = android_audioRecorder_realize(thiz, async);
39 SLresult CAudioRecorder_Resume(void *self, SLboolean async)
CMediaPlayer.c 27 XAresult CMediaPlayer_Realize(void *self, XAboolean async)
35 result = android_Player_realize(thiz, async);
41 XAresult CMediaPlayer_Resume(void *self, XAboolean 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)
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)
  /external/chromium_org/chrome/browser/prefs/
chrome_pref_service_factory.h 39 // If |async| is true, asynchronous version is used.
51 bool async);
59 bool async);
chrome_pref_service_factory.cc 68 bool async) {
94 builder->WithAsync(async);
112 bool async) {
119 async);
129 bool async) {
137 async);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.async/
async.pass.cpp 14 // async(F&& f, Args&&... args);
18 // async(launch policy, F&& f, Args&&... args);
61 std::future<int> f = std::async(f0);
69 std::future<int> f = std::async(std::launch::async, f0);
77 std::future<int> f = std::async(std::launch::any, f0);
85 std::future<int> f = std::async(std::launch::deferred, f0);
94 std::future<int&> f = std::async(f1);
102 std::future<int&> f = std::async(std::launch::async, f1)
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/tutorials/analytics/
analytics.js 29 var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  /external/chromium/chrome/browser/extensions/
pack_extension_job.h 48 void set_asynchronous(bool async) { asynchronous_ = async; }
  /external/chromium_org/chrome/renderer/resources/extensions/
input.ime_custom_bindings.js 25 if (!input_ime.onKeyEvent.async)
30 input_ime.onKeyEvent.async = false;
33 if (opt_extraInfo[i] == "async") {
34 input_ime.onKeyEvent.async = true;
  /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/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);
  /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/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);
fake_authenticator.cc 18 FakeChannelAuthenticator::FakeChannelAuthenticator(bool accept, bool async)
20 async_(async),
82 Type type, int round_trips, Action action, bool async)
86 async_(async),
156 int round_trips, FakeAuthenticator::Action action, bool async)
158 action_(action), async_(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/third_party/sqlite/src/test/
async2.test 18 # The async logic is not built into this system
85 do_test async-$err-1.1.$n {
92 do_test async-$err-1.2.$n.1 {
97 do_test async-$err-1.2.$n.2 {
104 do_test async-$err-1.3.$n.1 {
109 do_test async-$err-1.3.$n.2 {
  /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/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/chrome/browser/chromeos/
audio_handler.h 65 bool TryToConnect(bool async);

Completed in 1810 milliseconds

1 2 3 4 5 6 7 8 910