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

  /frameworks/compile/libbcc/lib/ExecutionEngine/
FileHandle.cpp 83 struct stat sfd, sfname; local
85 if (fstat(mFD, &sfd) == -1 || stat(filename, &sfname) == -1 ||
86 sfd.st_dev != sfname.st_dev || sfd.st_ino != sfname.st_ino) {
  /external/dnsmasq/src/
network.c 565 struct serverfd *sfd; local
569 the INADDR_ANY/port0 socket have sfd set to NULL */
588 for (sfd = daemon->sfds; sfd; sfd = sfd->next )
589 if (sockaddr_isequal(&sfd->source_addr, addr) &&
590 strcmp(intname, sfd->interface) == 0)
591 return sfd;
595 if (!(sfd = whine_malloc(sizeof(struct serverfd)))
    [all...]
dnsmasq.h 334 struct serverfd *sfd; member in struct:server
  /bootable/recovery/minadbd/
adb.h 183 int sfd; member in struct:atransport
  /system/core/adb/
adb.h 188 int sfd; member in struct:atransport
  /external/ppp/pppd/
sys-linux.c 2552 int i, mfd, sfd = -1; local
    [all...]
sys-solaris.c 2740 int mfd, sfd; local
    [all...]
  /external/qemu/
qemu-char.c 864 int mfd = -1, sfd = -1; local
878 if ((sfd = open(slave, O_RDONLY | O_NOCTTY)) == -1)
881 if (ioctl(sfd, I_PUSH, "ptem") == -1 ||
882 (termp != NULL && tcgetattr(sfd, termp) < 0))
888 *aslave = sfd;
890 ioctl(sfd, TIOCSWINSZ, winp);
895 if (sfd != -1)
896 close(sfd);
    [all...]
  /external/strace/
signal.c 866 int sfd; local
905 if ((sfd = open(sname, O_RDONLY)) == -1) {
909 i = read(sfd, buf, sizeof(buf));
911 close(sfd);
    [all...]

Completed in 575 milliseconds