Home
last modified time | relevance | path

Searched refs:queue_with_handles (Results 1 – 7 of 7) sorted by relevance

/aosp_15_r20/external/rust/crates/v4l2r/lib/src/device/queue/
Dgeneric.rs119 fn queue_with_handles( in queue_with_handles() method
124 GenericQBuffer::Mmap(m) => m.queue_with_handles(handles), in queue_with_handles()
125 GenericQBuffer::User(u) => u.queue_with_handles(handles), in queue_with_handles()
126 GenericQBuffer::DmaBuf(d) => d.queue_with_handles(handles), in queue_with_handles()
133 fn queue_with_handles( in queue_with_handles() method
139 GenericQBuffer::Mmap(m) => m.queue_with_handles(handles, bytes_used), in queue_with_handles()
140 GenericQBuffer::User(u) => u.queue_with_handles(handles, bytes_used), in queue_with_handles()
141 GenericQBuffer::DmaBuf(d) => d.queue_with_handles(handles, bytes_used), in queue_with_handles()
Dqbuf.rs176 fn queue_with_handles(self, handles: Q) -> QueueResult<(), Q>; in queue_with_handles() method
186 fn queue_with_handles(self, handles: Q, bytes_used: &[usize]) -> QueueResult<(), Q>; in queue_with_handles() method
205 fn queue_with_handles(self, handles: Q) -> QueueResult<(), Q> { in queue_with_handles() method
233 fn queue_with_handles(self, handles: Q, bytes_used: &[usize]) -> QueueResult<(), Q> { in queue_with_handles() method
/aosp_15_r20/external/rust/crates/v4l2r/lib/examples/fwht_encoder/
Dmain.rs294 buf.queue_with_handles( in main()
311 buf.queue_with_handles(GenericBufferHandles::from(buffer), &[bytes_used]) in main()
/aosp_15_r20/external/rust/crates/v4l2r/lib/examples/vicodec_test/
Ddevice_api.rs213 buf.queue_with_handles( in run()
/aosp_15_r20/external/rust/crates/v4l2r/lib/src/decoder/stateful/
Dcapture_thread.rs268 match buffer.queue_with_handles(handles) { in enqueue_capture_buffers()
/aosp_15_r20/external/rust/crates/v4l2r/ffi/src/
Ddecoder.rs431 .queue_with_handles( in v4l2r_decoder_decode_safe()
/aosp_15_r20/external/rust/crates/v4l2r/lib/src/
Dencoder.rs595 buffer.queue_with_handles(handles).unwrap(); in enqueue_capture_buffers()