Home
last modified time | relevance | path

Searched refs:pendingState (Results 1 – 3 of 3) sorted by relevance

/aosp12/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DFrameProcessor.cpp263 AlgState pendingState; in process3aState() local
267 pendingState = mPending3AStates.valueAt(index); in process3aState()
293 if (pendingState.aeState != m3aState.aeState || in process3aState()
298 client->notifyAutoExposure(pendingState.aeState, pendingState.aeTriggerId); in process3aState()
300 m3aState.aeState = pendingState.aeState; in process3aState()
315 client->notifyAutoFocus(pendingState.afState, pendingState.afTriggerId); in process3aState()
317 m3aState.afState = pendingState.afState; in process3aState()
318 m3aState.afMode = pendingState.afMode; in process3aState()
332 pendingState.aeTriggerId); in process3aState()
334 m3aState.awbMode = pendingState.awbMode; in process3aState()
[all …]
/aosp12/frameworks/base/services/core/java/com/android/server/appop/
H A DAppOpsService.java548 public int pendingState = UID_STATE_CACHED; field in AppOpsService.UidState
575 && (pendingState == UID_STATE_CACHED)); in isDefault()
2102 if (uidState != null && (uidState.pendingState != newState in updateUidProcState()
2104 final int oldPendingState = uidState.pendingState; in updateUidProcState()
2105 uidState.pendingState = newState; in updateUidProcState()
4426 final boolean resolvedNowFg = uidState.pendingState <= firstUnrestrictedUidState; in commitUidPendingStateLocked()
4465 uidState.state = uidState.pendingState; in commitUidPendingStateLocked()
6251 if (uidState.state != uidState.pendingState) { in dump()
6253 pw.println(AppOpsManager.getUidStateName(uidState.pendingState)); in dump()
/aosp12/frameworks/base/core/java/android/app/
H A DActivityThread.java3435 final int pendingState = mPendingProcessState; in applyPendingProcessState() local
3438 if (pendingState == mLastProcessState) { in applyPendingProcessState()
3439 updateVmProcessState(pendingState); in applyPendingProcessState()