HomeSort by relevance Sort by last modified time
    Searched refs:mThis (Results 1 - 25 of 28) sorted by null

1 2

  /frameworks/wilhelm/src/
itfstruct.h 28 // field mThis would be redundant within an IObject, so we substitute mEngine
70 IObject *mThis;
87 IObject *mThis;
111 IObject *mThis;
126 IObject *mThis;
153 IObject *mThis;
178 IObject *mThis;
193 IObject *mThis;
198 IObject *mThis;
204 IObject *mThis;
    [all...]
sles_allinclusive.h 309 // Note: this operation is undefined on IObject, as it lacks an mThis.
312 #define InterfaceToObjectID(thiz) IObjectToObjectID((thiz)->mThis)
315 // Note: this operation is undefined on IObject, as it lacks an mThis.
318 #define InterfaceToIObject(thiz) ((thiz)->mThis)
sles.cpp 520 thiz->mEngine = (CEngine *) thisEngine->mThis;
549 // IObject does not have an mThis, so [1] is not always defined
  /frameworks/wilhelm/src/itf/
IAndroidConfiguration.cpp 42 switch (IObjectToObjectID((thiz)->mThis)) {
46 result = android_audioRecorder_setConfig((CAudioRecorder *) thiz->mThis, configKey,
52 result = android_audioPlayer_setConfig((CAudioPlayer *) thiz->mThis, configKey,
83 switch (IObjectToObjectID((thiz)->mThis)) {
85 result = android_audioRecorder_getConfig((CAudioRecorder *) thiz->mThis, configKey,
89 result = android_audioPlayer_getConfig((CAudioPlayer *) thiz->mThis, configKey,
114 IObject* configObj = iConfig->mThis; // get corresponding object
148 IObject* configObj = iConfig->mThis; // get corresponding object
187 IObject* configObj = iConfig->mThis; // get corresponding object
224 IObject* configObj = iConfig->mThis; // get corresponding objec
    [all...]
IAndroidEffectSend.cpp 36 (CAudioPlayer *) thiz->mThis : NULL;
93 (CAudioPlayer *) thiz->mThis : NULL;
126 (CAudioPlayer *) thiz->mThis : NULL;
155 (CAudioPlayer *) thiz->mThis : NULL;
194 (CAudioPlayer *) thiz->mThis : NULL;
IMetadataExtraction.cpp 32 result = android_audioPlayer_metadata_getItemCount((CAudioPlayer *)thiz->mThis,
57 result = android_audioPlayer_metadata_getKeySize((CAudioPlayer *)thiz->mThis,
82 result = android_audioPlayer_metadata_getKey((CAudioPlayer *)thiz->mThis,
107 result = android_audioPlayer_metadata_getValueSize((CAudioPlayer *)thiz->mThis,
132 result = android_audioPlayer_metadata_getValue((CAudioPlayer *)thiz->mThis,
IMuteSolo.cpp 27 IObject *thisObject = thiz->mThis;
66 IObject *thisObject = thiz->mThis;
99 IObject *thisObject = thiz->mThis;
138 IObject *thisObject = thiz->mThis;
174 IObject *thisObject = thiz->mThis;
IAndroidEffect.cpp 29 if (SL_OBJECTID_AUDIOPLAYER == IObjectToObjectID(thiz->mThis)) {
30 CAudioPlayer *ap = (CAudioPlayer *)thiz->mThis;
36 } else if (SL_OBJECTID_OUTPUTMIX == IObjectToObjectID(thiz->mThis)) {
IEffectSend.cpp 43 (CAudioPlayer *) thiz->mThis : NULL;
134 (CAudioPlayer *) thiz->mThis : NULL;
200 (CAudioPlayer *) thiz->mThis : NULL;
235 (CAudioPlayer *) thiz->mThis : NULL;
271 (CAudioPlayer *) thiz->mThis : NULL;
IBufferQueue.cpp 31 state = ((CAudioPlayer *) thiz->mThis)->mPlay.mState;
34 state = ((CAudioRecorder *) thiz->mThis)->mRecord.mState;
89 CAudioPlayer *audioPlayer = (CAudioPlayer *) thiz->mThis;
IPlaybackRate.cpp 34 (CAudioPlayer *) thiz->mThis : NULL;
88 (CAudioPlayer *) thiz->mThis : NULL;
IPlay.cpp 36 (CAudioPlayer *) thiz->mThis : NULL;
208 switch (IObjectToObjectID((thiz)->mThis)) {
224 CAudioPlayer *audioPlayer = (CAudioPlayer *) thiz->mThis;
395 CAudioPlayer *audioPlayer = (CAudioPlayer *) thiz->mThis;
IEngine.cpp     [all...]
IAndroidBufferQueue.cpp 35 state = ((CMediaPlayer *) thiz->mThis)->mPlay.mState;
38 state = ((CAudioPlayer *) thiz->mThis)->mPlay.mState;
279 android_audioPlayer_androidBufferQueue_clear_l((CAudioPlayer*) thiz->mThis);
282 android_Player_androidBufferQueue_clear_l((CMediaPlayer*) thiz->mThis);
ISeek.cpp 65 switch (IObjectToObjectID((thiz)->mThis)) {
IPrefetchStatus.cpp 128 CAudioPlayer *ap = (CAudioPlayer *) thiz->mThis;
IObject.cpp 555 if (thisEngine->mThis != thiz) {
571 if (thisEngine->mThis != thiz) {
IEqualizer.cpp 447 *ppName = (SLchar *) thiz->mThis->mEngine->mEqPresetNames[index];
IOutputMixExt.cpp 177 IObject *thisObject = thiz->mThis;
  /frameworks/wilhelm/src/android/
android_Effect.cpp 310 ieq->mThis->mEngine->mEqNumPresets = numPresets;
314 object_lock_exclusive(&ieq->mThis->mEngine->mObject);
316 if ((0 < numPresets) && (NULL == ieq->mThis->mEngine->mEqPresetNames)) {
317 ieq->mThis->mEngine->mEqPresetNames = (char **)new char *[numPresets];
321 ieq->mThis->mEngine->mEqPresetNames[i] = new char[strlen(name) + 1];
322 strcpy(ieq->mThis->mEngine->mEqPresetNames[i], name);
323 SL_LOGV(" EQ init: presets = %u is %s", i, ieq->mThis->mEngine->mEqPresetNames[i]);
327 object_unlock_exclusive(&ieq->mThis->mEngine->mObject);
    [all...]
MediaPlayer_to_android.cpp 521 CMediaPlayer *avp = (CMediaPlayer *)pPlayItf->mThis;
550 CMediaPlayer *avp = (CMediaPlayer *)pPlayItf->mThis;
  /external/v4l2_codec2/cmds/
codec2.cpp 115 explicit Listener(SimplePlayer* thiz) : mThis(thiz) {}
120 mThis->onWorkDone(component, std::move(workItems));
126 mThis->onTripped(component, settingResult);
130 mThis->onError(component, errorCode);
134 SimplePlayer* const mThis;
  /hardware/google/av/media/codecs/cmds/
codec2.cpp 117 explicit Listener(SimplePlayer *thiz) : mThis(thiz) {}
122 mThis->onWorkDone(component, std::move(workItems));
127 mThis->onTripped(component, settingResult);
132 mThis->onError(component, errorCode);
136 SimplePlayer * const mThis;
  /external/v4l2_codec2/tests/
C2VDAComponent_test.cpp 202 explicit Listener(C2VDAComponentTest* thiz) : mThis(thiz) {}
207 mThis->onWorkDone(component, std::move(workItems));
213 mThis->onTripped(component, settingResult);
217 mThis->onError(component, errorCode);
221 C2VDAComponentTest* const mThis;
  /hardware/google/av/codec2/vndk/
C2Buffer.cpp     [all...]

Completed in 356 milliseconds

1 2