HomeSort by relevance Sort by last modified time
    Searched refs:GetChannelHandle (Results 1 - 25 of 27) sorted by null

1 2

  /frameworks/native/libs/vr/libpdx/private/pdx/
message_reader.h 15 virtual bool GetChannelHandle(ChannelReference ref,
mock_message_reader.h 13 MOCK_METHOD2(GetChannelHandle,
client_channel.h 35 virtual LocalChannelHandle& GetChannelHandle() = 0;
36 virtual const LocalChannelHandle& GetChannelHandle() const = 0;
64 virtual bool GetChannelHandle(void* transaction_state, ChannelReference ref,
mock_client_channel.h 16 MOCK_METHOD0(GetChannelHandle, LocalChannelHandle&());
17 MOCK_CONST_METHOD0(GetChannelHandle, const LocalChannelHandle&());
50 MOCK_CONST_METHOD3(GetChannelHandle,
client.h 51 LocalChannelHandle& GetChannelHandle();
52 const LocalChannelHandle& GetChannelHandle() const;
269 bool GetChannelHandle(ChannelReference ref,
mock_service_endpoint.h 63 MOCK_CONST_METHOD2(GetChannelHandle,
service_endpoint.h 129 virtual LocalChannelHandle GetChannelHandle(Message* message,
service.h 161 bool GetChannelHandle(ChannelReference ref,
utility.h 190 bool GetChannelHandle(ChannelReference ref,
  /frameworks/native/libs/vr/libpdx_uds/private/uds/
client_channel.h 43 LocalChannelHandle& GetChannelHandle() override { return channel_handle_; }
44 const LocalChannelHandle& GetChannelHandle() const override {
77 bool GetChannelHandle(void* transaction_state, ChannelReference ref,
ipc_helper.h 99 bool GetChannelHandle(ChannelReference ref,
service_endpoint.h 78 LocalChannelHandle GetChannelHandle(Message* message,
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
sendrecv_ops.cc 47 OP_REQUIRES_OK(ctx, compiler->GetChannelHandle(tensor_name_, &channel));
78 OP_REQUIRES_OK(ctx, compiler->GetChannelHandle(tensor_name_, &channel));
  /frameworks/native/libs/vr/libpdx/
client.cpp 118 LocalChannelHandle& Client::GetChannelHandle() {
119 return channel_->GetChannelHandle();
122 const LocalChannelHandle& Client::GetChannelHandle() const {
123 return channel_->GetChannelHandle();
271 bool Transaction::GetChannelHandle(ChannelReference ref,
274 client_.GetChannel()->GetChannelHandle(state_, ref, handle);
service_tests.cpp 673 TEST_F(ServiceMessageTest, GetChannelHandle) {
678 EXPECT_CALL(*endpoint(), GetChannelHandle(message_.get(), _))
682 EXPECT_TRUE(message_->GetChannelHandle(kRef, &handle));
690 EXPECT_TRUE(message_->GetChannelHandle(kRef, &handle));
696 EXPECT_CALL(*endpoint(), GetChannelHandle(message_.get(), _))
702 EXPECT_FALSE(message_->GetChannelHandle(kRef, &handle));
service.cpp 227 bool Message::GetChannelHandle(ChannelReference ref,
229 PDX_TRACE_NAME("Message::GetChannelHandle");
235 *handle = svc->endpoint()->GetChannelHandle(this, ref);
client_tests.cpp 560 EXPECT_CALL(*mock_channel(), GetChannelHandle(kTransactionState, 2, _))
565 EXPECT_FALSE(transaction_.GetChannelHandle(2, &channel_handle));
566 EXPECT_TRUE(transaction_.GetChannelHandle(2, &channel_handle));
  /external/tensorflow/tensorflow/compiler/tf2xla/
xla_compiler.h 297 Status GetChannelHandle(const string& key, xla::ChannelHandle* channel);
xla_compiler.cc 682 Status XlaCompiler::GetChannelHandle(const string& key,
  /frameworks/native/libs/vr/libvrflinger/
display_surface.cpp 242 return std::move(producer->GetChannelHandle());
314 return std::move(producer->GetChannelHandle());
  /frameworks/native/libs/vr/libbufferhub/
buffer_hub_client.cpp 31 return IsConnected() && GetChannelHandle().valid();
36 return std::move(GetChannelHandle());
  /frameworks/native/libs/vr/libpdx_uds/
client_channel.cpp 289 bool ClientChannel::GetChannelHandle(void* transaction_state,
ipc_helper.cpp 363 bool ReceivePayload::GetChannelHandle(ChannelReference /*ref*/,
service_endpoint.cpp 741 LocalChannelHandle Endpoint::GetChannelHandle(Message* message,
  /frameworks/native/libs/vr/libpdx/private/pdx/rpc/
serialization.h     [all...]

Completed in 496 milliseconds

1 2