Home
last modified time | relevance | path

Searched refs:mState (Results 1 – 9 of 9) sorted by relevance

/system/vold/
DVolumeBase.cpp37 mType(type), mMountFlags(0), mMountUserId(-1), mCreated(false), mState( in VolumeBase()
46 mState = state; in setState()
47 notifyEvent(ResponseCode::VolumeStateChanged, StringPrintf("%d", mState)); in setState()
71 if ((mState != State::kUnmounted) && (mState != State::kUnmountable)) { in setMountFlags()
81 if ((mState != State::kUnmounted) && (mState != State::kUnmountable)) { in setMountUserId()
111 if (mState != State::kChecking) { in setPath()
122 if (mState != State::kChecking) { in setInternalPath()
179 if (mState == State::kMounted) { in destroy()
197 if ((mState != State::kUnmounted) && (mState != State::kUnmountable)) { in mount()
214 if (mState != State::kMounted) { in unmount()
[all …]
DVolumeBase.h83 State getState() { return mState; } in getState()
136 State mState; variable
/system/core/libutils/
DThreads.cpp345 assert(sizeof(hMutex) == sizeof(mState));
348 mState = (void*) hMutex;
356 assert(sizeof(hMutex) == sizeof(mState));
359 mState = (void*) hMutex;
367 assert(sizeof(hMutex) == sizeof(mState));
370 mState = (void*) hMutex;
375 CloseHandle((HANDLE) mState);
381 dwWaitResult = WaitForSingleObject((HANDLE) mState, INFINITE);
387 if (!ReleaseMutex((HANDLE) mState))
395 dwWaitResult = WaitForSingleObject((HANDLE) mState, 0);
[all …]
/system/security/keystore/
Duser_state.cpp36 mUserId(userId), mState(STATE_UNINITIALIZED), mRetry(MAX_RETRY) { in UserState()
62 mState = state; in setState()
63 if (mState == STATE_NO_ERROR || mState == STATE_UNINITIALIZED) { in setState()
94 if (mState != STATE_UNINITIALIZED) { in copyMasterKey()
Duser_state.h43 State getState() const { return mState; } in getState()
80 State mState; variable
/system/libhwbinder/
DBinder.cpp186 : mRemote(o.get()), mRefs(NULL), mState(0) in BpHwRefBase()
199 if (!(mState.load(std::memory_order_relaxed)&kRemoteAcquired)) { in ~BpHwRefBase()
208 mState.fetch_or(kRemoteAcquired, std::memory_order_relaxed); in onFirstRef()
/system/core/libutils/include/utils/
DMutex.h103 void* mState; variable
DCondition.h87 void* mState;
/system/libhwbinder/include/hwbinder/
DBinder.h100 std::atomic<int32_t> mState; variable