Searched defs:Send (Results 1 - 9 of 9) sorted by last modified time

/system/core/fastboot/
H A Dsocket.cpp114 bool Send(const void* data, size_t length) override;
115 bool Send(std::vector<cutils_socket_buffer_t> buffers) override;
135 bool UdpSocket::Send(const void* data, size_t length) { function in class:UdpSocket
141 bool UdpSocket::Send(std::vector<cutils_socket_buffer_t> buffers) { function in class:UdpSocket
172 bool Send(const void* data, size_t length) override;
173 bool Send(std::vector<cutils_socket_buffer_t> buffers) override;
182 bool TcpSocket::Send(const void* data, size_t length) { function in class:TcpSocket
196 bool TcpSocket::Send(std::vector<cutils_socket_buffer_t> buffers) { function in class:TcpSocket
H A Dsocket_mock.cpp41 bool SocketMock::Send(const void* data, size_t length) { function in class:SocketMock
43 ADD_FAILURE() << "Send() was called when no message was expected";
48 ADD_FAILURE() << "Send() was called out-of-order";
54 ADD_FAILURE() << "Send() expected " << events_.front().message << ", but got " << message;
65 bool SocketMock::Send(std::vector<cutils_socket_buffer_t> buffers) { function in class:SocketMock
70 return Send(data.data(), data.size());
/system/core/libmemunreachable/
H A DLeakPipe.h105 bool Send(const T& value) { function in class:LeakPipe::LeakPipeSender
121 if (!Send(size)) {
/system/core/metricsd/uploader/mock/
H A Dsender_mock.cc23 bool SenderMock::Send(const std::string& content, const std::string& hash) { function in class:SenderMock
/system/core/metricsd/uploader/
H A Dsender_http.cc29 bool HttpSender::Send(const std::string& content, function in class:HttpSender
/system/core/trusty/gatekeeper/
H A Dtrusty_gatekeeper.cpp108 gatekeeper_error_t error = Send(request, &response);
140 gatekeeper_error_t error = Send(request, &response);
160 gatekeeper_error_t TrustyGateKeeperDevice::Send(uint32_t command, const GateKeeperMessage& request, function in class:gatekeeper::TrustyGateKeeperDevice
168 // Send it
H A Dtrusty_gatekeeper.h68 gatekeeper_error_t Send(uint32_t command, const GateKeeperMessage& request,
71 gatekeeper_error_t Send(const EnrollRequest& request, EnrollResponse *response) { function in class:gatekeeper::TrustyGateKeeperDevice
72 return Send(GK_ENROLL, request, response);
75 gatekeeper_error_t Send(const VerifyRequest& request, VerifyResponse *response) { function in class:gatekeeper::TrustyGateKeeperDevice
76 return Send(GK_VERIFY, request, response);
/system/connectivity/shill/net/
H A Dsockets.cc139 ssize_t Sockets::Send(int sockfd, function in class:shill::Sockets
/system/connectivity/shill/vpn/
H A Dopenvpn_management_server.cc435 void OpenVPNManagementServer::Send(const string& data) { function in class:shill::OpenVPNManagementServer
437 ssize_t len = sockets_->Send(connected_socket_, data.data(), data.size(), 0);
439 << "Send failed.";
444 Send(StringPrintf("state %s\n", state.c_str()));
450 Send(StringPrintf("username \"%s\" %s\n", tag.c_str(), username.c_str()));
456 Send(StringPrintf("password \"%s\" \"%s\"\n",
463 Send(StringPrintf("signal %s\n", signal.c_str()));
468 Send("hold release\n");

Completed in 196 milliseconds