Home
last modified time | relevance | path

Searched refs:state_ (Results 1 – 5 of 5) sorted by relevance

/drivers/peripheral/camera/vdi_base/v4l2/src/stream_operator/
Dstream_still_capture.cpp36 if (state_ == STREAM_STATE_OFFLINE) { in HandleResult()
51 if (state_ == STREAM_STATE_OFFLINE) { in Capture()
78 state_ = STREAM_STATE_OFFLINE; in ChangeToOfflineStream()
96 if (state_ == STREAM_STATE_IDLE) { in StopStream()
102 if (state_ != STREAM_STATE_OFFLINE) { in StopStream()
103 state_ = STREAM_STATE_IDLE; in StopStream()
129 if (state_ != STREAM_STATE_OFFLINE) { in StopStream()
144 if (state_ != STREAM_STATE_OFFLINE) { in StopStream()
154 return state_ == STREAM_STATE_BUSY || state_ == STREAM_STATE_OFFLINE; in IsRunning()
Dstream_base.cpp44 if (state_ == STREAM_STATE_BUSY) { in ~StreamBase()
60 if (state_ != STREAM_STATE_IDLE) { in ConfigStream()
79 if (state_ != STREAM_STATE_IDLE) { in CommitStream()
134 state_ = STREAM_STATE_ACTIVE; in CommitStream()
144 if (state_ != STREAM_STATE_ACTIVE) { in StartStream()
157 state_ = STREAM_STATE_BUSY; in StartStream()
162 while (state_ == STREAM_STATE_BUSY) { in StartStream()
168 state_ = STREAM_STATE_ACTIVE; in StartStream()
186 if (state_ == STREAM_STATE_IDLE) { in StopStream()
192 state_ = STREAM_STATE_IDLE; in StopStream()
[all …]
/drivers/peripheral/codec/hal/passthrough/adapter/src/
Dcomponent_node.cpp72 state_(OMX_StateMax), in ComponentNode()
210 …stateFlag = (state_ == OMX_StateIdle || state_ == OMX_StateWaitForResources || state_ == OMX_State… in SetState()
214 …stateFlag = (state_ == OMX_StateWaitForResources || state_ == OMX_StateLoaded || state_ == OMX_Sta… in SetState()
215 state_ == OMX_StateExecuting); in SetState()
219 stateFlag = (state_ == OMX_StateIdle || state_ == OMX_StatePause); in SetState()
223 stateFlag = (state_ == OMX_StateIdle || state_ == OMX_StateExecuting); in SetState()
227 stateFlag = (state_ == OMX_StateLoaded); in SetState()
237 state_ = state; in SetState()
239 …F_LOGI("%{public}s set state[%{public}d], current state is [%{public}d]", __func__, state, state_); in SetState()
254 *state = state_; in GetState()
/drivers/peripheral/codec/hal/passthrough/adapter/include/
Dcomponent_node.h77 OMX_STATETYPE state_; variable
/drivers/peripheral/camera/vdi_base/v4l2/include/stream_operator/
Dstream_base.h81 std::atomic<StreamState> state_ = STREAM_STATE_IDLE; variable