Searched defs:async (Results 1 - 23 of 23) 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.cpp1404 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/native/include/gui/
H A DIGraphicBufferProducer.h88 // 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
111 QueueBufferInput(int64_t timestamp, bool isAutoTimestamp, const Rect& crop, int scalingMode, uint32_t transform, bool async, const sp<Fence>& fence) 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.java162 * @param async If true, the handler calls {@link Message#setAsynchronous(boolean)} for
167 public Handler(boolean async) { argument
168 this(null, async);
183 * @param async If true, the handler calls {@link Message#setAsynchronous(boolean)} for
188 public Handler(Callback callback, boolean async) { argument
205 mAsynchronous = async;
222 * @param async If true, the handler calls {@link Message#setAsynchronous(boolean)} for
227 public Handler(Looper looper, Callback callback, boolean async) { argument
231 mAsynchronous = async;
/frameworks/base/core/java/com/android/internal/os/
H A DHandlerCaller.java34 MyHandler(Looper looper, boolean async) { argument
35 super(looper, null, async);
/frameworks/native/libs/gui/
H A DIGraphicBufferProducer.cpp82 virtual status_t dequeueBuffer(int *buf, sp<Fence>* fence, bool async, argument
86 data.writeInt32(async);
199 bool async = data.readInt32(); local
206 int result = dequeueBuffer(&buf, &fence, async, w, h, format, usage);
278 + sizeof(async)
297 FlattenableUtils::write(buffer, size, async);
310 + sizeof(async);
321 FlattenableUtils::read(buffer, size, async);
H A DBufferQueue.cpp170 // fine to assume async to false before we're setting the buffer count
253 status_t BufferQueue::dequeueBuffer(int *outBuf, sp<Fence>* outFence, bool async, argument
284 const int maxBufferCount = getMaxBufferCountLocked(async);
285 if (async && mOverrideMaxBufferCount) {
290 ST_LOGE("dequeueBuffer: async mode is invalid with buffercount override");
347 const int minUndequeuedCount = getMinUndequeuedBufferCount(async);
479 bool async; local
483 &async, &fence);
511 const int maxBufferCount = getMaxBufferCountLocked(async);
512 if (async
[all...]
/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/native/services/surfaceflinger/DisplayHardware/
H A DVirtualDisplaySurface.cpp236 true /* async*/,
267 bool async = (source == SOURCE_SINK); local
269 status_t result = mSource[source]->dequeueBuffer(sslot, fence, async,
303 status_t VirtualDisplaySurface::dequeueBuffer(int* pslot, sp<Fence>* fence, bool async, argument
309 VDS_LOGW_IF(!async, "EGL called dequeueBuffer with !async despite eglSwapInterval(0)");
408 bool async; local
410 &transform, &async, &mFbFence);
/frameworks/native/cmds/atrace/
H A Datrace.cpp746 bool async = false; local
815 async = true;
820 async = true;
823 async = true;
861 if (ok && !async) {
/frameworks/base/core/java/android/app/
H A DActivityThread.java803 sendMessage(H.DUMP_SERVICE, data, 0, 0, true /*async*/);
840 sendMessage(H.DUMP_HEAP, dhd, managed ? 1 : 0, 0, true /*async*/);
871 sendMessage(H.DUMP_ACTIVITY, data, 0, 0, true /*async*/);
884 sendMessage(H.DUMP_PROVIDER, data, 0, 0, true /*async*/);
2053 private void sendMessage(int what, Object obj, int arg1, int arg2, boolean async) { argument
2062 if (async) {
/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java2013 // Queue up an async operation since clearing cache may take a little while.
2038 // Queue up an async operation since clearing cache may take a little while.
2303 boolean addPermissionLocked(PermissionInfo info, boolean async) { argument
2337 if (!async) {
7041 // Queue up an async operation since the package installation may take a little while.
9213 // Queue up an async operation since the package deletion may take a little while.
9743 // Queue up an async operation since the package deletion may take a little while.
9845 // Queue up an async operation since the package deletion may take a little while.
9901 * Queue up an async operation since the package measurement may take a
10979 // Queue up an async operatio
[all...]

Completed in 484 milliseconds