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

  /external/vboot_reference/utility/
verify_data.c 28 int i, sigfd; local
30 if ((sigfd = open(input_file, O_RDONLY)) == -1) {
40 if( (i = read(sigfd, signature, len)) != len ) {
43 close(sigfd);
47 close(sigfd);
  /external/libdaemon/libdaemon/
dexec.c 56 int sigfd, r; local
136 sigfd = daemon_signal_fd();
137 FD_SET(sigfd, &fds);
177 if (FD_ISSET(sigfd, &qfds)) {
  /external/toybox/toys/pending/
syslogd.c 69 int sigfd[2];
402 if (write(TT.sigfd[1], &ch, 1) != 1) error_msg("can't send signal");
462 xpipe(TT.sigfd);
464 fcntl(TT.sigfd[1] , F_SETFD, FD_CLOEXEC);
465 fcntl(TT.sigfd[0] , F_SETFD, FD_CLOEXEC);
466 int flags = fcntl(TT.sigfd[1], F_GETFL);
467 fcntl(TT.sigfd[1], F_SETFL, flags | O_NONBLOCK);
487 FD_SET(TT.sigfd[0], &rfds);
491 retval = select(TT.sigfd[0] + 1, &rfds, NULL, NULL, (TT.interval)?&tv:NULL);
496 else if (FD_ISSET(TT.sigfd[0], &rfds)) { /* May be a signal *
    [all...]
dhcp.c 197 static struct fd_pair sigfd; variable in typeref:struct:fd_pair
811 if (write(sigfd.wr, &ch, 1) != 1) dbg("can't send signal\n");
817 if (pipe((int *)&sigfd) < 0) {
821 fcntl(sigfd.wr , F_SETFD, FD_CLOEXEC);
822 fcntl(sigfd.rd , F_SETFD, FD_CLOEXEC);
823 int flags = fcntl(sigfd.wr, F_GETFL);
824 fcntl(sigfd.wr, F_SETFL, flags | O_NONBLOCK);
    [all...]
dhcpd.c 327 static struct fd_pair sigfd; variable in typeref:struct:fd_pair
478 if (write(sigfd.wr, &ch, 1) != 1) dbg("can't send signal\n");
484 if (pipe((int *)&sigfd) < 0) {
488 fcntl(sigfd.wr , F_SETFD, FD_CLOEXEC);
489 fcntl(sigfd.rd , F_SETFD, FD_CLOEXEC);
490 int flags = fcntl(sigfd.wr, F_GETFL);
491 fcntl(sigfd.wr, F_SETFL, flags | O_NONBLOCK);
    [all...]
  /external/toybox/generated/
globals.h 825 int sigfd[2]; member in struct:syslogd_data

Completed in 267 milliseconds