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

1 2 3 4

  /system/media/opensles/libopensles/
CAudioRecorder.c 24 SLresult CAudioRecorder_Realize(void *self, SLboolean async)
30 result = android_audioRecorder_realize(this, async);
39 SLresult CAudioRecorder_Resume(void *self, SLboolean async)
android_OutputMix.h 20 extern SLresult android_outputMix_realize(COutputMix *om, SLboolean async);
COutputMix.c 24 SLresult COutputMix_Realize(void *self, SLboolean async)
30 result = android_outputMix_realize(this, async);
39 SLresult COutputMix_Resume(void *self, SLboolean async)
CAudioPlayer.c 24 SLresult CAudioPlayer_Realize(void *self, SLboolean async)
30 result = android_audioPlayer_realize(this, async);
47 SLresult CAudioPlayer_Resume(void *self, SLboolean async)
CEngine.c 24 SLresult CEngine_Realize(void *self, SLboolean async)
51 SLresult CEngine_Resume(void *self, SLboolean async)
android_AudioRecorder.h 46 extern SLresult android_audioRecorder_realize(CAudioRecorder* ar, SLboolean async);
android_AudioPlayer.h 49 extern SLresult android_audioPlayer_realize(CAudioPlayer *pAudioPlayer, SLboolean async);
android_OutputMix.cpp 28 SLresult android_outputMix_realize(COutputMix *om, SLboolean async) {
IObject.c 85 static SLresult IObject_Realize(SLObjectItf self, SLboolean async)
100 if (async && (SL_OBJECTID_ENGINE != class__->mObjectID)) {
110 assert(async);
123 result = (NULL != realize) ? (*realize)(this, async) : SL_RESULT_SUCCESS;
134 if (async && (NULL != callback)) {
213 static SLresult IObject_Resume(SLObjectItf self, SLboolean async)
228 if (async) {
238 assert(async);
IDynamicInterfaceManagement.c 106 const SLInterfaceID iid, SLboolean async)
132 if (async) {
355 const SLInterfaceID iid, SLboolean async)
381 if (async) {
  /external/chromium/net/socket/
socket_test_util.h 44 MockConnect() : async(true), result(OK) { }
45 MockConnect(bool a, int r) : async(a), result(r) { }
47 bool async; member in struct:net::MockConnect
53 MockRead() : async(false), result(0), data(NULL), data_len(0) {}
56 MockRead(bool async, int result) : async(async) , result(result), data(NULL),
60 explicit MockRead(const char* data) : async(true), result(0), data(data),
64 MockRead(bool async, const char* data) : async(async), result(0), data(data)
71 bool async; member in struct:net::MockRead
86 bool async; member in struct:net::MockWriteResult
    [all...]
socket_test_util.cc 88 if (data_->connect_data().async) {
107 // Store our async IO data.
121 // to complete the async IO manually later (via OnReadComplete).
123 DCHECK(callback); // We need to be using async IO in this case.
143 if (write_result.async) {
163 read_data_.async = false;
174 // Save the pending async IO data and reset our |pending_| state.
199 if (read_data_.async) {
259 if (data_->connect.async) {
320 return MockWriteResult(w->async, result)
    [all...]
  /external/webkit/WebCore/inspector/
InjectedScript.h 51 void dispatch(long callId, const String& methodName, const String& arguments, bool async, RefPtr<SerializedScriptValue>* result, bool* hadException);
InjectedScript.cpp 47 void InjectedScript::dispatch(long callId, const String& methodName, const String& arguments, bool async, RefPtr<SerializedScriptValue>* result, bool* hadException)
53 if (async)
  /external/webkit/WebCore/inspector/front-end/
InjectedScriptAccess.js 48 InjectedScriptAccess._installHandler = function(methodName, async)
65 InspectorBackend.dispatchOnInjectedScript(callId, this._injectedScriptId, methodName, argsString, !!async);
  /external/webkit/WebCore/bindings/js/
JSXMLHttpRequestCustom.cpp 70 bool async = true; local
72 async = args.at(2).toBoolean(exec);
80 impl()->open(method, url, async, user, password, ec);
82 impl()->open(method, url, async, user, ec);
84 impl()->open(method, url, async, ec);
  /external/webkit/WebCore/xml/
XMLHttpRequest.h 69 void open(const String& method, const KURL&, bool async, ExceptionCode&);
70 void open(const String& method, const KURL&, bool async, const String& user, ExceptionCode&);
71 void open(const String& method, const KURL&, bool async, const String& user, const String& password, ExceptionCode&);
XMLHttpRequest.idl 61 // void open(in DOMString method, in DOMString url, in boolean async);
62 // void open(in DOMString method, in DOMString url, in boolean async, in DOMString user);
63 [Custom] void open(in DOMString method, in DOMString url, in boolean async, in DOMString user, in DOMString password)
  /external/chromium/net/tools/hresolv/
hresolv.cc 15 // or synchronously by specifying --async on the command line.
244 // async is true. There is no guarantee that the DNS queries will be issued
248 // When async is true, HostResolver::Resolve will issue the DNS lookups
254 bool async) {
262 async, resolver_, this);
302 async(false),
309 bool async; member in struct:CommandLineOptions
315 const char* kAsync = "async";
323 options->async = command_line->HasSwitch(kAsync);
451 invoker.ResolveAll(hosts_and_times, options.async);
    [all...]
  /device/samsung/crespo/alsa-lib/include/
aserver.h 71 } async; member in union:__anon1344::__anon1345
123 } async; member in union:__anon1355::__anon1356
  /device/samsung/crespo/alsa-lib/src/timer/
timer_local.h 31 int (*async)(snd_timer_t *timer, int sig, pid_t pid); member in struct:__anon1488
  /device/samsung/crespo/alsa-lib/test/
timer.c 79 int async = 0; local
106 } else if (!strcmp(argv[idx], "async")) {
107 async = 1;
169 if (async) {
172 fprintf(stderr, "unable to add async handler %i (%s)\n", err, snd_strerror(err));
180 if (async) {
  /external/webkit/WebCore/bindings/v8/custom/
V8XMLHttpRequestCustom.cpp 92 // open(method, url, async)
93 // open(method, url, async, user)
94 // open(method, url, async, user, passwd)
109 bool async = (args.Length() < 3) ? true : args[2]->BooleanValue(); local
118 xmlHttpRequest->open(method, url, async, user, passwd, ec);
120 xmlHttpRequest->open(method, url, async, user, ec);
122 xmlHttpRequest->open(method, url, async, ec);
  /external/webkit/WebKit/chromium/src/
DebuggerAgentImpl.h 82 bool async,
  /device/samsung/crespo/alsa-lib/aserver/
aserver.c 402 ctrl->result = snd_pcm_async(pcm, ctrl->u.async.sig, ctrl->u.async.pid);
405 if (ctrl->u.async.sig >= 0) {
414 client->async_sig = ctrl->u.async.sig;
415 client->async_pid = ctrl->u.async.pid;
620 ctrl->result = snd_ctl_async(ctl, ctrl->u.async.sig, ctrl->u.async.pid);
623 if (ctrl->u.async.sig >= 0) {
632 client->async_sig = ctrl->u.async.sig;
633 client->async_pid = ctrl->u.async.pid
    [all...]

Completed in 1405 milliseconds

1 2 3 4