Searched refs:async (Results 1 - 25 of 50) sorted by relevance

12

/frameworks/wilhelm/src/android/
H A DOutputMix_to_android.h20 extern SLresult android_outputMix_realize(COutputMix *om, SLboolean async);
H A DAudioRecorder_to_android.h46 extern SLresult android_audioRecorder_realize(CAudioRecorder* ar, SLboolean async);
H A DMediaPlayer_to_android.h26 extern XAresult android_Player_realize(CMediaPlayer *mp, SLboolean async);
H A DOutputMix_to_android.cpp29 SLresult android_outputMix_realize(COutputMix *om, SLboolean async) { argument
H A Dandroid_GenericPlayer.h127 virtual void notify(const char* event, int data1, bool async);
128 virtual void notify(const char* event, int data1, int data2, bool async);
150 // for async notifications of prefetch status and cache fill level, needs to be called
154 // for internal async notification to update state that the player is no longer seeking
H A DAudioPlayer_to_android.h43 extern SLresult android_audioPlayer_realize(CAudioPlayer *pAudioPlayer, SLboolean async);
H A Dandroid_GenericPlayer.cpp285 void GenericPlayer::notify(const char* event, int data, bool async) { argument
286 SL_LOGV("GenericPlayer::notify(event=%s, data=%d, async=%s)", event, data,
287 async ? "true" : "false");
290 if (async) {
298 void GenericPlayer::notify(const char* event, int data1, int data2, bool async) { argument
299 SL_LOGV("GenericPlayer::notify(event=%s, data1=%d, data2=%d, async=%s)", event, data1, data2,
300 async ? "true" : "false");
303 if (async) {
403 true /*async*/);
555 notify(PLAYEREVENT_PREFETCHSTATUSCHANGE, (int32_t)mCacheStatus, true /*async*/);
[all...]
/frameworks/wilhelm/src/objects/
H A DCAudioRecorder.cpp24 SLresult CAudioRecorder_Realize(void *self, SLboolean async) argument
30 result = android_audioRecorder_realize(thiz, async);
39 SLresult CAudioRecorder_Resume(void *self, SLboolean async) argument
H A DCMediaPlayer.cpp27 XAresult CMediaPlayer_Realize(void *self, XAboolean async) argument
35 result = android_Player_realize(thiz, async);
41 XAresult CMediaPlayer_Resume(void *self, XAboolean async) argument
H A DCOutputMix.cpp24 SLresult COutputMix_Realize(void *self, SLboolean async) argument
30 result = android_outputMix_realize(thiz, async);
39 SLresult COutputMix_Resume(void *self, SLboolean async) argument
H A DCAudioPlayer.cpp24 SLresult CAudioPlayer_Realize(void *self, SLboolean async) argument
30 result = android_audioPlayer_realize(thiz, async);
47 SLresult CAudioPlayer_Resume(void *self, SLboolean async) argument
H A DCEngine.cpp57 SLresult CEngine_Realize(void *self, SLboolean async) argument
94 SLresult CEngine_Resume(void *self, SLboolean async) argument
/frameworks/wilhelm/src/
H A Dsles_allinclusive.h116 typedef SLresult (*AsyncHook)(void *self, SLboolean async);
216 AsyncHook mRealize; // called with mutex locked; can temporarily unlock mutex (for async)
217 AsyncHook mResume; // called with mutex locked; can temporarily unlock mutex (for async)
337 extern SLresult CAudioPlayer_Realize(void *self, SLboolean async);
338 extern SLresult CAudioPlayer_Resume(void *self, SLboolean async);
342 extern SLresult CAudioRecorder_Realize(void *self, SLboolean async);
343 extern SLresult CAudioRecorder_Resume(void *self, SLboolean async);
347 extern SLresult CEngine_Realize(void *self, SLboolean async);
348 extern SLresult CEngine_Resume(void *self, SLboolean async);
353 extern SLresult COutputMix_Realize(void *self, SLboolean async);
[all...]
/frameworks/base/core/java/android/os/
H A DHandler.java166 * @param async If true, the handler calls {@link Message#setAsynchronous(boolean)} for
171 public Handler(boolean async) { argument
172 this(null, async);
187 * @param async If true, the handler calls {@link Message#setAsynchronous(boolean)} for
192 public Handler(Callback callback, boolean async) { argument
209 mAsynchronous = async;
226 * @param async If true, the handler calls {@link Message#setAsynchronous(boolean)} for
231 public Handler(Looper looper, Callback callback, boolean async) { argument
235 mAsynchronous = async;
/frameworks/rs/tests/lldb/tests/harness/
H A Dutil_android.py60 def adb(self, args, async=False, device=True, timeout=None):
61 '''Run an adb command (async optional).
65 async: Boolean to specify whether adb should run the command
75 - when both the combination async=True and timeout are
95 return_code, output = UtilAndroid._execute_command_local(cmd, async)
99 if async:
233 def shell(self, cmd, async=False, timeout=None):
238 async: Boolean to specify whether adb should run the command
248 return self.adb('shell "{0}"'.format(cmd), async, True, timeout)
648 def _execute_command_local(command, async
[all...]
/frameworks/native/services/surfaceflinger/
H A DMonitoredProducer.cpp67 status_t MonitoredProducer::setAsyncMode(bool async) { argument
68 return mProducer->setAsyncMode(async);
H A DMonitoredProducer.h41 virtual status_t setAsyncMode(bool async);
/frameworks/wilhelm/src/itf/
H A DIObject.cpp46 // but the hook is permitted to temporarily unlock the mutex (e.g. for async).
84 static SLresult IObject_Realize(SLObjectItf self, SLboolean async) argument
114 if (async && (SL_OBJECTID_ENGINE != clazz->mSLObjectID)) {
124 assert(async);
137 // but the hook is permitted to temporarily unlock the mutex (e.g. for async).
138 result = (NULL != realize) ? (*realize)(thiz, async) : SL_RESULT_SUCCESS;
148 if (async && (NULL != callback)) {
189 // but the hook is permitted to temporarily unlock the mutex (e.g. for async).
227 static SLresult IObject_Resume(SLObjectItf self, SLboolean async) argument
242 if (async) {
[all...]
H A DIDynamicInterfaceManagement.cpp106 const SLInterfaceID iid, SLboolean async)
132 if (async) {
354 const SLInterfaceID iid, SLboolean async)
380 if (async) {
105 IDynamicInterfaceManagement_AddInterface(SLDynamicInterfaceManagementItf self, const SLInterfaceID iid, SLboolean async) argument
353 IDynamicInterfaceManagement_ResumeInterface(SLDynamicInterfaceManagementItf self, const SLInterfaceID iid, SLboolean async) argument
/frameworks/base/core/java/android/view/textservice/
H A DSpellCheckerSession.java284 boolean async) {
289 + " scp.mWhat=" + taskToString(scp.mWhat) + " async=" + async
294 if (async || mAsyncHandler == null) {
336 // if it is pending as an async operation.
283 processTask(ISpellCheckerSession session, SpellCheckerParams scp, boolean async) argument
/frameworks/av/media/libstagefright/omx/include/media/stagefright/omx/1.0/
H A DWGraphicBufferProducer.h63 Return<int32_t> setAsyncMode(bool async) override;
/frameworks/native/include/gui/
H A DBufferQueueProducer.h46 virtual status_t setAsyncMode(bool async);
/frameworks/native/include/gui/bufferqueue/1.0/
H A DH2BGraphicBufferProducer.h66 status_t setAsyncMode(bool async) override;
/frameworks/native/libs/gui/include/gui/
H A DBufferQueueProducer.h46 virtual status_t setAsyncMode(bool async);
/frameworks/native/libs/gui/include/gui/bufferqueue/1.0/
H A DH2BGraphicBufferProducer.h66 status_t setAsyncMode(bool async) override;

Completed in 4883 milliseconds

12