HomeSort by relevance Sort by last modified time
    Searched refs:server_fd (Results 1 - 11 of 11) sorted by null

  /external/google-breakpad/src/client/linux/crash_generation/
crash_generation_client.h 53 // Returns a new CrashGenerationClient if |server_fd| is valid and
57 static CrashGenerationClient* TryCreate(int server_fd);
crash_generation_client.cc 48 explicit CrashGenerationClientImpl(int server_fd) : server_fd_(server_fd) {}
99 CrashGenerationClient* CrashGenerationClient::TryCreate(int server_fd) {
100 if (server_fd < 0)
102 return new CrashGenerationClientImpl(server_fd);
crash_generation_server.h 87 // to a CrashGenerationServer. |*server_fd| should be passed to
90 static bool CreateReportChannel(int* server_fd, int* client_fd);
crash_generation_server.cc 131 CrashGenerationServer::CreateReportChannel(int* server_fd, int* client_fd)
149 *server_fd = fds[1];
  /external/autotest/client/tests/ipv6connect/src/
ipv6connect.c 38 static void ConnectAndAccept(enum LoopbackAddr addr, int server_fd, int port) {
88 if ((accepted_fd = accept(server_fd,
98 static void CreateServer(int* server_fd, int* port) {
103 if ((*server_fd = socket(AF_INET6, SOCK_STREAM, IPPROTO_TCP)) == -1) {
111 if (bind(*server_fd, (struct sockaddr*)(&sa), sizeof(sa)) == -1) {
115 if (getsockname(*server_fd, (struct sockaddr*)(&sa), &addr_len) == -1) {
119 if (listen(*server_fd, 10) == -1) {
130 int server_fd, client_fd, accepted_fd, connect_rc; local
132 if ((server_fd = socket(AF_INET6, SOCK_STREAM, IPPROTO_TCP)) == -1) {
141 if (bind(server_fd, (struct sockaddr*)(&sa), sizeof(sa)) == -1)
268 int server_fd, client_fd; local
350 int i, j, server_fd, port; local
    [all...]
  /external/libese/tools/ese_relay/
ese_relay.c 72 int server_fd = setup_socket(LOG_TAG); local
77 if (listen(server_fd, 4)) {
79 close(server_fd);
83 while (server_fd) {
95 if ((client_fd = accept(server_fd, &client_info, &client_info_len)) == -1) {
  /system/bt/service/ipc/
ipc_handler_linux.cc 63 int server_fd = osi_android_get_control_socket(android_suffix.c_str()); local
64 if (server_fd == -1) {
69 socket_.reset(server_fd);
  /system/extras/simpleperf/
UnixSocket.h 113 UnixSocketServer(int server_fd, const std::string& path)
114 : server_fd_(server_fd), path_(path) {}
  /external/google-breakpad/src/client/linux/handler/
exception_handler.h 125 // If |server_fd| is valid, the minidump is generated out-of-process. If it
132 const int server_fd);
exception_handler.cc 223 const int server_fd)
229 if (server_fd >= 0)
230 crash_generation_client_.reset(CrashGenerationClient::TryCreate(server_fd));
  /external/curl/lib/
urldata.h 291 int server_fd; member in struct:ssl_connect_data
302 int server_fd; member in struct:ssl_connect_data
    [all...]

Completed in 136 milliseconds