Home
last modified time | relevance | path

Searched defs:Bound (Results 1 – 12 of 12) sorted by relevance

/linux/rust/kernel/
H A Ddevres.rs143 new<'a, E>( dev: &'a Device<Bound>, data: impl PinInit<T, E> + 'a, ) -> impl PinInit<Self, Error> + 'a where T: 'a, Error: From<E>, new() argument
321 register_foreign<P>(dev: &Device<Bound>, data: P) -> Result where P: ForeignOwnable + Send + 'static, register_foreign() argument
371 register<T, E>(dev: &Device<Bound>, data: impl PinInit<T, E>, flags: Flags) -> Result where T: Send + 'static, Error: From<E>, register() argument
[all...]
H A Ddevice.rs194 pub unsafe fn as_bound(&self) -> &Device<Bound> { in as_bound()
588 pub struct Bound; struct
593 impl Sealed for super::Bound {} implementation
599 impl DeviceContext for Bound {} implementation
H A Dscatterlist.rs204 new( sgt: NonNull<bindings::sg_table>, dev: &Device<Bound>, dir: dma::DataDirection, ) -> Result<Self> new() argument
337 new( dev: &Device<Bound>, mut pages: P, dir: dma::DataDirection, flags: alloc::Flags, ) -> Result<impl PinInit<Self, Error> + '_> new() argument
432 new( dev: &Device<Bound>, pages: P, dir: dma::DataDirection, flags: alloc::Flags, ) -> impl PinInit<Self, Error> + '_ new() argument
H A Dregulator.rs84 devm_enable(dev: &Device<Bound>, name: &CStr) -> Result devm_enable() argument
102 devm_enable_optional(dev: &Device<Bound>, name: &CStr) -> Result devm_enable_optional() argument
H A Dauxiliary.rs254 pub fn parent(&self) -> &device::Device<device::Bound> { in parent()
343 parent: &'a device::Device<device::Bound>, in new()
H A Ddma.rs399 dev: &device::Device<Bound>, in alloc_attrs()
442 dev: &device::Device<Bound>, in alloc_coherent()
H A Di2c.rs563 parent_dev: &'a device::Device<device::Bound>, in new()
/linux/drivers/gpu/nova-core/gsp/
H A Dboot.rs50 dev: &device::Device<device::Bound>, in run_fwsec_frts()
132 pdev: &pci::Device<device::Bound>, in boot()
/linux/rust/kernel/pci/
H A Dirq.rs91 unsafe fn new(dev: &'a Device<Bound>, index: u32) -> Self { in new()
133 dev: &'a Device<Bound>, in register()
/linux/samples/rust/
H A Drust_driver_pci.rs70 fn config_space(pdev: &pci::Device<Bound>) { in config_space()
/linux/rust/kernel/io/
H A Dmem.rs39 new(device: &'a Device<Bound>, resource: &'a Resource) -> Self new() argument
/linux/rust/kernel/irq/
H A Drequest.rs114 pub(crate) unsafe fn new(dev: &'a Device<Bound>, irq: u32) -> Self { in new()