Searched refs:client_fd (Results 1 - 6 of 6) sorted by relevance

/external/dbus/dbus/
H A Ddbus-server-socket.c87 int client_fd)
96 _dbus_verbose ("Creating new client connection with fd %d\n", client_fd);
100 if (!_dbus_set_fd_nonblocking (client_fd, NULL))
106 transport = _dbus_transport_new_for_socket (client_fd, &server->guid_hex, FALSE);
109 _dbus_close_socket (client_fd, NULL);
122 /* note that client_fd is now owned by the transport, and will be
187 int client_fd; local
193 client_fd = _dbus_accept_with_noncefile (listen_fd, socket_server->noncefile);
195 client_fd = _dbus_accept (listen_fd);
197 if (client_fd <
86 handle_new_client_fd_and_unlock(DBusServer *server, int client_fd) argument
[all...]
H A Ddbus-server-debug-pipe.c213 int client_fd, server_fd; local
248 if (!_dbus_full_duplex_pipe (&client_fd, &server_fd, FALSE,
257 client_transport = _dbus_transport_new_for_socket (client_fd,
261 _dbus_close_socket (client_fd, NULL);
270 client_fd = -1;
H A Ddbus-sysdeps-unix.h78 dbus_bool_t _dbus_read_credentials (int client_fd,
H A Ddbus-sysdeps-unix.c1574 * @param client_fd the client file descriptor
1580 _dbus_read_credentials_socket (int client_fd, argument
1639 bytes_read = recvmsg (client_fd, &msg, 0);
1689 if (getsockopt (client_fd, SOL_SOCKET, SO_PEERCRED, &cr, &cr_len) == 0 &&
1711 _dbus_set_local_creds (client_fd, FALSE);
1715 if (getpeereid (client_fd, &euid, &egid) == 0)
1725 if (getpeerucred (client_fd, &ucred) == 0)
1841 int client_fd; local
1854 client_fd = accept4 (listen_fd, &addr, &addrlen, SOCK_CLOEXEC);
1855 cloexec_done = client_fd >
[all...]
H A Ddbus-sysdeps.h184 dbus_bool_t _dbus_read_credentials_socket (int client_fd,
H A Ddbus-sysdeps-win.c1584 int client_fd; local
1587 client_fd = accept (listen_fd, NULL, NULL);
1589 if (DBUS_SOCKET_IS_INVALID (client_fd))
1596 _dbus_verbose ("client fd %d accepted\n", client_fd);
1598 return client_fd;
1676 * @param client_fd the client file descriptor

Completed in 283 milliseconds