/external/dbus/dbus/ |
dbus-server-socket.c | 162 int listen_fd; local 164 listen_fd = dbus_watch_get_fd (watch); 166 client_fd = _dbus_accept (listen_fd); 312 int listen_fd; local 338 listen_fd = _dbus_listen_tcp_socket (host, port, error); 339 _dbus_fd_set_close_on_exec (listen_fd); 341 if (listen_fd < 0) 347 server = _dbus_server_new_for_socket (listen_fd, &address); 351 _dbus_close_socket (listen_fd, NULL);
|
dbus-server-unix.c | 172 int listen_fd; local 203 listen_fd = _dbus_listen_unix_socket (path, abstract, error); 204 _dbus_fd_set_close_on_exec (listen_fd); 206 if (listen_fd < 0) 212 server = _dbus_server_new_for_socket (listen_fd, &address); 226 _dbus_close_socket (listen_fd, NULL);
|
dbus-sysdeps-unix.c | 560 int listen_fd; local 574 listen_fd = android_get_control_socket (suffix); 575 if (listen_fd == -1) 592 if (!_dbus_open_unix_socket (&listen_fd, error)) 616 _dbus_close (listen_fd, NULL); 625 _dbus_close (listen_fd, NULL); 653 _dbus_close (listen_fd, NULL); 660 if (bind (listen_fd, (struct sockaddr*) &addr, _DBUS_STRUCT_OFFSET (struct sockaddr_un, sun_path) + path_len) < 0) 665 _dbus_close (listen_fd, NULL); 671 if (listen (listen_fd, 30 /* backlog */) < 0 799 int listen_fd; local [all...] |
dbus-sysdeps.h | 146 int _dbus_accept (int listen_fd);
|
/external/qemu/ |
qemu-char-android.c | 1860 int fd, listen_fd; member in struct:__anon4803 [all...] |
qemu-char.c | 1829 int fd, listen_fd; member in struct:__anon4810 [all...] |
/external/qemu/android/ |
console.c | 110 Socket listen_fd; member in struct:ControlGlobalRec_ 547 D(( "control_global_accept: just in (fd=%p)\n", (void*)global->listen_fd )); 550 fd = sys_channel_create_tcp_handler( global->listen_fd ); 557 fd = socket_accept( global->listen_fd, NULL ); 603 global->listen_fd = fd; 634 global->listen_fd = fd; [all...] |
/external/dbus/ |
configure.in | 696 int listen_fd; 699 listen_fd = socket (PF_UNIX, SOCK_STREAM, 0); 701 if (listen_fd < 0) 712 if (bind (listen_fd, (struct sockaddr*) &addr, SUN_LEN (&addr)) < 0) [all...] |
/external/blktrace/ |
blktrace.c | 232 int listen_fd, connects, nchs; member in struct:net_server_s [all...] |