/aosp_15_r20/external/rust/crates/v4l2r/lib/src/ioctl/ |
D | g_audio.rs | 127 pub fn g_tuner<O: From<v4l2_tuner>>(fd: &impl AsRawFd, index: u32) -> Result<O, GAudioError> { in g_tuner() 141 pub fn s_tuner(fd: &impl AsRawFd, index: u32, mode: TunerMode) -> Result<(), GAudioError> { in s_tuner() 169 pub fn s_audio(fd: &impl AsRawFd, index: u32, mode: Option<AudioMode>) -> Result<(), GAudioError> { in s_audio() 197 pub fn s_audout(fd: &impl AsRawFd, index: u32) -> Result<(), GAudioError> { in s_audout() 211 pub fn g_modulator<O: From<v4l2_modulator>>( in g_modulator() 229 fd: &impl AsRawFd, in s_modulator() 247 pub fn g_frequency<O: From<v4l2_frequency>>( in g_frequency() 265 fd: &impl AsRawFd, in s_frequency() 285 pub fn enumaudio<O: From<v4l2_audio>>(fd: &impl AsRawFd, index: u32) -> Result<O, GAudioError> { in enumaudio() 299 pub fn enumaudout<O: From<v4l2_audioout>>(fd: &impl AsRawFd, index: u32) -> Result<O, GAudioError> { in enumaudout() [all …]
|
D | g_ext_ctrls.rs | 149 pub fn g_ctrl(fd: &impl AsRawFd, id: u32) -> Result<i32, GCtrlError> { in g_ctrl() 163 pub fn s_ctrl(fd: &impl AsRawFd, id: u32, value: i32) -> Result<i32, GCtrlError> { in s_ctrl() 265 pub fn g_ext_ctrls<I: AsV4l2ControlSlice>( in g_ext_ctrls() 294 pub fn s_ext_ctrls<I: AsV4l2ControlSlice>( in s_ext_ctrls() 323 pub fn try_ext_ctrls<I: AsV4l2ControlSlice>( in try_ext_ctrls() 369 pub fn querymenu<O: From<v4l2_querymenu>>( in querymenu()
|
D | g_input.rs | 44 pub fn enuminput<R: From<v4l2_input>>( in enuminput() 70 pub fn s_input(fd: &impl AsRawFd, index: usize) -> Result<usize, SelectionError> { in s_input() 81 pub fn enumoutput<R: From<v4l2_output>>( in enumoutput() 105 pub fn s_output(fd: &impl AsRawFd, index: usize) -> Result<(), SelectionError> { in s_output()
|
D | g_parm.rs | 40 pub fn g_parm<O: From<v4l2_streamparm>>( in g_parm() 56 pub fn s_parm<I: Into<v4l2_streamparm>, O: From<v4l2_streamparm>>( in s_parm() 96 pub fn s_std<I: Into<v4l2_std_id>>(fd: &impl AsRawFd, std_id: I) -> Result<(), SStdError> { in s_std() 127 pub fn enumstd<O: From<v4l2_standard>>(fd: &impl AsRawFd, index: u32) -> Result<O, EnumStdError> { in enumstd()
|
D | g_dv_timings.rs | 55 pub fn s_dv_timings<I: Into<v4l2_dv_timings>, O: From<v4l2_dv_timings>>( in s_dv_timings() 106 pub fn enum_dv_timings<O: From<v4l2_dv_timings>>( in enum_dv_timings() 147 pub fn query_dv_timings<O: From<v4l2_dv_timings>>( in query_dv_timings() 178 pub fn dv_timings_cap<O: From<v4l2_dv_timings_cap>>( in dv_timings_cap()
|
D | g_fmt.rs | 117 pub fn g_fmt<O: TryFrom<v4l2_format>>(fd: &impl AsRawFd, queue: QueueType) -> Result<O, GFmtError> { in g_fmt() 159 pub fn s_fmt<I: TryInto<v4l2_format>, O: TryFrom<v4l2_format>>( in s_fmt() 201 pub fn try_fmt<I: TryInto<v4l2_format>, O: TryFrom<v4l2_format>>( in try_fmt()
|
D | streamon.rs | 37 pub fn streamon(fd: &impl AsRawFd, queue: QueueType) -> Result<(), StreamOnError> { in streamon() 65 pub fn streamoff(fd: &impl AsRawFd, queue: QueueType) -> Result<(), StreamOffError> { in streamoff()
|
D | queryctrl.rs | 74 pub fn queryctrl<T: From<v4l2_queryctrl>>( in queryctrl() 91 pub fn query_ext_ctrl<T: From<v4l2_query_ext_ctrl>>( in query_ext_ctrl()
|
D | g_selection.rs | 66 pub fn g_selection<R: From<v4l2_rect>>( in g_selection() 108 pub fn s_selection<RI: Into<v4l2_rect>, RO: From<v4l2_rect>>( in s_selection()
|
D | encoder_cmd.rs | 113 pub fn encoder_cmd<I: Into<v4l2_encoder_cmd>, O: TryFrom<v4l2_encoder_cmd>>( in encoder_cmd() 128 pub fn try_encoder_cmd<I: Into<v4l2_encoder_cmd>, O: TryFrom<v4l2_encoder_cmd>>( in try_encoder_cmd()
|
D | reqbufs.rs | 88 pub fn reqbufs<O: From<v4l2_requestbuffers>>( in reqbufs() 129 pub fn create_bufs<F: Into<v4l2_format>, O: From<v4l2_create_buffers>>( in create_bufs()
|
/aosp_15_r20/external/rust/android-crates-io/crates/vmm-sys-util/src/linux/ |
D | ioctl.rs | 314 pub unsafe fn ioctl_with_ref<F: AsRawFd, T>(fd: &F, req: c_ulong, arg: &T) -> c_int { in ioctl_with_ref() 336 pub unsafe fn ioctl_with_mut_ref<F: AsRawFd, T>(fd: &F, req: c_ulong, arg: &mut T) -> c_int { in ioctl_with_mut_ref() 358 pub unsafe fn ioctl_with_ptr<F: AsRawFd, T>(fd: &F, req: c_ulong, arg: *const T) -> c_int { in ioctl_with_ptr() 376 pub unsafe fn ioctl_with_mut_ptr<F: AsRawFd, T>(fd: &F, req: c_ulong, arg: *mut T) -> c_int { in ioctl_with_mut_ptr()
|
D | poll.rs | 452 pub fn add(&self, fd: &dyn AsRawFd, token: T) -> Result<()> { in add() 484 fd: &dyn AsRawFd, in add_fd_with_events() 533 pub fn modify(&self, fd: &dyn AsRawFd, events: WatchingEvents, token: T) -> Result<()> { in modify() 785 pub fn add(&self, fd: &dyn AsRawFd, token: T) -> Result<()> { in add() 803 fd: &dyn AsRawFd, in add_fd_with_events() 823 pub fn modify(&self, fd: &dyn AsRawFd, events: WatchingEvents, token: T) -> Result<()> { in modify()
|
/aosp_15_r20/external/rust/android-crates-io/crates/tokio/src/io/ |
D | async_fd.rs | 226 pub fn new(inner: T) -> io::Result<Self> in new() 243 pub fn with_interest(inner: T, interest: Interest) -> io::Result<Self> in with_interest() 277 pub fn try_new(inner: T) -> Result<Self, AsyncFdTryNewError<T>> in try_new() 297 pub fn try_with_interest(inner: T, interest: Interest) -> Result<Self, AsyncFdTryNewError<T>> in try_with_interest()
|
/aosp_15_r20/external/rust/android-crates-io/crates/rustix/src/maybe_polyfill/no_std/os/fd/ |
D | raw.rs | 24 pub trait AsRawFd { interface
|
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/std/src/os/fortanix_sgx/ |
H A D | io.rs | 14 pub trait AsRawFd { trait
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/std/src/os/fortanix_sgx/ |
H A D | io.rs | 14 pub trait AsRawFd { trait
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/std/src/os/fortanix_sgx/ |
H A D | io.rs | 14 pub trait AsRawFd { interface
|
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/std/src/os/fortanix_sgx/ |
H A D | io.rs | 14 pub trait AsRawFd { trait
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/std/src/os/fortanix_sgx/ |
H A D | io.rs | 14 pub trait AsRawFd { trait
|
/aosp_15_r20/external/rust/android-crates-io/crates/rustix/src/backend/libc/ |
D | mod.rs | 27 pub trait AsRawFd { trait
|
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/std/src/os/fd/ |
H A D | raw.rs | 40 pub trait AsRawFd { trait
|
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/std/src/os/fd/ |
H A D | raw.rs | 40 pub trait AsRawFd { trait
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/std/src/os/fd/ |
H A D | raw.rs | 40 pub trait AsRawFd { interface
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/std/src/os/fd/ |
H A D | raw.rs | 40 pub trait AsRawFd { interface
|