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

  /external/dbus/dbus/
dbus-sysdeps-util-unix.c 82 int dev_null_fd; local
112 dev_null_fd = open ("/dev/null", O_RDWR);
113 if (dev_null_fd >= 0)
115 dup2 (dev_null_fd, 0);
116 dup2 (dev_null_fd, 1);
120 dup2 (dev_null_fd, 2);
  /external/dbus/tools/
dbus-launch.c 553 int dev_null_fd; local
577 dev_null_fd = open ("/dev/null", O_RDWR);
578 if (dev_null_fd >= 0)
581 dup2 (dev_null_fd, 0);
582 dup2 (dev_null_fd, 1);
585 dup2 (dev_null_fd, 2);

Completed in 111 milliseconds