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

/frameworks/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.cpp409 XAresult android_Player_realize(CMediaPlayer *mp, SLboolean async) { argument
H A Dandroid_GenericPlayer.cpp284 void GenericPlayer::notify(const char* event, int data, bool async) { argument
285 SL_LOGV("GenericPlayer::notify(event=%s, data=%d, async=%s)", event, data,
286 async ? "true" : "false");
289 if (async) {
297 void GenericPlayer::notify(const char* event, int data1, int data2, bool async) { argument
298 SL_LOGV("GenericPlayer::notify(event=%s, data1=%d, data2=%d, async=%s)", event, data1, data2,
299 async ? "true" : "false");
302 if (async) {
402 true /*async*/);
554 notify(PLAYEREVENT_PREFETCHSTATUSCHANGE, (int32_t)mCacheStatus, true /*async*/);
[all...]
H A DAudioPlayer_to_android.cpp1428 SLresult android_audioPlayer_realize(CAudioPlayer *pAudioPlayer, SLboolean async) { argument
/frameworks/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.c27 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 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
/frameworks/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...]
/frameworks/base/core/java/android/os/
H A DMessage.java389 * @param async True if the message is asynchronous.
397 public void setAsynchronous(boolean async) { argument
398 if (async) {
H A DHandler.java159 * @param async If true, the handler calls {@link Message#setAsynchronous(boolean)} for
164 public Handler(boolean async) { argument
165 this(null, async);
180 * @param async If true, the handler calls {@link Message#setAsynchronous(boolean)} for
185 public Handler(Callback callback, boolean async) { argument
202 mAsynchronous = async;
219 * @param async If true, the handler calls {@link Message#setAsynchronous(boolean)} for
224 public Handler(Looper looper, Callback callback, boolean async) { argument
228 mAsynchronous = async;
/frameworks/base/core/java/android/view/textservice/
H A DSpellCheckerSession.java259 boolean async) {
260 if (async || mAsyncHandler == null) {
314 // if it is pending as an async operation.
258 processTask(ISpellCheckerSession session, SpellCheckerParams scp, boolean async) argument
/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java1860 // Queue up an async operation since clearing cache may take a little while.
1885 // Queue up an async operation since clearing cache may take a little while.
2158 boolean addPermissionLocked(PermissionInfo info, boolean async) { argument
2192 if (!async) {
5982 // Queue up an async operation since the package installation may take a little while.
8040 // Queue up an async operation since the package deletion may take a little while.
8464 // Queue up an async operation since the package deletion may take a little while.
8537 // Queue up an async operation since the package deletion may take a little while.
8593 * Queue up an async operation since the package measurement may take a
9541 // Queue up an async operatio
[all...]

Completed in 169 milliseconds