Lines Matching refs:SocketConnection
230 class SocketConnection { class
232 SocketConnection() = default;
233 SocketConnection(int socket, const ucred& cred) : socket_(socket), cred_(cred) {} in SocketConnection() function in android::init::SocketConnection
234 SocketConnection(SocketConnection&&) = default;
293 SocketConnection& operator=(SocketConnection&&) = default;
365 DISALLOW_COPY_AND_ASSIGN(SocketConnection);
371 void Write(std::string name, std::string value, SocketConnection socket);
380 std::deque<std::tuple<std::string, std::string, SocketConnection>> work_;
384 SocketConnection* socket, std::string* error) { in PropertySet()
438 SocketConnection* socket, std::string* error) { in SendControlMessage()
531 SocketConnection* socket, std::string* error) { in HandlePropertySet()
598 SocketConnection socket(s, cr); in handle_property_set_fd()
1452 std::tuple<std::string, std::string, SocketConnection> item; in Work()
1472 SocketConnection& socket = std::get<2>(item); in Work()
1477 void PersistWriteThread::Write(std::string name, std::string value, SocketConnection socket) { in Write()