Home
last modified time | relevance | path

Searched full:boxed (Results 1 – 11 of 11) sorted by relevance

/linux/rust/kernel/
H A Dauxiliary.rs293 let boxed = KBox::new(Opaque::<bindings::auxiliary_device>::zeroed(), GFP_KERNEL)?; in new() localVariable
294 let adev = boxed.get(); in new()
310 let _ = KBox::into_raw(boxed); in new()
H A Dworkqueue.rs889 let boxed = unsafe { KBox::from_raw(ptr) };
891 let pinned = unsafe { Pin::new_unchecked(boxed) }; in run()
911 let boxed = unsafe { Pin::into_inner_unchecked(self) };
912 let ptr = KBox::into_raw(boxed); in __enqueue()
896 let boxed = unsafe { KBox::from_raw(ptr) }; run() localVariable
918 let boxed = unsafe { Pin::into_inner_unchecked(self) }; __enqueue() localVariable
/linux/rust/pin-init/src/
H A Dalloc.rs4 use alloc::{boxed::Box, sync::Arc};
H A Dlib.rs261 #![cfg_attr(not(kernel), doc = "[`Box<T>`]: alloc::alloc::boxed::Box")]
1055 #[cfg_attr(not(kernel), doc = "[`Box<T>`]: alloc::alloc::boxed::Box")]
1154 #[cfg_attr(not(kernel), doc = "[`Box<T>`]: alloc::alloc::boxed::Box")]
/linux/arch/s390/include/asm/
H A Dccwdev.h169 /* Allow forced onlining of boxed devices. */
/linux/Documentation/arch/s390/
H A Ddriver-model.rst46 Can be 'good' or 'boxed'; 'no path' or 'no device' for
/linux/drivers/s390/cio/
H A Ddevice.c318 pr_warn("%s: The device entered boxed state while being set offline\n", in ccw_device_set_offline()
386 pr_warn("%s: Setting the device online failed because it is boxed\n", in ccw_device_set_online()
550 return sysfs_emit(buf, "boxed\n"); in available_show()
831 * recognition has been done for a boxed device (which will already in io_subchannel_register()
H A Ddevice_fsm.c347 CIO_MSG_EVENT(0, "Boxed device %04x on subchannel %04x\n", in ccw_device_done()
693 * Handle path verification event in boxed state.
/linux/rust/kernel/sync/
H A Dcondvar.rs71 /// /// Allocates a new boxed `Example`.
/linux/rust/pin-init/
H A DREADME.md248 [`Box<T>`]: https://doc.rust-lang.org/stable/alloc/boxed/struct.Box.html
/linux/rust/kernel/alloc/
H A Dkbox.rs325 /// // Allocate a boxed slice of 10 `Example`s.