/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 | 167 public Handler(boolean async) { in Handler() argument 168 this(null, async); in Handler() 188 public Handler(Callback callback, boolean async) { in Handler() argument 205 mAsynchronous = async; in Handler() 227 public Handler(Looper looper, Callback callback, boolean async) { in Handler() argument 231 mAsynchronous = async; in Handler()
|
D | Message.java | 457 public void setAsynchronous(boolean async) { in setAsynchronous() argument 458 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 | 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 | 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 | OutputMix_to_android.h | 20 extern SLresult android_outputMix_realize(COutputMix *om, SLboolean 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);
|
/frameworks/native/services/surfaceflinger/ |
D | MonitoredProducer.cpp | 64 status_t MonitoredProducer::setAsyncMode(bool async) { in setAsyncMode() argument 65 return mProducer->setAsyncMode(async); in setAsyncMode()
|
D | MonitoredProducer.h | 39 virtual status_t setAsyncMode(bool async);
|
/frameworks/base/core/java/android/view/textservice/ |
D | SpellCheckerSession.java | 283 boolean async) { in processTask() argument 288 + " scp.mWhat=" + taskToString(scp.mWhat) + " async=" + async in processTask() 293 if (async || mAsyncHandler == null) { in processTask()
|
/frameworks/native/cmds/atrace/ |
D | atrace.cpp | 1003 bool async = false; in main() local 1082 async = true; in main() 1087 async = true; in main() 1090 async = true; in main() 1134 if (ok && !async && !traceStream) { in main()
|
/frameworks/native/libs/gui/ |
D | BufferQueueProducer.cpp | 170 status_t BufferQueueProducer::setAsyncMode(bool async) { in setAsyncMode() argument 172 BQ_LOGV("setAsyncMode: async = %d", async); in setAsyncMode() 184 if (async == mCore->mAsyncMode) { in setAsyncMode() 189 (async || mCore->mDequeueBufferCannotBlock ? 1 : 0)) > in setAsyncMode() 193 "maxDequeued %d mDequeueBufferCannotBlock %d)", async, in setAsyncMode() 200 int delta = mCore->getMaxBufferCountLocked(async, in setAsyncMode() 209 mCore->mAsyncMode = async; in setAsyncMode()
|
D | IGraphicBufferProducer.cpp | 107 virtual status_t setAsyncMode(bool async) { in setAsyncMode() argument 111 data.writeInt32(async); in setAsyncMode() 523 bool async = data.readInt32(); in onTransact() local 524 int result = setAsyncMode(async); in onTransact()
|
/frameworks/base/core/java/com/android/internal/os/ |
D | HandlerCaller.java | 31 MyHandler(Looper looper, boolean async) { in MyHandler() argument 32 super(looper, null, async); in MyHandler()
|
/frameworks/native/include/gui/ |
D | BufferQueueProducer.h | 46 virtual status_t setAsyncMode(bool async);
|