Home
last modified time | relevance | path

Searched defs:Send (Results 1 – 25 of 646) sorted by relevance

12345678910>>...26

/aosp_15_r20/external/rust/android-crates-io/crates/rayon/src/iter/
Dmod.rs377 OP: Fn(Self::Item) + Sync + Send, in for_each()
407 OP: Fn(&mut T, Self::Item) + Sync + Send, in for_each_with()
441 OP: Fn(&mut T, Self::Item) + Sync + Send, in for_each_init()
442 INIT: Fn() -> T + Sync + Send, in for_each_init()
469 OP: Fn(Self::Item) -> R + Sync + Send, in try_for_each()
508 OP: Fn(&mut T, Self::Item) -> R + Sync + Send, in try_for_each_with()
550 OP: Fn(&mut T, Self::Item) -> R + Sync + Send, in try_for_each_init()
551 INIT: Fn() -> T + Sync + Send, in try_for_each_init()
596 F: Fn(Self::Item) -> R + Sync + Send, in map()
597 R: Send, in map()
[all …]
Dunzip.rs66 A: Send, in unzip()
67 B: Send, in unzip()
80 A: Send, in unzip_indexed()
81 B: Send, in unzip_indexed()
120 P: Fn(&I::Item) -> bool + Sync + Send, in partition()
160 P: Fn(I::Item) -> Either<L, R> + Sync + Send, in partition_map()
161 L: Send, in partition_map()
162 R: Send, in partition_map()
/aosp_15_r20/external/rust/crates/openssl/src/ssl/
Dcallbacks.rs39 F: Fn(bool, &mut X509StoreContextRef) -> bool + 'static + Sync + Send, in raw_verify()
70 + 'static in raw_client_psk()
110 + 'static in raw_server_psk()
145 F: Fn(bool, &mut X509StoreContextRef) -> bool + 'static + Sync + Send, in ssl_raw_verify()
165 F: Fn(&mut SslRef, &mut SslAlert) -> Result<(), SniError> + 'static + Sync + Send, in raw_sni()
191 F: for<'a> Fn(&mut SslRef, &'a [u8]) -> Result<&'a [u8], AlpnError> + 'static + Sync + Send, in raw_alpn_select()
219 F: Fn(&mut SslRef, bool, u32) -> Result<Dh<Params>, ErrorStack> + 'static + Sync + Send, in raw_tmp_dh()
247 F: Fn(&mut SslRef, bool, u32) -> Result<EcKey<Params>, ErrorStack> + 'static + Sync + Send, in raw_tmp_ecdh()
274 F: Fn(&mut SslRef, bool, u32) -> Result<Dh<Params>, ErrorStack> + 'static + Sync + Send, in raw_tmp_dh_ssl()
302 F: Fn(&mut SslRef, bool, u32) -> Result<EcKey<Params>, ErrorStack> + 'static + Sync + Send, in raw_tmp_ecdh_ssl()
[all …]
Dmod.rs764 F: Fn(bool, &mut X509StoreContextRef) -> bool + 'static + Sync + Send, in set_verify_callback()
783 F: Fn(&mut SslRef, &mut SslAlert) -> Result<(), SniError> + 'static + Sync + Send, in set_servername_callback()
874 F: Fn(&mut SslRef, bool, u32) -> Result<Dh<Params>, ErrorStack> + 'static + Sync + Send, in set_tmp_dh_callback()
905 F: Fn(&mut SslRef, bool, u32) -> Result<EcKey<Params>, ErrorStack> + 'static + Sync + Send, in set_tmp_ecdh_callback()
1278 F: for<'a> Fn(&mut SslRef, &'a [u8]) -> Result<&'a [u8], AlpnError> + 'static + Sync + Send, in set_alpn_select_callback()
1348 F: Fn(&mut SslRef) -> Result<bool, ErrorStack> + 'static + Sync + Send, in set_status_callback()
1370 + 'static in set_psk_client_callback()
1385 + 'static in set_psk_callback()
1402 + 'static in set_psk_server_callback()
1428 F: Fn(&mut SslRef, SslSession) + 'static + Sync + Send, in set_new_session_callback()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/rayon-core/src/join/
Dmod.rs95 A: FnOnce() -> RA + Send, in join()
96 B: FnOnce() -> RB + Send, in join()
97 RA: Send, in join()
98 RB: Send, in join()
117 A: FnOnce(FnContext) -> RA + Send, in join_context()
118 B: FnOnce(FnContext) -> RB + Send, in join_context()
119 RA: Send, in join_context()
120 RB: Send, in join_context()
184 err: Box<dyn Any + Send>, in join_recover_from_panic()
/aosp_15_r20/external/rust/android-crates-io/crates/rayon-core/src/thread_pool/
Dmod.rs144 OP: FnOnce() -> R + Send, in install()
145 R: Send, in install()
195 R: Send, in broadcast()
275 A: FnOnce() -> RA + Send, in join()
276 B: FnOnce() -> RB + Send, in join()
277 RA: Send, in join()
278 RB: Send, in join()
291 OP: FnOnce(&Scope<'scope>) -> R + Send, in scope()
292 R: Send, in scope()
306 OP: FnOnce(&ScopeFifo<'scope>) -> R + Send, in scope_fifo()
[all …]
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/std/src/
H A Dpanicking.rs78 fn into_box(self) -> Box<dyn Fn(&PanicInfo<'_>) + 'static + Sync + Send> { in into_box()
132 pub fn set_hook(hook: Box<dyn Fn(&PanicInfo<'_>) + 'static + Sync + Send>) { in set_hook()
628 fn take_box(&mut self) -> *mut (dyn Any + Send) { in begin_panic_handler()
636 fn get(&mut self) -> &(dyn Any + Send) { in begin_panic_handler()
644 fn take_box(&mut self) -> *mut (dyn Any + Send) { in begin_panic_handler()
648 fn get(&mut self) -> &(dyn Any + Send) { in begin_panic_handler()
717 fn take_box(&mut self) -> *mut (dyn Any + Send) { in begin_panic()
730 fn get(&mut self) -> &(dyn Any + Send) { in begin_panic()
826 pub fn rust_panic_without_hook(payload: Box<dyn Any + Send>) -> ! { in rust_panic_without_hook()
832 fn take_box(&mut self) -> *mut (dyn Any + Send) { in rust_panic_without_hook()
[all …]
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/std/src/
H A Dpanicking.rs78 fn into_box(self) -> Box<dyn Fn(&PanicInfo<'_>) + 'static + Sync + Send> { in into_box()
132 pub fn set_hook(hook: Box<dyn Fn(&PanicInfo<'_>) + 'static + Sync + Send>) { in set_hook()
628 fn take_box(&mut self) -> *mut (dyn Any + Send) { in begin_panic_handler()
636 fn get(&mut self) -> &(dyn Any + Send) { in begin_panic_handler()
644 fn take_box(&mut self) -> *mut (dyn Any + Send) { in begin_panic_handler()
648 fn get(&mut self) -> &(dyn Any + Send) { in begin_panic_handler()
717 fn take_box(&mut self) -> *mut (dyn Any + Send) { in begin_panic()
730 fn get(&mut self) -> &(dyn Any + Send) { in begin_panic()
826 pub fn rust_panic_without_hook(payload: Box<dyn Any + Send>) -> ! { in rust_panic_without_hook()
832 fn take_box(&mut self) -> *mut (dyn Any + Send) { in rust_panic_without_hook()
[all …]
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/std/src/
H A Dpanicking.rs78 fn into_box(self) -> Box<dyn Fn(&PanicHookInfo<'_>) + 'static + Sync + Send> { in into_box()
132 pub fn set_hook(hook: Box<dyn Fn(&PanicHookInfo<'_>) + 'static + Sync + Send>) { in set_hook()
621 fn take_box(&mut self) -> *mut (dyn Any + Send) { in begin_panic_handler()
629 fn get(&mut self) -> &(dyn Any + Send) { in begin_panic_handler()
647 fn take_box(&mut self) -> *mut (dyn Any + Send) { in begin_panic_handler()
651 fn get(&mut self) -> &(dyn Any + Send) { in begin_panic_handler()
709 fn take_box(&mut self) -> *mut (dyn Any + Send) { in begin_panic()
722 fn get(&mut self) -> &(dyn Any + Send) { in begin_panic()
834 pub fn rust_panic_without_hook(payload: Box<dyn Any + Send>) -> ! { in rust_panic_without_hook()
840 fn take_box(&mut self) -> *mut (dyn Any + Send) { in rust_panic_without_hook()
[all …]
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/std/src/
H A Dpanicking.rs78 fn into_box(self) -> Box<dyn Fn(&PanicHookInfo<'_>) + 'static + Sync + Send> { in into_box()
132 pub fn set_hook(hook: Box<dyn Fn(&PanicHookInfo<'_>) + 'static + Sync + Send>) { in set_hook()
621 fn take_box(&mut self) -> *mut (dyn Any + Send) { in begin_panic_handler()
629 fn get(&mut self) -> &(dyn Any + Send) { in begin_panic_handler()
647 fn take_box(&mut self) -> *mut (dyn Any + Send) { in begin_panic_handler()
651 fn get(&mut self) -> &(dyn Any + Send) { in begin_panic_handler()
709 fn take_box(&mut self) -> *mut (dyn Any + Send) { in begin_panic()
722 fn get(&mut self) -> &(dyn Any + Send) { in begin_panic()
834 pub fn rust_panic_without_hook(payload: Box<dyn Any + Send>) -> ! { in rust_panic_without_hook()
840 fn take_box(&mut self) -> *mut (dyn Any + Send) { in rust_panic_without_hook()
[all …]
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/std/src/
H A Dpanicking.rs78 fn into_box(self) -> Box<dyn Fn(&PanicHookInfo<'_>) + 'static + Sync + Send> { in into_box()
132 pub fn set_hook(hook: Box<dyn Fn(&PanicHookInfo<'_>) + 'static + Sync + Send>) { in set_hook()
621 fn take_box(&mut self) -> *mut (dyn Any + Send) { in begin_panic_handler()
629 fn get(&mut self) -> &(dyn Any + Send) { in begin_panic_handler()
647 fn take_box(&mut self) -> *mut (dyn Any + Send) { in begin_panic_handler()
651 fn get(&mut self) -> &(dyn Any + Send) { in begin_panic_handler()
709 fn take_box(&mut self) -> *mut (dyn Any + Send) { in begin_panic()
722 fn get(&mut self) -> &(dyn Any + Send) { in begin_panic()
834 pub fn rust_panic_without_hook(payload: Box<dyn Any + Send>) -> ! { in rust_panic_without_hook()
840 fn take_box(&mut self) -> *mut (dyn Any + Send) { in rust_panic_without_hook()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/opencensus-proto/gen-go/agent/trace/v1/
Dtrace_service_grpc.pb.go47 Send(*CurrentLibraryConfig) error methodSpec
56 func (x *traceServiceConfigClient) Send(m *CurrentLibraryConfig) error { func
78 Send(*ExportTraceServiceRequest) error methodSpec
87 func (x *traceServiceExportClient) Send(m *ExportTraceServiceRequest) error { func
134 Send(*UpdatedLibraryConfig) error methodSpec
143 func (x *traceServiceConfigServer) Send(m *UpdatedLibraryConfig) error { func
160 Send(*ExportTraceServiceResponse) error methodSpec
169 func (x *traceServiceExportServer) Send(m *ExportTraceServiceResponse) error { func
/aosp_15_r20/external/rust/android-crates-io/crates/futures-util/src/sink/
Dsend.rs11 pub struct Send<'a, Si: ?Sized, Item> { struct
16 impl<Si: Unpin + ?Sized, Item> Unpin for Send<'_, Si, Item> {} argument
18 impl<'a, Si: Sink<Item> + Unpin + ?Sized, Item> Send<'a, Si, Item> { implementation
24 impl<Si: Sink<Item> + Unpin + ?Sized, Item> Future for Send<'_, Si, Item> { implementation
/aosp_15_r20/external/flatbuffers/tests/MyGame/Example/
H A DMonsterStorage_grpc.go89 Send(*flatbuffers.Builder) error methodSpec
98 func (x *monsterStorageGetMaxHitPointClient) Send(m *flatbuffers.Builder) error { func
124 Send(*flatbuffers.Builder) error methodSpec
133 func (x *monsterStorageGetMinMaxHitPointsClient) Send(m *flatbuffers.Builder) error { func
211 Send(*flatbuffers.Builder) error methodSpec
219 func (x *monsterStorageRetrieveServer) Send(m *flatbuffers.Builder) error { func
254 Send(*flatbuffers.Builder) error methodSpec
263 func (x *monsterStorageGetMinMaxHitPointsServer) Send(m *flatbuffers.Builder) error { func
/aosp_15_r20/external/rust/android-crates-io/crates/tonic/src/transport/service/
Dconnection.rs35 C::Error: Into<crate::Error> + Send, in new()
36 C::Future: Unpin + Send, in new()
84 C::Error: Into<crate::Error> + Send, in connect()
85 C::Future: Unpin + Send, in connect()
94 C::Error: Into<crate::Error> + Send, in lazy()
95 C::Future: Unpin + Send, in lazy()
/aosp_15_r20/external/rust/android-crates-io/crates/h2/src/proto/streams/
Dsend.rs18 pub(super) struct Send { struct
20 next_stream_id: Result<StreamId, StreamIdOverflow>,
50 impl Send { implementation
/aosp_15_r20/external/crosvm/devices/src/virtio/console/sys/
H A Dlinux.rs36 output: Option<Box<dyn io::Write + Send>>, in new()
38 _sync: Option<Box<dyn FileSync + Send>>, in new()
57 output: Option<Box<dyn io::Write + Send>>, in new()
58 _sync: Option<Box<dyn FileSync + Send>>, in new()
76 output: Option<Box<dyn io::Write + Send>>, in new()
78 _sync: Option<Box<dyn FileSync + Send>>, in new()
/aosp_15_r20/packages/modules/Bluetooth/system/gd/rust/linux/mgmt/src/
Dservice_watcher.rs103 on_available: Box<dyn Fn() + Send>, in monitor_name_owner_changed()
104 on_unavailable: Box<dyn Fn() + Send>, in monitor_name_owner_changed()
151 on_available: Box<dyn Fn() + Send>, in start_watch()
152 on_unavailable: Box<dyn Fn() + Send>, in start_watch()
178 on_available: Box<dyn Fn(dbus::Path<'static>) + Send>, in start_watch_interface()
179 on_unavailable: Box<dyn Fn() + Send>, in start_watch_interface()
/aosp_15_r20/external/rust/android-crates-io/crates/tokio/src/task/
Djoin_set.rs136 T: Send, in spawn()
155 T: Send, in spawn_on()
244 T: Send, in spawn_blocking()
259 T: Send, in spawn_blocking_on()
667 T: Send, in spawn()
687 T: Send, in spawn_on()
710 T: Send, in spawn_blocking()
730 T: Send, in spawn_blocking_on()
/aosp_15_r20/external/rust/android-crates-io/crates/rayon/src/iter/collect/
Dmod.rs16 T: Send, in collect_into_vec()
37 T: Send, in special_extend()
48 A: Send, in unzip_into_vecs()
49 B: Send, in unzip_into_vecs()
75 fn collect_with_consumer<T, F>(vec: &mut Vec<T>, len: usize, scope_fn: F) in collect_with_consumer()
/aosp_15_r20/system/core/trusty/gatekeeper/
H A Dtrusty_gatekeeper.h86 gatekeeper_error_t Send(const EnrollRequest& request, EnrollResponse* response) { in Send() function
90 gatekeeper_error_t Send(const VerifyRequest& request, VerifyResponse* response) { in Send() function
94 gatekeeper_error_t Send(const DeleteUserRequest& request, DeleteUserResponse* response) { in Send() function
98 gatekeeper_error_t Send(const DeleteAllUsersRequest& request, in Send() function
/aosp_15_r20/external/rust/android-crates-io/crates/arc-swap/benches/
Dint-access.rs20 R: Fn() -> usize + Sync + Send, in test_run()
21 W: Fn(usize) + Sync + Send, in test_run()
56 R: Fn() -> usize + Sync + Send, in test_round()
57 W: Fn(usize) + Sync + Send, in test_round()
/aosp_15_r20/external/rust/crates/openssl/src/
Dmacros.rs158 unsafe impl Send for $owned{} impl
159 unsafe impl Send for $borrowed{} impl
265 unsafe impl<T> Send for $owned<T>{} impl
266 unsafe impl<T> Send for $borrowed<T>{} impl
/aosp_15_r20/external/cronet/base/
H A Dsync_socket_nacl.cc28 size_t SyncSocket::Send(span<const uint8_t> data) { in Send() function in base::SyncSocket
33 size_t SyncSocket::Send(const void* buffer, size_t length) { in Send() function in base::SyncSocket
75 size_t CancelableSyncSocket::Send(span<const uint8_t> data) { in Send() function in base::CancelableSyncSocket
79 size_t CancelableSyncSocket::Send(const void* buffer, size_t length) { in Send() function in base::CancelableSyncSocket
/aosp_15_r20/external/rust/android-crates-io/crates/async-stream/src/
Dyielder.rs47 struct Send<T> { struct
51 impl<T> Unpin for Send<T> {} implementation
53 impl<T> Future for Send<T> { implementation

12345678910>>...26