Home
last modified time | relevance | path

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

/linux-6.15/rust/pin-init/src/
Dalloc.rs12 type AllocError = core::convert::Infallible; typedef
32 E: From<AllocError>; in try_pin_init()
38 fn pin_init(init: impl PinInit<T>) -> Result<Pin<Self>, AllocError> { in pin_init() argument
52 E: From<AllocError>; in try_init()
55 fn init(init: impl Init<T>) -> Result<Self, AllocError> { in init() argument
84 E: From<AllocError>, in try_pin_init()
92 E: From<AllocError>, in try_init()
102 E: From<AllocError>, in try_pin_init()
120 E: From<AllocError>, in try_init()
/linux-6.15/rust/kernel/alloc/
Dallocator.rs90 ) -> Result<NonNull<[u8]>, AllocError> { in call() argument
137 ) -> Result<NonNull<[u8]>, AllocError> { in realloc() argument
154 ) -> Result<NonNull<[u8]>, AllocError> { in realloc() argument
178 ) -> Result<NonNull<[u8]>, AllocError> { in realloc() argument
Dkvec.rs288 pub fn push(&mut self, v: T, flags: Flags) -> Result<(), AllocError> { in push() argument
318 pub fn with_capacity(capacity: usize, flags: Flags) -> Result<Self, AllocError> { in with_capacity() argument
419 pub fn reserve(&mut self, additional: usize, flags: Flags) -> Result<(), AllocError> { in reserve() argument
462 pub fn extend_with(&mut self, n: usize, value: T, flags: Flags) -> Result<(), AllocError> { in extend_with() argument
501 pub fn extend_from_slice(&mut self, other: &[T], flags: Flags) -> Result<(), AllocError> { in extend_from_slice() argument
517 pub fn from_elem(value: T, n: usize, flags: Flags) -> Result<Self, AllocError> { in from_elem() argument
Dkbox.rs215 pub fn new(x: T, flags: Flags) -> Result<Self, AllocError> { in new() argument
234 pub fn new_uninit(flags: Flags) -> Result<Box<MaybeUninit<T>, A>, AllocError> { in new_uninit() argument
349 E: From<AllocError>, in try_pin_init()
357 E: From<AllocError>, in try_init()
Dallocator_test.rs43 ) -> Result<NonNull<[u8]>, AllocError> { in realloc() argument
/linux-6.15/rust/kernel/
Dalloc.rs30 pub struct AllocError; struct
156 fn alloc(layout: Layout, flags: Flags) -> Result<NonNull<[u8]>, AllocError> { in alloc() argument
199 ) -> Result<NonNull<[u8]>, AllocError>; in realloc() argument
Dinit.rs157 E: From<AllocError>; in try_pin_init()
177 E: From<AllocError>; in try_init()
Dstr.rs358 pub fn to_cstring(&self) -> Result<CString, AllocError> { in to_cstring() argument
401 pub fn to_ascii_lowercase(&self) -> Result<CString, AllocError> { in to_ascii_lowercase() argument
418 pub fn to_ascii_uppercase(&self) -> Result<CString, AllocError> { in to_ascii_uppercase() argument
927 fn try_from(cstr: &'a CStr) -> Result<CString, AllocError> { in try_from() argument
Dpage.rs72 pub fn alloc_page(flags: Flags) -> Result<Self, AllocError> { in alloc_page() argument
Dworkqueue.rs216 ) -> Result<(), AllocError> { in try_spawn() argument
/linux-6.15/rust/kernel/sync/
Darc.rs211 E: From<AllocError>, in try_pin_init()
219 E: From<AllocError>, in try_init()
227 pub fn new(contents: T, flags: Flags) -> Result<Self, AllocError> { in new() argument
697 E: From<AllocError>, in try_pin_init()
705 E: From<AllocError>, in try_init()
735 pub fn new(value: T, flags: Flags) -> Result<Self, AllocError> { in new() argument
743 pub fn new_uninit(flags: Flags) -> Result<UniqueArc<MaybeUninit<T>>, AllocError> { in new_uninit() argument
/linux-6.15/rust/kernel/list/
Darc.rs173 pub fn new(contents: T, flags: Flags) -> Result<Self, AllocError> { in new() argument
185 E: From<AllocError>, in pin_init()
196 E: From<AllocError>, in init()