Searched defs:async (Results 1 - 12 of 12) sorted by relevance

/system/media/wilhelm/src/android/
H A DOutputMix_to_android.cpp29 SLresult android_outputMix_realize(COutputMix *om, SLboolean async) { argument
H A DAudioRecorder_to_android.cpp380 SLresult android_audioRecorder_realize(CAudioRecorder* ar, SLboolean async) { argument
H A DMediaPlayer_to_android.cpp393 XAresult android_Player_realize(CMediaPlayer *mp, SLboolean async) { argument
H A Dandroid_GenericPlayer.cpp273 void GenericPlayer::notify(const char* event, int data, bool async) { argument
274 SL_LOGV("GenericPlayer::notify(event=%s, data=%d, async=%s)", event, data,
275 async ? "true" : "false");
278 if (async) {
286 void GenericPlayer::notify(const char* event, int data1, int data2, bool async) { argument
287 SL_LOGV("GenericPlayer::notify(event=%s, data1=%d, data2=%d, async=%s)", event, data1, data2,
288 async ? "true" : "false");
291 if (async) {
391 true /*async*/);
542 notify(PLAYEREVENT_PREFETCHSTATUSCHANGE, (int32_t)mCacheStatus, true /*async*/);
[all...]
H A DAudioPlayer_to_android.cpp1354 SLresult android_audioPlayer_realize(CAudioPlayer *pAudioPlayer, SLboolean async) { argument
/system/media/wilhelm/src/objects/
H A DCAudioRecorder.c24 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.c28 XAresult CMediaPlayer_Realize(void *self, XAboolean async) argument
36 result = android_Player_realize(thiz, async);
42 XAresult CMediaPlayer_Resume(void *self, XAboolean async) argument
H A DCAudioPlayer.c24 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 DCOutputMix.c24 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 DCEngine.c52 SLresult CEngine_Realize(void *self, SLboolean async) argument
79 SLresult CEngine_Resume(void *self, SLboolean async) argument
/system/media/wilhelm/src/itf/
H A DIDynamicInterfaceManagement.c106 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
H A DIObject.c46 // 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...]

Completed in 74 milliseconds