/frameworks/wilhelm/src/ |
D | sles_allinclusive.h | 116 typedef SLresult (*AsyncHook)(void *self, SLboolean 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); 354 extern SLresult COutputMix_Resume(void *self, SLboolean async); 358 extern SLresult CMediaPlayer_Realize(void *self, SLboolean async); [all …]
|
/frameworks/wilhelm/src/objects/ |
D | CAudioRecorder.cpp | 24 SLresult CAudioRecorder_Realize(void *self, SLboolean async) in CAudioRecorder_Realize() argument 30 result = android_audioRecorder_realize(thiz, async); in CAudioRecorder_Realize() 39 SLresult CAudioRecorder_Resume(void *self, SLboolean async) in CAudioRecorder_Resume() argument
|
D | CMediaPlayer.cpp | 27 XAresult CMediaPlayer_Realize(void *self, XAboolean async) in CMediaPlayer_Realize() argument 35 result = android_Player_realize(thiz, async); in CMediaPlayer_Realize() 41 XAresult CMediaPlayer_Resume(void *self, XAboolean async) in CMediaPlayer_Resume() argument
|
D | COutputMix.cpp | 24 SLresult COutputMix_Realize(void *self, SLboolean async) in COutputMix_Realize() argument 30 result = android_outputMix_realize(thiz, async); in COutputMix_Realize() 39 SLresult COutputMix_Resume(void *self, SLboolean async) in COutputMix_Resume() argument
|
D | CAudioPlayer.cpp | 24 SLresult CAudioPlayer_Realize(void *self, SLboolean async) in CAudioPlayer_Realize() argument 30 result = android_audioPlayer_realize(thiz, async); in CAudioPlayer_Realize() 47 SLresult CAudioPlayer_Resume(void *self, SLboolean async) in CAudioPlayer_Resume() argument
|
D | CEngine.cpp | 57 SLresult CEngine_Realize(void *self, SLboolean async) in CEngine_Realize() argument 94 SLresult CEngine_Resume(void *self, SLboolean async) in CEngine_Resume() argument
|
/frameworks/base/libs/hwui/tests/unit/ |
D | CommonPoolTests.cpp | 45 futures[i] = CommonPool::async([] { in TEST() 63 auto f1 = CommonPool::async([&] { in TEST() 82 auto f2 = CommonPool::async([] { in TEST() 110 futures[i] = CommonPool::async([&] { in TEST() 171 EXPECT_LT(1, CommonPool::async([obj] { return ObjectTracker::count(); }).get()); in TEST()
|
D | ThreadBaseTests.cpp | 76 TEST(ThreadBase, async) { in TEST() argument 80 auto otherTid = queue().async([]() -> auto { return gettid(); }); in TEST() 81 auto otherPid = queue().async([]() -> auto { return getpid(); }); in TEST() 82 auto result = queue().async([]() -> auto { return 42; }); in TEST()
|
/frameworks/base/libs/hwui/hwui/ |
D | AnimatedImageThread.cpp | 36 return queue().async([drawable]() { return drawable->decodeNextFrame(); }); in decodeNextFrame() 41 return queue().async([drawable]() { return drawable->reset(); }); in reset()
|
/frameworks/rs/tests/lldb/tests/harness/ |
D | util_android.py | 60 def adb(self, args, async=False, device=True, timeout=None): argument 95 return_code, output = UtilAndroid._execute_command_local(cmd, async) 99 if async: 233 def shell(self, cmd, async=False, timeout=None): argument 248 return self.adb('shell "{0}"'.format(cmd), async, True, timeout) 648 def _execute_command_local(command, async=False): argument 665 if async:
|
/frameworks/base/core/java/android/os/ |
D | Handler.java | 173 public Handler(boolean async) { in Handler() argument 174 this(null, async); in Handler() 194 public Handler(@Nullable Callback callback, boolean async) { in Handler() argument 212 mAsynchronous = async; in Handler() 235 public Handler(@NonNull Looper looper, @Nullable Callback callback, boolean async) { in Handler() argument 239 mAsynchronous = async; in Handler()
|
/frameworks/wilhelm/src/itf/ |
D | IObject.cpp | 84 static SLresult IObject_Realize(SLObjectItf self, SLboolean async) in IObject_Realize() argument 114 if (async && (SL_OBJECTID_ENGINE != clazz->mSLObjectID)) { in IObject_Realize() 124 assert(async); in IObject_Realize() 138 result = (NULL != realize) ? (*realize)(thiz, async) : SL_RESULT_SUCCESS; in IObject_Realize() 148 if (async && (NULL != callback)) { in IObject_Realize() 227 static SLresult IObject_Resume(SLObjectItf self, SLboolean async) in IObject_Resume() argument 242 if (async) { in IObject_Resume() 252 assert(async); in IObject_Resume()
|
D | IDynamicInterfaceManagement.cpp | 106 const SLInterfaceID iid, SLboolean async) in IDynamicInterfaceManagement_AddInterface() argument 132 if (async) { in IDynamicInterfaceManagement_AddInterface() 354 const SLInterfaceID iid, SLboolean async) in IDynamicInterfaceManagement_ResumeInterface() argument 380 if (async) { in IDynamicInterfaceManagement_ResumeInterface()
|
/frameworks/wilhelm/src/android/ |
D | android_GenericPlayer.cpp | 285 void GenericPlayer::notify(const char* event, int data, bool async) { in notify() argument 287 async ? "true" : "false"); in notify() 290 if (async) { in notify() 298 void GenericPlayer::notify(const char* event, int data1, int data2, bool async) { in notify() argument 300 async ? "true" : "false"); in notify() 303 if (async) { in notify()
|
D | OutputMix_to_android.h | 20 extern SLresult android_outputMix_realize(COutputMix *om, SLboolean async);
|
D | android_GenericPlayer.h | 127 virtual void notify(const char* event, int data1, bool async); 128 virtual void notify(const char* event, int data1, int data2, bool async);
|
D | AudioRecorder_to_android.h | 46 extern SLresult android_audioRecorder_realize(CAudioRecorder* ar, SLboolean async);
|
D | MediaPlayer_to_android.h | 26 extern XAresult android_Player_realize(CMediaPlayer *mp, SLboolean async);
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/euicc/async/ |
D | AsyncResultCallback.java | 17 package com.android.internal.telephony.uicc.euicc.async;
|
D | AsyncResultHelper.java | 17 package com.android.internal.telephony.uicc.euicc.async;
|
D | AsyncMessageInvocation.java | 17 package com.android.internal.telephony.uicc.euicc.async;
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/euicc/apdu/ |
D | ApduSenderResultCallback.java | 20 import com.android.internal.telephony.uicc.euicc.async.AsyncResultCallback;
|
D | ApduSender.java | 26 import com.android.internal.telephony.uicc.euicc.async.AsyncResultCallback; 27 import com.android.internal.telephony.uicc.euicc.async.AsyncResultHelper;
|
/frameworks/native/services/surfaceflinger/ |
D | MonitoredProducer.cpp | 55 status_t MonitoredProducer::setAsyncMode(bool async) { in setAsyncMode() argument 56 return mProducer->setAsyncMode(async); in setAsyncMode()
|
/frameworks/base/core/java/android/view/textservice/ |
D | SpellCheckerSession.java | 281 boolean async) { in processTask() argument 286 + " scp.mWhat=" + taskToString(scp.mWhat) + " async=" + async in processTask() 291 if (async || mAsyncHandler == null) { in processTask()
|