Home
last modified time | relevance | path

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

/linux/rust/kernel/
H A Ddevice.rs185 pub unsafe fn as_bound(&self) -> &Device<Bound> { in as_bound()
498 pub struct Bound; struct
503 impl Sealed for super::Bound {} implementation
509 impl DeviceContext for Bound {} implementation
H A Ddevres.rs131 dev: &'a Device<Bound>, in new() argument
311 register_foreign<P>(dev: &Device<Bound>, data: P) -> Result where P: ForeignOwnable + Send + 'static, register_foreign() argument
361 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 Ddma.rs299 alloc_attrs( dev: &device::Device<Bound>, count: usize, gfp_flags: kernel::alloc::Flags, dma_attrs: Attrs, ) -> Result<CoherentAllocation<T>> alloc_attrs() argument
344 alloc_coherent( dev: &device::Device<Bound>, count: usize, gfp_flags: kernel::alloc::Flags, ) -> Result<CoherentAllocation<T>> alloc_coherent() argument
/linux/drivers/gpu/nova-core/
H A Ddma.rs17 pub(crate) fn new(dev: &device::Device<device::Bound>, len: usize) -> Result<Self> { in new()
27 pub(crate) fn from_data(dev: &device::Device<device::Bound>, data: &[u8]) -> Result<Self> { in from_data()
/linux/rust/kernel/drm/
H A Ddriver.rs133 new_foreign_owned( drm: &drm::Device<T>, dev: &device::Device<device::Bound>, flags: usize, ) -> Result where T: 'static, new_foreign_owned() argument
/linux/rust/kernel/io/
H A Dmem.rs31 pub(crate) unsafe fn new(device: &'a Device<Bound>, resource: &'a Resource) -> Self { in new()