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

  /external/dbus/dbus/
dbus-server-socket.c 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; local
166 client_fd = _dbus_accept (listen_fd);
168 if (client_fd < 0)
182 _dbus_fd_set_close_on_exec (client_fd);
    [all...]
dbus-server-debug-pipe.c 212 int client_fd, server_fd; local
247 if (!_dbus_full_duplex_pipe (&client_fd, &server_fd, FALSE,
256 _dbus_fd_set_close_on_exec (client_fd);
259 client_transport = _dbus_transport_new_for_socket (client_fd,
263 _dbus_close_socket (client_fd, NULL);
272 client_fd = -1;
dbus-sysdeps-unix.c 934 * @param client_fd the client file descriptor
940 _dbus_read_credentials_unix_socket (int client_fd,
993 if (recvmsg (client_fd, &msg, 0) < 0)
1027 if (getsockopt (client_fd, SOL_SOCKET, SO_PEERCRED, &cr, &cr_len) == 0 &&
1049 _dbus_set_local_creds (client_fd, FALSE);
1053 if (getpeereid (client_fd, &euid, &egid) == 0)
1064 if (getpeerucred (client_fd, &ucred) == 0)
1131 int client_fd; local
1138 client_fd = accept (listen_fd, &addr, &addrlen);
1140 if (client_fd < 0
    [all...]
dbus-sysdeps.h 161 dbus_bool_t _dbus_read_credentials_unix_socket (int client_fd,

Completed in 27 milliseconds