/frameworks/native/libs/binder/rust/src/ |
D | binder_async.rs | 22 pub type BoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + Send + 'a>>; 52 F1: Send + 'static, in spawn() 53 F2: Send + 'a, in spawn() 54 Fut: Send + 'a, in spawn() 55 A: Send + 'static, in spawn() 56 B: Send + 'a, in spawn()
|
D | proxy.rs | 53 unsafe impl Send for SpIBinder {} 451 unsafe impl Send for WpIBinder {} 560 unsafe impl Send for DeathRecipient {} 572 F: Fn() + Send + Sync + 'static, in new() 635 F: Fn() + Send + Sync + 'static, in binder_died() 651 F: Fn() + Send + Sync + 'static, in cookie_decr_refcount() 665 F: Fn() + Send + Sync + 'static, in cookie_incr_refcount()
|
/frameworks/native/libs/vr/libpdx_uds/ |
D | ipc_helper_tests.cpp | 34 MOCK_METHOD4(Send, ssize_t(int socket_fd, const void* data, size_t size, 51 ON_CALL(sender_, Send(_, _, _, _)) in SendTest() 96 ON_CALL(sender_, Send(_, _, _, _)) in SendMessageTest() 123 EXPECT_CALL(sender_, Send(kSocketFd, IntToConstPtr(kPtr), 100, MSG_NOSIGNAL)) in TEST_F() 131 EXPECT_CALL(sender_, Send(kSocketFd, IntToConstPtr(kPtr), 100, MSG_NOSIGNAL)) in TEST_F() 134 Send(kSocketFd, IntToConstPtr(kPtr + 20), 80, MSG_NOSIGNAL)) in TEST_F() 137 Send(kSocketFd, IntToConstPtr(kPtr + 60), 40, MSG_NOSIGNAL)) in TEST_F() 145 EXPECT_CALL(sender_, Send(kSocketFd, IntToConstPtr(kPtr), 100, MSG_NOSIGNAL)) in TEST_F() 154 EXPECT_CALL(sender_, Send(kSocketFd, IntToConstPtr(kPtr), 100, MSG_NOSIGNAL)) in TEST_F() 163 EXPECT_CALL(sender_, Send(kSocketFd, IntToConstPtr(kPtr), 100, MSG_NOSIGNAL)) in TEST_F() [all …]
|
D | service_framework_tests.cpp | 267 return ReturnStatusOrError(trans.Send<int>(TEST_OP_GET_SERVICE_ID)); in GetServiceId() 273 return ReturnStatusOrError(trans.Send<int>(TEST_OP_SET_TEST_CHANNEL)); in SetTestChannel() 291 return ReturnStatusOrError(trans.Send<int>(TEST_OP_GET_THIS_CHANNEL_ID)); in GetThisChannelId() 297 return ReturnStatusOrError(trans.Send<int>(TEST_OP_GET_TEST_CHANNEL_ID)); in GetTestChannelId() 305 return ReturnStatusOrError(trans.Send<int>(TEST_OP_CHECK_CHANNEL_ID, &ref, in CheckChannelIdArgument() 314 return ReturnStatusOrError(trans.Send<int>(TEST_OP_CHECK_CHANNEL_OBJECT, in CheckChannelObjectArgument() 324 trans.Send<int>(TEST_OP_CHECK_CHANNEL_FROM_OTHER_SERVICE, &ref, in CheckChannelFromOtherService() 331 auto status = trans.Send<LocalChannelHandle>(TEST_OP_GET_NEW_CHANNEL); in GetNewChannel() 341 auto status = trans.Send<LocalChannelHandle>( in GetNewChannelFromOtherService() 352 return ReturnStatusOrError(trans.Send<int>(TEST_OP_GET_THIS_PROCESS_ID)); in GetThisProcessId() [all …]
|
D | ipc_helper.cpp | 30 ssize_t Send(int socket_fd, const void* data, size_t size, in Send() function in android::pdx::uds::__anon5f80d8fe0111::SocketSender 60 RETRY_EINTR(sender->Send(socket_fd.Get(), ptr, size, MSG_NOSIGNAL)); in SendAll() 176 Status<void> SendPayload::Send(const BorrowedHandle& socket_fd) { in Send() function in android::pdx::uds::SendPayload 177 return Send(socket_fd, nullptr); in Send() 180 Status<void> SendPayload::Send(const BorrowedHandle& socket_fd, in Send() function in android::pdx::uds::SendPayload
|
/frameworks/rs/script_api/ |
D | rs_io.spec | 21 <li>Send information to the Java client, and</li> 23 <li>Send the processed allocation or receive the next allocation to process.</li></ul> 45 summary: Send new content to the queue 47 Send the contents of the Allocation to the queue. 59 summary: Send a message to the client, non-blocking 82 summary: Send a message to the client, blocking
|
/frameworks/native/libs/binder/rust/binder_tokio/ |
D | lib.rs | 119 F1: Send + 'static, in spawn() 120 F2: Send + 'a, in spawn() 121 Fut: Send + 'a, in spawn() 122 A: Send + 'static, in spawn() 123 B: Send + 'a, in spawn()
|
/frameworks/rs/script_api/include/ |
D | rs_io.rsh | 23 * - Send information to the Java client, and 24 * - Send the processed allocation or receive the next allocation to process. 48 * rsAllocationIoSend: Send new content to the queue 50 * Send the contents of the Allocation to the queue. 65 * rsSendToClient: Send a message to the client, non-blocking 86 * rsSendToClientBlocking: Send a message to the client, blocking
|
/frameworks/native/libs/binder/rust/rpcbinder/src/server/ |
D | trusty.rs | 23 pub trait PerSessionCallback: Fn(Uuid) -> Option<SpIBinder> + Send + Sync + 'static {} 24 impl<T> PerSessionCallback for T where T: Fn(Uuid) -> Option<SpIBinder> + Send + Sync + 'static {} 32 unsafe impl Send for RpcServer {}
|
D | android.rs | 37 unsafe impl Send for RpcServer {}
|
/frameworks/native/libs/vr/libpdx_uds/private/uds/ |
D | ipc_helper.h | 20 virtual ssize_t Send(int socket_fd, const void* data, size_t size, 61 Status<void> Send(const BorrowedHandle& socket_fd); 62 Status<void> Send(const BorrowedHandle& socket_fd, const ucred* cred, 168 return payload.Send(socket_fd, nullptr, data_vec, vec_count); 178 return payload.Send(socket_fd, &request.cred, data_vec, vec_count);
|
/frameworks/native/services/inputflinger/rust/ |
D | input_filter_thread.rs | 108 pub fn register_thread_callback(&self, callback: Box<dyn ThreadCallback + Send + Sync>) { in register_thread_callback() 116 pub fn unregister_thread_callback(&self, callback: Box<dyn ThreadCallback + Send + Sync>) { in unregister_thread_callback() 222 callbacks: Vec<Box<dyn ThreadCallback + Send + Sync>>, 234 fn register_thread_callback(&self, callback: Box<dyn ThreadCallback + Send + Sync>) { in register_thread_callback() 250 fn unregister_thread_callback(&self, callback: Box<dyn ThreadCallback + Send + Sync>) { in unregister_thread_callback()
|
D | bounce_keys_filter.rs | 42 next: Box<dyn Filter + Send + Sync>, 52 next: Box<dyn Filter + Send + Sync>, in new() 261 next: Box<dyn Filter + Send + Sync>, in setup_filter_with_external_device() 273 next: Box<dyn Filter + Send + Sync>, in setup_filter_with_internal_device() 285 next: Box<dyn Filter + Send + Sync>, in setup_filter_with_devices()
|
D | slow_keys_filter.rs | 42 next: Box<dyn Filter + Send + Sync>, 61 next: Box<dyn Filter + Send + Sync>, in new() 387 next: Box<dyn Filter + Send + Sync>, in setup_filter_with_external_device() 401 next: Box<dyn Filter + Send + Sync>, in setup_filter_with_internal_device() 415 next: Box<dyn Filter + Send + Sync>, in setup_filter_with_devices()
|
/frameworks/native/libs/vr/libpdx/ |
D | client_tests.cpp | 423 EXPECT_TRUE(transaction_.Send<void>(1)); in TEST_F() 427 EXPECT_TRUE(transaction_.Send<LocalHandle>(2)); in TEST_F() 431 EXPECT_TRUE(transaction_.Send<LocalChannelHandle>(3)); in TEST_F() 440 EXPECT_TRUE(transaction_.Send<void>(1)); in TEST_F() 455 EXPECT_TRUE(transaction_.Send<void>(1, nullptr, 0, nullptr, 0)); in TEST_F() 460 EXPECT_TRUE(transaction_.Send<void>(2, kSendBuffer, kSendSize, nullptr, 0)); in TEST_F() 464 EXPECT_TRUE(transaction_.Send<void>(3, kSendBuffer, 0, nullptr, 0)); in TEST_F() 470 transaction_.Send<void>(4, nullptr, 0, kReceiveBuffer, kReceiveSize)); in TEST_F() 474 EXPECT_TRUE(transaction_.Send<void>(5, nullptr, 0, kReceiveBuffer, 0)); in TEST_F() 479 EXPECT_TRUE(transaction_.Send<void>(5, kSendBuffer, kSendSize, kReceiveBuffer, in TEST_F()
|
/frameworks/native/services/vr/virtual_touchpad/ |
D | EvdevInjector.cpp | 230 int EvdevInjector::Send(uint16_t type, uint16_t code, int32_t value) { in Send() function in android::dvr::EvdevInjector 248 int EvdevInjector::SendSynReport() { return Send(EV_SYN, SYN_REPORT, 0); } in SendSynReport() 251 return Send(EV_KEY, code, value); in SendKey() 255 return Send(EV_ABS, code, value); in SendAbs() 259 return Send(EV_REL, code, value); in SendRel()
|
D | EvdevInjector.h | 100 int Send(uint16_t type, uint16_t code, int32_t value);
|
/frameworks/native/libs/bufferstreams/rust/src/buffers/ |
D | buffer_owner.rs | 19 pub trait BufferOwner: Send + Sync {
|
/frameworks/native/libs/vr/libpdx_default_transport/ |
D | pdx_tool.cpp | 56 auto status = trans.Send<void>(android::pdx::opcodes::REPORT_SYSPROP_CHANGE, in Reload() 67 auto status = trans.Send<int>(android::pdx::opcodes::DUMP_STATE, nullptr, 0, in Dump()
|
/frameworks/native/libs/vr/libpdx_default_transport/private/pdx/default_transport/ |
D | service_utility.h | 20 transaction.Send<int>(opcodes::REPORT_SYSPROP_CHANGE)); in ReloadSystemProperties()
|
/frameworks/native/libs/binder/rust/src/parcel/ |
D | parcelable_holder.rs | 92 T: Any + Parcelable + ParcelableMetadata + std::fmt::Debug + Send + Sync, in set_parcelable() 119 T: Any + Parcelable + ParcelableMetadata + Default + std::fmt::Debug + Send + Sync, in get_parcelable()
|
/frameworks/native/libs/vr/libpdx/private/pdx/rpc/ |
D | remote_method.h | 342 return trans.Send<R>(Opcode, payload.Data(), payload.Size(), nullptr, 0); 359 trans.Send<void>(Opcode, send_payload.Data(), send_payload.Size(), 398 auto status = trans.Send<R>(Opcode, send_payload.Data(), 422 trans.Send<void>(Opcode, send_payload.Data(), send_payload.Size(),
|
/frameworks/native/libs/vr/libpdx/private/pdx/ |
D | client.h | 213 Status<T> Send(int opcode) { in Send() function 218 Status<T> Send(int opcode, const void* send_buffer, size_t send_length, in Send() function
|
/frameworks/native/libs/nativewindow/rust/src/ |
D | surface.rs | 128 unsafe impl Send for Surface {}
|
/frameworks/base/packages/CredentialManager/wear/robotests/src/com/android/credentialmanager/ |
D | CredentialSelectorViewModelTest.kt | 196 fun `Send entry selection result closes app and calls client method`() { in Send entry selection result closes app and calls client method() 218 fun `Send entry selection result does not close app on false return`() { in Send entry selection result does not close app on false return()
|