HomeSort by relevance Sort by last modified time
    Searched defs:master_fd (Results 1 - 3 of 3) sorted by null

  /external/selinux/policycoreutils/restorecond/
restorecond.c 66 static int master_fd = -1; variable
81 watch_list_free(master_fd);
82 close(master_fd);
118 close(master_fd);
202 master_fd = inotify_init();
203 if (master_fd < 0)
214 return server(master_fd, user_watch_file);
216 return server(master_fd, user_watch_file);
221 read_config(master_fd, watch_file);
228 while (watch(master_fd, watch_file) == 0)
    [all...]
  /external/toybox/toys/pending/
telnetd.c 310 int pty_fd, new_fd, c = 0, w, master_fd = 0; local
317 master_fd = listen_socket();
318 fcntl(master_fd, F_SETFD, FD_CLOEXEC);
319 if (master_fd > TT.gmax_fd) TT.gmax_fd = master_fd;
322 pty_fd = new_session(master_fd); //master_fd = 0
344 if (!inetd_m) FD_SET(master_fd, &rd);
363 if (!inetd_m && FD_ISSET(master_fd, &rd)) { //accept new connection
364 new_fd = accept(master_fd, NULL, NULL)
    [all...]
  /external/ppp/pppd/
sys-linux.c 181 static int master_fd = -1; /* pty for old-style demand mode, master */ variable
377 if (master_fd >= 0)
378 close(master_fd);
700 int master_fd; local
705 master_fd = open("/dev/ppp", O_RDWR);
706 if (master_fd < 0)
708 if (ioctl(master_fd, PPPIOCATTACH, &ifnum) < 0) {
710 close(master_fd);
717 modify_flags(master_fd, 0, SC_MULTILINK);
718 close(master_fd);
    [all...]

Completed in 79 milliseconds