/system/core/trusty/gatekeeper/ |
D | trusty_gatekeeper.h | 73 gatekeeper_error_t Send(uint32_t command, const GateKeeperMessage& request, 76 gatekeeper_error_t Send(const EnrollRequest& request, EnrollResponse *response) { in Send() function 77 return Send(GK_ENROLL, request, response); in Send() 80 gatekeeper_error_t Send(const VerifyRequest& request, VerifyResponse *response) { in Send() function 81 return Send(GK_VERIFY, request, response); in Send()
|
D | trusty_gatekeeper.cpp | 83 auto error = Send(request, &response); in enroll() 117 auto error = Send(request, &response); in verify() 146 gatekeeper_error_t TrustyGateKeeperDevice::Send(uint32_t command, const GateKeeperMessage& request, in Send() function in gatekeeper::TrustyGateKeeperDevice
|
/system/bt/vendor_libs/test_vendor_lib/model/setup/ |
D | phy_layer_factory.cc | 59 void PhyLayerFactory::Send( in Send() function in test_vendor_lib::PhyLayerFactory 73 Send(link_layer_packet_view, id); in Send() 76 void PhyLayerFactory::Send(model::packets::LinkLayerPacketView packet, in Send() function in test_vendor_lib::PhyLayerFactory 122 void PhyLayerImpl::Send( in Send() function in test_vendor_lib::PhyLayerImpl 124 factory_->Send(packet, GetId()); in Send() 127 void PhyLayerImpl::Send(model::packets::LinkLayerPacketView packet) { in Send() function in test_vendor_lib::PhyLayerImpl 128 factory_->Send(packet, GetId()); in Send()
|
D | phy_layer_factory.h | 54 virtual void Send( 57 virtual void Send(model::packets::LinkLayerPacketView packet, uint32_t id); 74 void Send( 76 void Send(model::packets::LinkLayerPacketView packet) override;
|
D | phy_layer.h | 35 virtual void Send( 37 virtual void Send(model::packets::LinkLayerPacketView packet) = 0;
|
/system/core/fastboot/ |
D | socket.cpp | 116 bool Send(const void* data, size_t length) override; 117 bool Send(std::vector<cutils_socket_buffer_t> buffers) override; 137 bool UdpSocket::Send(const void* data, size_t length) { in Send() function in UdpSocket 143 bool UdpSocket::Send(std::vector<cutils_socket_buffer_t> buffers) { in Send() function in UdpSocket 174 bool Send(const void* data, size_t length) override; 175 bool Send(std::vector<cutils_socket_buffer_t> buffers) override; 184 bool TcpSocket::Send(const void* data, size_t length) { in Send() function in TcpSocket 198 bool TcpSocket::Send(std::vector<cutils_socket_buffer_t> buffers) { in Send() function in TcpSocket
|
D | socket_mock.h | 58 bool Send(const void* data, size_t length) override; 59 bool Send(std::vector<cutils_socket_buffer_t> buffers) override;
|
D | socket.h | 71 virtual bool Send(const void* data, size_t length) = 0; 80 virtual bool Send(std::vector<cutils_socket_buffer_t> buffers) = 0;
|
D | socket_mock.cpp | 41 bool SocketMock::Send(const void* data, size_t length) { in Send() function in SocketMock 65 bool SocketMock::Send(std::vector<cutils_socket_buffer_t> buffers) { in Send() function in SocketMock 70 return Send(data.data(), data.size()); in Send()
|
D | socket_test.cpp | 65 return sock->Send(message.c_str(), message.length()); in SendString() 196 EXPECT_TRUE(sock->Send(buffers)); in TEST() 199 EXPECT_FALSE(sock->Send(buffers)); in TEST() 202 EXPECT_FALSE(sock->Send(buffers)); in TEST() 205 EXPECT_FALSE(sock->Send(buffers)); in TEST() 278 EXPECT_EQ(expect_success, sock->Send(buffers)); in TEST()
|
D | tcp.cpp | 97 if (!socket_->Send(handshake_message.c_str(), kHandshakeLength)) { in InitializeProtocol() 164 if (!socket_->Send(std::vector<cutils_socket_buffer_t>{{header, 8}, {data, length}})) { in Write()
|
/system/bt/vendor_libs/test_vendor_lib/model/devices/ |
D | device.cc | 62 phy->Send(to_send); in SendLinkLayerPacket() 69 phy->Send(to_send); in SendLinkLayerPacket()
|
D | beacon.cc | 74 phy->Send(to_send); in TimerTick() 91 phy->Send(to_send); in IncomingPacket()
|
D | hci_protocol.h | 34 virtual size_t Send(uint8_t type, const uint8_t* data, size_t length) = 0;
|
D | h4_protocol.h | 30 size_t Send(uint8_t type, const uint8_t* data, size_t length);
|
D | h4_packetizer.h | 36 size_t Send(uint8_t type, const uint8_t* data, size_t length);
|
D | loopback.cc | 85 phy->Send(to_send); in IncomingPacket()
|
/system/bt/vendor_libs/test_vendor_lib/test/ |
D | polled_socket_test.cc | 63 client_.Send(tx_buf); in TEST_F() 65 client_.Send(tx_buf); in TEST_F()
|
/system/bt/gd/common/ |
D | bidi_queue_unittest.cc | 68 std::promise<void>* Send(TA* value) { in Send() function in bluetooth::common::__anon3d9865f90111::TestBidiQueueEnd 125 auto promise_sending_b = test_up.Send(sending_b); in TEST_F() 133 auto promise_sending_a = test_down.Send(sending_a); in TEST_F()
|
/system/iorap/src/binder/ |
D | iiorap_impl.cc | 42 Status Send(const char* function_name, Args&& ... args); 53 return Send(#name, impl_.get(), IIORAP_IMPL_ARG_NAMES(__VA_ARGS__)); \ 263 Status Send(const char* function_name, Args&&... args) { in Send() function
|
/system/core/fastboot/device/ |
D | tcp_client.cpp | 111 if (!socket_->Send(std::vector<cutils_socket_buffer_t>{{header, 8}, {data, len}})) { in Write() 168 if (!socket_->Send(handshake_message.c_str(), kHandshakeLength)) { in ListenFastbootSocket()
|
/system/memory/libmemunreachable/ |
D | LeakPipe.h | 101 bool Send(const T& value) { in Send() function 117 if (!Send(size)) { in SendVector()
|
/system/bt/vendor_libs/linux/interface/ |
D | h4_protocol.h | 44 size_t Send(uint8_t type, const uint8_t* data, size_t length);
|
D | h4_protocol.cc | 31 size_t H4Protocol::Send(uint8_t type, const uint8_t* data, size_t length) { in Send() function in android::hardware::bluetooth::hci::H4Protocol
|
/system/sepolicy/prebuilts/api/26.0/public/ |
D | lmkd.te | 24 # Send kill signals
|