/frameworks/native/libs/binder/rust/src/ |
D | binder_async.rs | 22 pub type BoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + Send + 'a>>; 49 F1: Send + 'static, in spawn() 50 F2: Send + 'a, in spawn() 51 Fut: Send + 'a, in spawn() 52 A: Send + 'static, in spawn() 53 B: Send + 'a, in spawn()
|
D | proxy.rs | 54 unsafe impl Send for SpIBinder {} 464 unsafe impl Send for WpIBinder {} 583 unsafe impl Send for DeathRecipient {} 597 F: Fn() + Send + Sync + 'static, in new() 654 F: Fn() + Send + Sync + 'static, in binder_died() 669 F: Fn() + Send + Sync + 'static, in cookie_decr_refcount() 682 F: Fn() + Send + Sync + 'static, in cookie_incr_refcount()
|
D | binder.rs | 54 pub trait Interface: Send + Sync { 151 pub trait Remotable: Send + Sync { 885 pub struct $native(Box<dyn $interface + Sync + Send + 'static>); 889 …pub fn new_binder<T: $interface + Sync + Send + 'static>(inner: T, features: $crate::BinderFeature…
|
D | native.rs | 54 unsafe impl<T: Remotable> Send for Binder<T> {}
|
D | error.rs | 105 unsafe impl Send for Status {}
|
/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::__anona17b7caa0111::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/vr/libvrsensor/ |
D | pose_client.cpp | 101 Status<int> status = trans.Send<int>(DVR_POSE_LOG_CONTROLLER, &enable, in LogController() 114 Status<int> status = trans.Send<int>(DVR_POSE_FREEZE, &frozen_state, in Freeze() 125 trans.Send<int>(DVR_POSE_SET_MODE, &mode, sizeof(mode), nullptr, 0); in SetMode() 136 trans.Send<int>(DVR_POSE_GET_MODE, nullptr, 0, &mode, sizeof(mode)); in GetMode() 147 Status<LocalChannelHandle> status = trans.Send<LocalChannelHandle>( in GetTangoReaderHandle() 165 Status<int> status = trans.Send<int>(DVR_POSE_DATA_CAPTURE, request, in DataCapture() 174 Status<int> status = trans.Send<int>(DVR_POSE_TANGO_READER_DESTROY, in DataReaderDestroy() 185 Status<int> status = trans.Send<int>(DVR_POSE_SENSORS_ENABLE, &enabled, in EnableSensors() 217 Status<LocalChannelHandle> status = trans.Send<LocalChannelHandle>( in GetControllerRingBuffer()
|
/frameworks/native/libs/binder/rust/binder_tokio/ |
D | lib.rs | 92 F1: Send + 'static, in spawn() 93 F2: Send + 'a, in spawn() 94 Fut: Send + 'a, in spawn() 95 A: Send + 'static, in spawn() 96 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/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/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/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()
|
D | pdx_benchmarks.cpp | 414 return ReturnStatusOrError(transaction.Send<int>(BenchmarkOps::Nop)); in Nop() 423 transaction.Send<int>(BenchmarkOps::Write, buffer, length, nullptr, 0)); in Write() 433 transaction.Send<int>(BenchmarkOps::Read, nullptr, 0, buffer, length)); in Read() 446 transaction.Send<int>(BenchmarkOps::Echo, send_buffer, send_length, in Echo() 489 return ReturnStatusOrError(transaction.Send<int>(BenchmarkOps::Echo)); in Quit()
|
/frameworks/native/libs/binder/rust/src/parcel/ |
D | parcelable_holder.rs | 98 T: Any + Parcelable + ParcelableMetadata + std::fmt::Debug + Send + Sync, in set_parcelable() 127 T: Any + Parcelable + ParcelableMetadata + Default + std::fmt::Debug + Send + Sync, in get_parcelable()
|
/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/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/base/cmds/hid/ |
D | README.md | 103 Send a report to the HID device 123 2. Send button down event with coordinates ABS_X, ABS_Y, ABS_Z, and ABS_RZ 127 3. Send the button up event with the same coordinates as in 2.
|
/frameworks/base/services/core/java/com/android/server/hdmi/ |
D | cec_key_handling.md | 16 | Volume keys | Handle on device or send to soundbar | Send to TV or soundbar …
|
/frameworks/base/cmds/uinput/ |
D | README.md | 128 Send an array of uinput event packets [type, code, value] to the uinput device
|