Home | History | Annotate | Download | only in dbus

Lines Matching defs:client_fd

75                                  int         client_fd)
82 _dbus_verbose ("Creating new client connection with fd %d\n", client_fd);
86 if (!_dbus_set_fd_nonblocking (client_fd, NULL))
92 transport = _dbus_transport_new_for_socket (client_fd, &server->guid_hex, NULL);
95 _dbus_close_socket (client_fd, NULL);
108 /* note that client_fd is now owned by the transport, and will be
161 int client_fd;
166 client_fd = _dbus_accept (listen_fd);
168 if (client_fd < 0)
182 _dbus_fd_set_close_on_exec (client_fd);
184 if (!handle_new_client_fd_and_unlock (server, client_fd))