Home
last modified time | relevance | path

Searched defs:E (Results 1 – 25 of 30) sorted by relevance

12

/linux/rust/pin-init/src/
H A Dlib.rs933 __pinned_init(self, slot: *mut T) -> Result<(), E> __pinned_init() argument
953 pin_chain<F>(self, f: F) -> ChainPinInit<Self, F, T, E> where F: FnOnce(Pin<&mut T>) -> Result<(), E>, pin_chain() argument
973 __pinned_init(self, slot: *mut T) -> Result<(), E> __pinned_init() argument
1031 __init(self, slot: *mut T) -> Result<(), E> __init() argument
1061 chain<F>(self, f: F) -> ChainInit<Self, F, T, E> where F: FnOnce(&mut T) -> Result<(), E>, chain() argument
1080 __init(self, slot: *mut T) -> Result<(), E> __init() argument
1096 __pinned_init(self, slot: *mut T) -> Result<(), E> __pinned_init() argument
1115 pin_init_from_closure<T: ?Sized, E>( f: impl FnOnce(*mut T) -> Result<(), E>, ) -> impl PinInit<T, E> pin_init_from_closure() argument
1134 init_from_closure<T: ?Sized, E>( f: impl FnOnce(*mut T) -> Result<(), E>, ) -> impl Init<T, E> init_from_closure() argument
1146 cast_pin_init<T, U, E>(init: impl PinInit<T, E>) -> impl PinInit<U, E> cast_pin_init() argument
1162 cast_init<T, U, E>(init: impl Init<T, E>) -> impl Init<U, E> cast_init() argument
1176 uninit<T, E>() -> impl Init<MaybeUninit<T>, E> uninit() argument
1191 init_array_from_fn<I, const N: usize, T, E>( mut make_init: impl FnMut(usize) -> I, ) -> impl Init<[T; N], E> where I: Init<T, E>, init_array_from_fn() argument
1234 pin_init_array_from_fn<I, const N: usize, T, E>( mut make_init: impl FnMut(usize) -> I, ) -> impl PinInit<[T; N], E> where I: PinInit<T, E>, pin_init_array_from_fn() argument
1288 pin_init_scope<T, E, F, I>(make_init: F) -> impl PinInit<T, E> where F: FnOnce() -> Result<I, E>, I: PinInit<T, E>, pin_init_scope() argument
1331 init_scope<T, E, F, I>(make_init: F) -> impl Init<T, E> where F: FnOnce() -> Result<I, E>, I: Init<T, E>, init_scope() argument
1372 __init(self, slot: *mut T) -> Result<(), E> __init() argument
1383 __pinned_init(self, slot: *mut T) -> Result<(), E> __pinned_init() argument
1398 write_init<E>(self, init: impl Init<T, E>) -> Result<Self::Initialized, E> write_init() argument
1403 write_pin_init<E>(self, init: impl PinInit<T, E>) -> Result<Pin<Self::Initialized>, E> write_pin_init() argument
1409 write_init<E>(self, init: impl Init<T, E>) -> Result<Self::Initialized, E> write_init() argument
1419 write_pin_init<E>(self, init: impl PinInit<T, E>) -> Result<Pin<Self::Initialized>, E> write_pin_init() argument
1691 pin_init<E>(value_init: impl PinInit<T, E>) -> impl PinInit<Self, E> pin_init() argument
1695 pin_init<E>(value_init: impl PinInit<T, E>) -> impl PinInit<Self, E> pin_init() argument
1702 pin_init<E>(value_init: impl PinInit<T, E>) -> impl PinInit<Self, E> pin_init() argument
1710 pin_init<E>(init: impl PinInit<T, E>) -> impl PinInit<Self, E> pin_init() argument
[all...]
H A D__internal.rs32 __init(self, slot: *mut T) -> Result<(), E> __init() argument
44 __pinned_init(self, slot: *mut T) -> Result<(), E> __pinned_init() argument
90 make_closure<F, E>(self, f: F) -> F where F: FnOnce(*mut Self::Datee) -> Result<InitOk, E>, make_closure() argument
121 make_closure<F, E>(self, f: F) -> F where F: FnOnce(*mut Self::Datee) -> Result<InitOk, E>, make_closure() argument
191 init<E>(self: Pin<&mut Self>, init: impl PinInit<T, E>) -> Result<Pin<&mut T>, E> init() argument
[all...]
H A Dalloc.rs139 fn write_init<E>(mut self, init: impl Init<T, E>) -> Result<Self::Initialized, E> { in write_init() argument
148 fn write_pin_init<E>(mut self, init: impl PinInit<T, E>) -> Result<Pin<Self::Initialized>, E> { in write_pin_init() argument
/linux/rust/kernel/
H A Dinit.rs146 fn try_pin_init<E>(init: impl PinInit<T, E>, flags: Flags) -> Result<Self::PinnedSelf, E> in try_pin_init() argument
154 pin_init<E>(init: impl PinInit<T, E>, flags: Flags) -> error::Result<Self::PinnedSelf> where Error: From<E>, pin_init() argument
166 try_init<E>(init: impl Init<T, E>, flags: Flags) -> Result<Self, E> where E: From<AllocError> try_init() argument
171 init<E>(init: impl Init<T, E>, flags: Flags) -> error::Result<Self> where Error: From<E>, init() argument
[all...]
H A Ddevres.rs148 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
371 register<T, E>(dev: &Device<Bound>, data: impl PinInit<T, E>, flags: Flags) -> Result where T: Send + 'static, Error: From<E>, register() argument
374 register<T, E>(dev: &Device<Bound>, data: impl PinInit<T, E>, flags: Flags) -> Result where T: Send + 'static, Error: From<E>, register() argument
H A Dtypes.rs383 try_ffi_init<E>( init_func: impl FnOnce(*mut T) -> Result<(), E>, ) -> impl PinInit<Self, E> try_ffi_init() argument
414 pin_init<E>(slot: impl PinInit<T, E>) -> impl PinInit<Self, E> pin_init() argument
H A Ddma.rs439 Error: From<E>, in init_at() argument
780 pub fn init_with_attrs<E>( in init_with_attrs() argument
787 Error: From<E>, in init_with_attrs() argument
805 pub fn init<E>( in init() argument
811 Error: From<E>, in init() argument
H A Drevocable.rs85 pub fn new<E>(data: impl PinInit<T, E>) -> impl PinInit<Self, E> { in new() argument
/linux/lib/
H A Derrname.c16 #define E(err) [err + BUILD_BUG_ON_ZERO(err <= 0 || err > 300)] = "-" #err macro
177 #define E(err) [err - 512 + BUILD_BUG_ON_ZERO(err < 512 || err > 550)] = "-" #err macro
/linux/net/netfilter/ipset/
H A Dpfxlen.c142 #define E(a, b, c, d) \ macro
157 #define E(a, b, c, d) \ macro
/linux/tools/testing/selftests/bpf/progs/
H A Dbtf_dump_test_case_namespacing.c24 enum E { enum
28 typedef enum E E; typedef
H A Dtest_global_func9.c23 enum E { enum
/linux/rust/kernel/alloc/
H A Dkbox.rs336 pin_slice<Func, Item, E>( mut init: Func, len: usize, flags: Flags, ) -> Result<Pin<Box<[T], A>>, E> where Func: FnMut(usize) -> Item, Item: PinInit<T, E>, E: From<AllocError>, pin_slice() argument
439 write_init<E>(mut self, init: impl Init<T, E>) -> Result<Self::Initialized, E> write_init() argument
448 write_pin_init<E>(mut self, init: impl PinInit<T, E>) -> Result<Pin<Self::Initialized>, E> write_pin_init() argument
465 try_pin_init<E>(init: impl PinInit<T, E>, flags: Flags) -> Result<Pin<Self>, E> where E: From<AllocError>, try_pin_init() argument
473 try_init<E>(init: impl Init<T, E>, flags: Flags) -> Result<Self, E> where E: From<AllocError>, try_init() argument
[all...]
/linux/tools/perf/arch/powerpc/util/
H A Dmem-events.c6 #define E(t, n, s, l, a) { .tag = t, .name = n, .event_name = s, .ldlat = l, .aux_event = a } macro
/linux/tools/perf/arch/arm64/util/
H A Dmem-events.c6 #define E(t, n, s, l, a) { .tag = t, .name = n, .event_name = s, .ldlat = l, .aux_event = a } macro
/linux/tools/perf/arch/x86/util/
H A Dmem-events.c10 #define E(t, n, s, l, a) { .tag = t, .name = n, .event_name = s, .ldlat = l, .aux_event = a } macro
/linux/tools/testing/selftests/powerpc/benchmarks/
H A Dfutex_bench.c18 #define futex(A, B, C, D, E, F) syscall(__NR_futex, A, B, C, D, E, F) argument
/linux/tools/testing/selftests/cgroup/
H A Dmemcg_protection.m20 E = 50 / 1024; variable
/linux/rust/kernel/list/
H A Darc.rs183 pin_init<E>(init: impl PinInit<T, E>, flags: Flags) -> Result<Self, E> where E: From<AllocError>, pin_init() argument
194 init<E>(init: impl Init<T, E>, flags: Flags) -> Result<Self, E> where E: From<AllocError>, init() argument
/linux/samples/vfs/
H A Dtest-fsmount.c18 #define E(x) do { if ((x) == -1) { perror(#x); exit(1); } } while(0) macro
/linux/lib/crypto/x86/
H A Dsha1-avx2-asm.S101 .set E, REG_E define
321 .set E, D define
H A Dsha1-ssse3-and-avx.S195 .set E, REG_E define
/linux/drivers/gpu/drm/bridge/cadence/
H A Dcdns-mhdp8546-hdcp.h82 u8 E[DLP_E]; member
/linux/drivers/gpu/drm/nouveau/nvkm/engine/gr/
H A Dgm107.c350 int E = -1, X; in gm107_gr_init_bios() local
/linux/tools/perf/util/
H A Dmem-events.c23 #define E(t, n, s, l, a) { .tag = t, .name = n, .event_name = s, .ldlat = l, .aux_event = a } macro

12