Home
last modified time | relevance | path

Searched refs:RELEASED (Results 1 – 6 of 6) sorted by relevance

/external/rust/crates/tokio/src/sync/mpsc/
Dblock.rs53 const RELEASED: usize = 1 << BLOCK_CAP; constant
58 const TX_CLOSED: usize = RELEASED << 1;
61 const READY_MASK: usize = RELEASED - 1;
197 self.ready_slots.fetch_or(RELEASED, Release); in tx_release()
223 if 0 == RELEASED & self.ready_slots.load(Acquire) { in observed_tail_position()
/external/webrtc/sdk/android/tests/src/org/webrtc/
DFakeMediaCodecWrapper.java46 RELEASED(Primary.RELEASED); enumConstant
48 public enum Primary { STOPPED, EXECUTING, RELEASED } enumConstant
234 state = State.RELEASED; in release()
DHardwareVideoEncoderTest.java252 assertThat(fakeMediaCodecWrapper.getState()).isEqualTo(State.RELEASED); in testRelease()
266 assertThat(fakeMediaCodecWrapper.getState()).isEqualTo(State.RELEASED); in testReleaseMultipleTimes()
DAndroidVideoDecoderTest.java249 assertThat(fakeMediaCodecWrapper.getState()).isEqualTo(State.RELEASED); in testRelease()
263 assertThat(fakeMediaCodecWrapper.getState()).isEqualTo(State.RELEASED); in testReleaseMultipleTimes()
/external/v4l2_codec2/components/include/v4l2_codec2/components/
DV4L2DecodeComponent.h56 RELEASED, enumerator
/external/v4l2_codec2/components/
DV4L2DecodeComponent.cpp318 mComponentState.store(ComponentState::RELEASED); in release()
336 if (currentState == ComponentState::RELEASED || in setListener_vb()
862 case ComponentState::RELEASED: in ComponentStateToString()