Home
last modified time | relevance | path

Searched refs:channel_ (Results 1 – 13 of 13) sorted by relevance

/device/google/cuttlefish/host/commands/secure_env/
Dkeymaster_responder.cpp25 : channel_(channel), keymaster_(keymaster) {} in KeymasterResponder()
28 auto request = channel_.ReceiveMessage(); in ProcessMessage()
46 return channel_.SendResponse(ENUM_NAME, response); \ in ProcessMessage()
82 return channel_.SendResponse(ENUM_NAME, response); \ in ProcessMessage()
100 return channel_.SendResponse(ENUM_NAME, response); \ in ProcessMessage()
116 return channel_.SendResponse(ADD_RNG_ENTROPY, response); in ProcessMessage()
Dgatekeeper_responder.cpp25 : channel_(channel), gatekeeper_(gatekeeper) {} in GatekeeperResponder()
28 auto request = channel_.ReceiveMessage(); in ProcessMessage()
46 return channel_.SendResponse(ENROLL, response); in ProcessMessage()
57 return channel_.SendResponse(VERIFY, response); in ProcessMessage()
Dkeymaster_responder.h26 cuttlefish::KeymasterChannel& channel_;
Dgatekeeper_responder.h26 cuttlefish::GatekeeperChannel& channel_;
/device/google/cuttlefish/guest/hals/oemlock/remote/
Dremote_oemlock.cpp42 OemLock::OemLock(transport::Channel& channel) : channel_(channel) {} in OemLock()
72 CF_EXPECT(channel_.SendRequest(*message), in requestValue()
74 auto response = CF_EXPECT(channel_.ReceiveMessage(), in requestValue()
86 CF_EXPECT(channel_.SendRequest(*message), in setValue()
88 auto response = CF_EXPECT(channel_.ReceiveMessage(), in setValue()
Dremote_oemlock.h46 transport::Channel& channel_;
/device/google/cuttlefish/common/libs/security/
Dgatekeeper_channel_sharedfd.cpp26 : channel_(transport::SharedFdChannel(std::move(input), std::move(output))) {} in SharedFdGatekeeperChannel()
51 auto result = is_response ? channel_.SendResponse(*to_send) : channel_.SendRequest(*to_send); in SendMessage()
60 auto result = channel_.ReceiveMessage(); in ReceiveMessage()
Dgatekeeper_channel_sharedfd.h41 transport::SharedFdChannel channel_;
/device/google/cuttlefish/host/commands/secure_env/oemlock/
Doemlock_responder.cpp25 : channel_(channel), oemlock_(oemlock), lock_(lock) {} in OemLockResponder()
28 CF_EXPECT(channel_.WaitForMessage(), "Could not receive message"); in ProcessMessage()
34 CF_EXPECT(channel_.ReceiveMessage(), "Could not receive message"); in ProcessMessage()
85 CF_EXPECT(channel_.SendResponse(*message), in ProcessMessage()
Doemlock_responder.h35 transport::Channel& channel_;
/device/google/cuttlefish/host/frontend/webrtc/libdevice/
Ddata_channels.cpp368 : channel_(channel), observer_(observer) { in DataChannelHandlerImpl()
371 ~DataChannelHandlerImpl() override { channel_->UnregisterObserver(); } in ~DataChannelHandlerImpl()
376 return channel_; in channel()
381 rtc::scoped_refptr<webrtc::DataChannelInterface> channel_; member in cuttlefish::webrtc_streaming::__anon1329cd320311::DataChannelHandlerImpl
/device/google/cuttlefish/guest/hals/keymint/remote/
Dremote_keymaster.cpp29 : channel_(channel), message_version_(message_version) {} in RemoteKeymaster()
36 if (!channel_->SendRequest(command, req)) { in ForwardCommand()
41 auto response = channel_->ReceiveMessage(); in ForwardCommand()
Dremote_keymaster.h28 cuttlefish::SharedFdKeymasterChannel* channel_;