Lines Matching refs:server_path
30 static bool CreateUnixSocketAddress(const std::string& server_path, in CreateUnixSocketAddress() argument
40 if (server_path.size() + 1 > sun_path_len) { in CreateUnixSocketAddress()
42 << server_path; in CreateUnixSocketAddress()
45 strcpy(p, server_path.c_str()); in CreateUnixSocketAddress()
50 const std::string& server_path, bool is_abstract) { in Create() argument
57 if (!CreateUnixSocketAddress(server_path, is_abstract, serv_addr)) { in Create()
62 PLOG(ERROR) << "bind() failed for " << server_path; in Create()
70 new UnixSocketServer(sockfd, server_path)); in Create()
86 const std::string& server_path, bool is_abstract) { in Connect() argument
93 if (!CreateUnixSocketAddress(server_path, is_abstract, serv_addr)) { in Connect()
98 PLOG(DEBUG) << "connect() failed, server_path = " << server_path; in Connect()