Searched refs:mState (Results 1 - 22 of 22) sorted by relevance

/system/core/nexus/
H A DSupplicantStateChangeEvent.h24 int mState; member in class:SupplicantStateChangeEvent
31 int getState() { return mState; }
H A DSupplicantStateChangeEvent.cpp35 mState = atoi(p + strlen("state=") + 1);
40 mState = state;
H A DDhcpClient.h33 int mState; member in class:DhcpClient
46 int getState() { return mState; }
H A DDhcpClient.cpp40 mState(DhcpState::INIT), mHandlers(handlers) {
/system/media/mca/filterfw/java/android/filterfw/core/
H A DFilterSurfaceView.java34 private int mState = STATE_ALLOCATED; field in class:FilterSurfaceView
72 if (mState >= STATE_CREATED) {
81 if (mState == STATE_INITIALIZED) {
101 mState = STATE_CREATED;
123 mState = STATE_INITIALIZED;
133 mState = STATE_ALLOCATED;
/system/media/wilhelm/src/itf/
H A DIBufferQueue.c31 state = ((CAudioPlayer *) thiz->mThis)->mPlay.mState;
34 state = ((CAudioRecorder *) thiz->mThis)->mRecord.mState;
68 ++thiz->mState.count;
73 (1 == thiz->mState.count) && (SL_PLAYSTATE_PLAYING == getAssociatedState(thiz))) ?
96 thiz->mState.count = 0;
97 thiz->mState.playIndex = 0;
131 state.count = thiz->mState.count;
132 state.playIndex = thiz->mState.playIndex;
134 state = thiz->mState;
177 thiz->mState
[all...]
H A DIObject.c39 state = thiz->mState;
44 thiz->mState = SL_OBJECT_STATE_REALIZING_2;
48 assert(SL_OBJECT_STATE_REALIZING_2 == thiz->mState);
70 thiz->mState = state;
102 state = thiz->mState;
120 thiz->mState = state;
129 thiz->mState = SL_OBJECT_STATE_UNREALIZED;
139 assert(SL_OBJECT_STATE_REALIZING_2 == thiz->mState);
142 thiz->mState = state;
182 state = thiz->mState;
[all...]
H A DIAndroidBufferQueue.c35 state = ((CMediaPlayer *) thiz->mThis)->mPlay.mState;
38 state = ((CAudioPlayer *) thiz->mThis)->mPlay.mState;
274 thiz->mState.count = 0;
275 thiz->mState.index = 0;
389 ++thiz->mState.count;
396 (1 == thiz->mState.count) && (SL_PLAYSTATE_PLAYING == getAssociatedState(thiz))) ?
418 pState->count = thiz->mState.count;
419 pState->index = thiz->mState.index;
486 thiz->mState.count = 0;
487 thiz->mState
[all...]
H A DIOutputMixExt.c75 audioPlayer->mBufferQueue.mState.count = 0;
76 audioPlayer->mBufferQueue.mState.playIndex = 0;
99 switch (audioPlayer->mPlay.mState) {
110 assert(0 < audioPlayer->mBufferQueue.mState.count);
114 audioPlayer->mPlay.mState = SL_PLAYSTATE_PLAYING;
132 audioPlayer->mPlay.mState = SL_PLAYSTATE_STOPPED;
137 assert(0 < audioPlayer->mBufferQueue.mState.count);
285 assert(0 < bufferQueue->mState.count);
286 --bufferQueue->mState.count;
290 assert(0 < bufferQueue->mState
[all...]
H A DIPlay.c39 SLuint32 oldState = thiz->mState;
69 thiz->mState = state;
84 thiz->mState = SL_PLAYSTATE_STOPPING;
99 thiz->mState = state;
126 SLuint32 state = thiz->mState;
459 thiz->mState = SL_PLAYSTATE_STOPPED;
H A DIRecord.c33 thiz->mState = state;
59 SLuint32 state = thiz->mState;
315 thiz->mState = SL_RECORDSTATE_STOPPED;
/system/media/wilhelm/src/
H A Dhandler_bodies.c120 android_Player_setPlayState(avp, mp->mPlay.mState, &(mp->mAndroidObjState));
131 assert(SL_PLAYSTATE_PLAYING == ap->mPlay.mState);
142 assert(SL_PLAYSTATE_PLAYING == ap->mPlay.mState);
152 if (SL_PLAYSTATE_PLAYING == mp->mPlay.mState) {
H A Ditfstruct.h50 SLuint8 mState; // really SLuint32, but SLuint8 to save space member in struct:Object_interface
230 SLBufferQueueState mState; member in struct:BufferQueue_interface
464 SLuint32 mState; member in struct:Play_interface
533 SLuint32 mState; member in struct:__anon571
667 SLAndroidBufferQueueState mState; member in struct:__anon585
H A Dsles.c86 } else if (SL_OBJECT_STATE_REALIZED != object->mState) {
110 if ((0 == --object->mStrongRefCount) && (SL_OBJECT_STATE_DESTROYING == object->mState)) {
/system/vold/
H A DVolume.h27 int mState; member in class:Volume
73 int getState() { return mState; }
H A DVolume.cpp116 mState = Volume::State_Init;
171 int oldState = mState;
182 mState = state;
185 oldState, stateToStr(oldState), mState, stateToStr(mState));
188 getMountpoint(), oldState, stateToStr(oldState), mState,
189 stateToStr(mState));
/system/media/wilhelm/src/android/
H A DBufferQueueSource.cpp78 if (mAndroidBufferQueueSource->mState.count == 0) {
122 mAndroidBufferQueueSource->mState.count--;
123 mAndroidBufferQueueSource->mState.index++;
H A Dandroid_StreamPlayer.cpp141 if (mAndroidBufferQueue->mState.count != 0) {
142 // SL_LOGD("nbBuffers in ABQ = %u, buffSize=%u",abq->mState.count, buffSize);
226 mAndroidBufferQueue->mState.count--;
227 mAndroidBufferQueue->mState.index++;
H A DAudioRecorder_to_android.cpp65 if (SL_OBJECT_STATE_UNREALIZED != ar->mObject.mState) {
225 if (ar->mBufferQueue.mState.count != 0) {
252 ar->mBufferQueue.mState.count--;
253 ar->mBufferQueue.mState.playIndex++;
H A DAudioPlayer_to_android.cpp113 if (ap->mBufferQueue.mState.count != 0) {
137 ap->mBufferQueue.mState.count--;
138 ap->mBufferQueue.mState.playIndex++;
438 ap->mPlay.mState = SL_PLAYSTATE_PAUSED;
493 if (SL_OBJECT_STATE_UNREALIZED != ap->mObject.mState) {
1134 if (ap->mBufferQueue.mState.count != 0) {
1135 //SL_LOGV("nbBuffers in queue = %u",ap->mBufferQueue.mState.count);
1163 ap->mBufferQueue.mState.count--;
1164 ap->mBufferQueue.mState.playIndex++;
1872 SLuint32 playState = ap->mPlay.mState;
[all...]
H A DMediaPlayer_to_android.cpp155 mp->mPlay.mState = XA_PLAYSTATE_PAUSED;
/system/media/wilhelm/src/desktop/
H A DSndFile.c30 SLuint32 state = thisAP->mPlay.mState;
84 thisAP->mPlay.mState = SL_PLAYSTATE_PAUSED;
194 SLboolean empty = 0 == audioPlayer->mBufferQueue.mState.count;

Completed in 160 milliseconds