Searched refs:mState (Results 1 – 14 of 14) sorted by relevance
/system/vold/model/ |
D | VolumeBase.cpp | 40 mState(State::kUnmounted), in VolumeBase() 48 mState = state; in setState() 52 listener->onVolumeStateChanged(getId(), static_cast<int32_t>(mState), in setState() 78 if ((mState != State::kUnmounted) && (mState != State::kUnmountable)) { in setMountFlags() 88 if ((mState != State::kUnmounted) && (mState != State::kUnmountable)) { in setMountUserId() 118 if (mState != State::kChecking) { in setPath() 132 if (mState != State::kChecking) { in setInternalPath() 205 if (mState == State::kMounted) { in destroy() 227 if ((mState != State::kUnmounted) && (mState != State::kUnmountable)) { in mount() 245 if (mState != State::kMounted) { in unmount() [all …]
|
D | VolumeBase.h | 94 State getState() const { return mState; } in getState() 159 State mState; variable
|
/system/chre/apps/test/chqts/src/general_test/ |
D | basic_sensor_test_base.cc | 84 mState(State::kPreStart), in BasicSensorTestBase() 99 mState = State::kPreStart; in sendStartTestMessage() 180 mState = State::kPreConfigure; in startTest() 285 mState = State::kExpectingLastDataEvent; in startTest() 291 mState = State::kExpectingInitialDataEvent; in startTest() 341 mState = State::kFinished; in finishTest() 365 if (mState == State::kExpectingInitialDataEvent) { in verifyEventHeader() 368 } else if (mState == State::kExpectingLastDataEvent) { in verifyEventHeader() 393 if ((mState == State::kFinished) && in verifyEventHeader() 462 if (mState != State::kFinished) { in handleSamplingChangeEvent() [all …]
|
D | basic_audio_test.cc | 273 : Test(CHRE_API_VERSION_1_2), mInMethod(false), mState(State::kPreStart) {} in BasicAudioTest() 287 mState = State::kExpectingAudioData; in setUp() 303 if (mState == State::kPreStart) { in handleEvent()
|
D | basic_audio_test.h | 41 State mState; variable
|
D | basic_sensor_test_base.h | 99 State mState; variable
|
/system/extras/simpleperf/app_api/java/com/android/simpleperf/ |
D | ProfileSession.java | 74 private State mState = State.NOT_YET_STARTED; field in ProfileSession 134 if (mState != State.NOT_YET_STARTED) { in startRecording() 135 throw new IllegalStateException("startRecording: session in wrong state " + mState); in startRecording() 146 mState = State.STARTED; in startRecording() 153 if (mState != State.STARTED) { in pauseRecording() 154 throw new IllegalStateException("pauseRecording: session in wrong state " + mState); in pauseRecording() 161 mState = State.PAUSED; in pauseRecording() 168 if (mState != State.PAUSED) { in resumeRecording() 169 throw new IllegalStateException("resumeRecording: session in wrong state " + mState); in resumeRecording() 172 mState = State.STARTED; in resumeRecording() [all …]
|
/system/core/libutils/ |
D | Threads.cpp | 339 assert(sizeof(hMutex) == sizeof(mState)); 342 mState = (void*) hMutex; 350 assert(sizeof(hMutex) == sizeof(mState)); 353 mState = (void*) hMutex; 361 assert(sizeof(hMutex) == sizeof(mState)); 364 mState = (void*) hMutex; 369 CloseHandle((HANDLE) mState); 375 dwWaitResult = WaitForSingleObject((HANDLE) mState, INFINITE); 381 if (!ReleaseMutex((HANDLE) mState)) 389 dwWaitResult = WaitForSingleObject((HANDLE) mState, 0); [all …]
|
/system/hwservicemanager/ |
D | test_lazy.cpp | 54 mState.mInjectedReportCount = count; in setReportedClientCount() 59 return mState.mInjectedTimes; in getNumTimesReported() 65 mState.mInjectedTimes++; in makeService() 66 return mState.mInjectedReportCount; in makeService() 73 mState = TestState(); in SetUp() 79 } mState; member in HidlServiceLazyTest
|
/system/libhwbinder/ |
D | Binder.cpp | 231 : mRemote(o.get()), mRefs(nullptr), mState(0) in BpHwRefBase() 241 if (!(mState.load(std::memory_order_relaxed)&kRemoteAcquired)) { in ~BpHwRefBase() 249 mState.fetch_or(kRemoteAcquired, std::memory_order_relaxed); in onFirstRef()
|
/system/extras/power_profile/camera_avg/Application/src/main/java/com/example/android/powerprofile/cameraavg/ |
D | CameraAvgFragment.java | 267 private int mState = STATE_PREVIEW; field in CameraAvgFragment 291 switch (mState) { 306 mState = STATE_PICTURE_TAKEN; 320 mState = STATE_WAITING_NON_PRECAPTURE; 328 mState = STATE_PICTURE_TAKEN; 793 mState = STATE_WAITING_LOCK; in lockFocus() 811 mState = STATE_WAITING_PRECAPTURE; in runPrecaptureSequence() 889 mState = STATE_PREVIEW; in unlockFocus()
|
/system/libhwbinder/include/hwbinder/ |
D | Binder.h | 116 std::atomic<int32_t> mState; variable
|
/system/core/libutils/include/utils/ |
D | Condition.h | 89 void* mState;
|
D | Mutex.h | 154 void* mState; variable
|