/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.c | 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.c | 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.c | 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.c | 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.c | 52 SLresult CEngine_Realize(void *self, SLboolean async) in CEngine_Realize() argument 79 SLresult CEngine_Resume(void *self, SLboolean async) in CEngine_Resume() argument
|
/frameworks/base/core/java/android/os/ |
D | Handler.java | 164 public Handler(boolean async) { in Handler() argument 165 this(null, async); in Handler() 185 public Handler(Callback callback, boolean async) { in Handler() argument 202 mAsynchronous = async; in Handler() 224 public Handler(Looper looper, Callback callback, boolean async) { in Handler() argument 228 mAsynchronous = async; in Handler()
|
D | Message.java | 397 public void setAsynchronous(boolean async) { in setAsynchronous() argument 398 if (async) { in setAsynchronous()
|
/frameworks/wilhelm/src/itf/ |
D | IObject.c | 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.c | 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 | 284 void GenericPlayer::notify(const char* event, int data, bool async) { in notify() argument 286 async ? "true" : "false"); in notify() 289 if (async) { in notify() 297 void GenericPlayer::notify(const char* event, int data1, int data2, bool async) { in notify() argument 299 async ? "true" : "false"); in notify() 302 if (async) { in notify()
|
D | OutputMix_to_android.h | 20 extern SLresult android_outputMix_realize(COutputMix *om, SLboolean async);
|
D | android_GenericPlayer.h | 126 virtual void notify(const char* event, int data1, bool async); 127 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);
|
D | OutputMix_to_android.cpp | 29 SLresult android_outputMix_realize(COutputMix *om, SLboolean async) { in android_outputMix_realize() argument
|
D | AudioPlayer_to_android.h | 43 extern SLresult android_audioPlayer_realize(CAudioPlayer *pAudioPlayer, SLboolean async);
|
D | AudioRecorder_to_android.cpp | 380 SLresult android_audioRecorder_realize(CAudioRecorder* ar, SLboolean async) { in android_audioRecorder_realize() argument
|
D | MediaPlayer_to_android.cpp | 409 XAresult android_Player_realize(CMediaPlayer *mp, SLboolean async) { in android_Player_realize() argument
|
/frameworks/native/cmds/atrace/ |
D | atrace.cpp | 742 bool async = false; in main() local 811 async = true; in main() 816 async = true; in main() 819 async = true; in main() 857 if (ok && !async) { in main()
|
/frameworks/base/core/java/com/android/internal/os/ |
D | HandlerCaller.java | 34 MyHandler(Looper looper, boolean async) { in MyHandler() argument 35 super(looper, null, async); in MyHandler()
|
/frameworks/base/core/java/android/view/textservice/ |
D | SpellCheckerSession.java | 259 boolean async) { in processTask() argument 260 if (async || mAsyncHandler == null) { in processTask()
|
/frameworks/base/docs/html/training/displaying-bitmaps/ |
D | process-bitmap.jd | 14 <li><a href="#async-task">Use an AsyncTask</a></li> 50 <h2 id="async-task">Use an AsyncTask</h2>
|
/frameworks/wilhelm/include/SLES/ |
D | OpenSLES.h | 404 SLboolean async 408 SLboolean async 1988 SLboolean async 1997 SLboolean async
|
/frameworks/wilhelm/include/OMXAL/ |
D | OpenMAXAL.h | 167 XAboolean async 171 XAboolean async 1824 XAboolean async
|