Searched refs:queue_with_handles (Results 1 – 7 of 7) sorted by relevance
/aosp_15_r20/external/rust/crates/v4l2r/lib/src/device/queue/ |
D | generic.rs | 119 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()
|
D | qbuf.rs | 176 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/ |
D | main.rs | 294 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/ |
D | device_api.rs | 213 buf.queue_with_handles( in run()
|
/aosp_15_r20/external/rust/crates/v4l2r/lib/src/decoder/stateful/ |
D | capture_thread.rs | 268 match buffer.queue_with_handles(handles) { in enqueue_capture_buffers()
|
/aosp_15_r20/external/rust/crates/v4l2r/ffi/src/ |
D | decoder.rs | 431 .queue_with_handles( in v4l2r_decoder_decode_safe()
|
/aosp_15_r20/external/rust/crates/v4l2r/lib/src/ |
D | encoder.rs | 595 buffer.queue_with_handles(handles).unwrap(); in enqueue_capture_buffers()
|