/frameworks/native/libs/vr/libpdx/private/pdx/ |
D | mock_message_writer.h | 18 MOCK_METHOD1(PushChannelHandle, 20 MOCK_METHOD1(PushChannelHandle, 22 MOCK_METHOD1(PushChannelHandle,
|
D | message_writer.h | 17 virtual Status<ChannelReference> PushChannelHandle( 19 virtual Status<ChannelReference> PushChannelHandle( 21 virtual Status<ChannelReference> PushChannelHandle(
|
D | mock_service_endpoint.h | 52 MOCK_METHOD2(PushChannelHandle, 55 MOCK_METHOD2(PushChannelHandle, 58 MOCK_METHOD2(PushChannelHandle,
|
D | service_endpoint.h | 118 virtual Status<ChannelReference> PushChannelHandle( 120 virtual Status<ChannelReference> PushChannelHandle( 122 virtual Status<ChannelReference> PushChannelHandle(
|
D | utility.h | 167 Status<ChannelReference> PushChannelHandle( 172 Status<ChannelReference> PushChannelHandle( 177 Status<ChannelReference> PushChannelHandle( 307 Status<ChannelReference> PushChannelHandle( 318 Status<ChannelReference> PushChannelHandle( 329 Status<ChannelReference> PushChannelHandle(
|
D | mock_client_channel.h | 41 MOCK_METHOD2(PushChannelHandle, 44 MOCK_METHOD2(PushChannelHandle,
|
D | client_channel.h | 58 virtual ChannelReference PushChannelHandle( 60 virtual ChannelReference PushChannelHandle(
|
D | client.h | 260 Status<ChannelReference> PushChannelHandle( 262 Status<ChannelReference> PushChannelHandle( 264 Status<ChannelReference> PushChannelHandle(
|
D | service.h | 161 Status<ChannelReference> PushChannelHandle( 163 Status<ChannelReference> PushChannelHandle( 165 Status<ChannelReference> PushChannelHandle(
|
/frameworks/native/libs/vr/libpdx/ |
D | client.cpp | 247 Status<ChannelReference> Transaction::PushChannelHandle( in PushChannelHandle() function in android::pdx::Transaction 250 return client_.GetChannel()->PushChannelHandle(state_, handle); in PushChannelHandle() 254 Status<ChannelReference> Transaction::PushChannelHandle( in PushChannelHandle() function in android::pdx::Transaction 257 return client_.GetChannel()->PushChannelHandle(state_, handle); in PushChannelHandle() 261 Status<ChannelReference> Transaction::PushChannelHandle( in PushChannelHandle() function in android::pdx::Transaction
|
D | service.cpp | 181 Status<ChannelReference> Message::PushChannelHandle( in PushChannelHandle() function in android::pdx::Message 185 return svc->endpoint()->PushChannelHandle(this, handle); in PushChannelHandle() 191 Status<ChannelReference> Message::PushChannelHandle( in PushChannelHandle() function in android::pdx::Message 195 return svc->endpoint()->PushChannelHandle(this, handle); in PushChannelHandle() 201 Status<ChannelReference> Message::PushChannelHandle( in PushChannelHandle() function in android::pdx::Message 205 return svc->endpoint()->PushChannelHandle(this, handle); in PushChannelHandle()
|
D | service_tests.cpp | 608 EXPECT_CALL(*endpoint(), PushChannelHandle(message_.get(), in TEST_F() 613 EXPECT_EQ(7, message_->PushChannelHandle(handle).get()); in TEST_F() 614 EXPECT_EQ(EIO, message_->PushChannelHandle(handle).error()); in TEST_F() 623 PushChannelHandle(message_.get(), Matcher<const BorrowedChannelHandle&>( in TEST_F() 627 EXPECT_EQ(8, message_->PushChannelHandle(handle).get()); in TEST_F() 628 EXPECT_EQ(EIO, message_->PushChannelHandle(handle).error()); in TEST_F() 637 PushChannelHandle(message_.get(), Matcher<const RemoteChannelHandle&>( in TEST_F() 641 EXPECT_EQ(kValue, message_->PushChannelHandle(handle).get()); in TEST_F() 642 EXPECT_EQ(EIO, message_->PushChannelHandle(handle).error()); in TEST_F()
|
D | client_tests.cpp | 532 PushChannelHandle(kTransactionState, A<const LocalChannelHandle&>())) in TEST_F() 535 11, transaction_.PushChannelHandle(LocalChannelHandle{nullptr, 1}).get()); in TEST_F() 539 PushChannelHandle(kTransactionState, A<const BorrowedChannelHandle&>())) in TEST_F() 541 EXPECT_EQ(12, transaction_.PushChannelHandle(BorrowedChannelHandle{2}).get()); in TEST_F() 543 EXPECT_EQ(13, transaction_.PushChannelHandle(RemoteChannelHandle{13}).get()); in TEST_F()
|
/frameworks/native/libs/vr/libpdx_uds/ |
D | client_channel.cpp | 53 ChannelReference PushChannelHandle(BorrowedChannelHandle handle) { in PushChannelHandle() function 271 ChannelReference ClientChannel::PushChannelHandle( in PushChannelHandle() function in android::pdx::uds::ClientChannel 274 return state->PushChannelHandle(handle.Borrow()); in PushChannelHandle() 277 ChannelReference ClientChannel::PushChannelHandle( in PushChannelHandle() function in android::pdx::uds::ClientChannel 280 return state->PushChannelHandle(handle.Duplicate()); in PushChannelHandle()
|
D | service_endpoint.cpp | 68 Status<ChannelReference> PushChannelHandle(BorrowedChannelHandle handle) { in PushChannelHandle() function 84 Status<ChannelReference> PushChannelHandle(BorrowedHandle data_fd, in PushChannelHandle() function 448 Status<ChannelReference> ref = state->PushChannelHandle( in PushChannel() 671 auto ref = state->PushChannelHandle(handle.Borrow()); in MessageReplyChannelHandle() 680 auto ref = state->PushChannelHandle(handle.Duplicate()); in MessageReplyChannelHandle() 720 Status<ChannelReference> Endpoint::PushChannelHandle( in PushChannelHandle() function in android::pdx::uds::Endpoint 723 return state->PushChannelHandle(handle.Borrow()); in PushChannelHandle() 726 Status<ChannelReference> Endpoint::PushChannelHandle( in PushChannelHandle() function in android::pdx::uds::Endpoint 729 return state->PushChannelHandle(handle.Duplicate()); in PushChannelHandle() 732 Status<ChannelReference> Endpoint::PushChannelHandle( in PushChannelHandle() function in android::pdx::uds::Endpoint
|
D | ipc_helper.cpp | 266 Status<ChannelReference> SendPayload::PushChannelHandle( in PushChannelHandle() function in android::pdx::uds::SendPayload 270 Status<ChannelReference> SendPayload::PushChannelHandle( in PushChannelHandle() function in android::pdx::uds::SendPayload 274 Status<ChannelReference> SendPayload::PushChannelHandle( in PushChannelHandle() function in android::pdx::uds::SendPayload
|
D | service_framework_tests.cpp | 304 ChannelReference ref = trans.PushChannelHandle(channel).get(); in CheckChannelIdArgument() 313 ChannelReference ref = trans.PushChannelHandle(channel).get(); in CheckChannelObjectArgument() 322 ChannelReference ref = trans.PushChannelHandle(channel).get(); in CheckChannelFromOtherService()
|
/frameworks/native/libs/vr/libpdx/fuzz/ |
D | message_fuzzer.cpp | 103 message.PushChannelHandle(lc_handle); in LLVMFuzzerTestOneInput() 104 message.PushChannelHandle(bc_handle); in LLVMFuzzerTestOneInput() 105 message.PushChannelHandle(rc_handle); in LLVMFuzzerTestOneInput()
|
D | helpers.h | 242 Status<ChannelReference> PushChannelHandle(Message* message, in PushChannelHandle() function 249 Status<ChannelReference> PushChannelHandle( in PushChannelHandle() function 256 Status<ChannelReference> PushChannelHandle( in PushChannelHandle() function
|
/frameworks/native/libs/vr/libpdx_uds/private/uds/ |
D | service_endpoint.h | 71 Status<ChannelReference> PushChannelHandle( 73 Status<ChannelReference> PushChannelHandle( 75 Status<ChannelReference> PushChannelHandle(
|
D | client_channel.h | 71 ChannelReference PushChannelHandle(void* transaction_state, 73 ChannelReference PushChannelHandle(
|
D | ipc_helper.h | 73 Status<ChannelReference> PushChannelHandle( 75 Status<ChannelReference> PushChannelHandle( 77 Status<ChannelReference> PushChannelHandle(
|
/frameworks/native/libs/vr/libpdx/private/pdx/rpc/ |
D | serialization.h | 922 writer->GetOutputResourceMapper()->PushChannelHandle(handle);
|