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

  /external/perfetto/src/base/
scoped_file_unittest.cc 42 int raw_fd = open("/dev/null", O_RDONLY); local
43 ASSERT_GE(raw_fd, 0);
45 ScopedFile scoped_file(raw_fd);
46 ASSERT_EQ(raw_fd, scoped_file.get());
47 ASSERT_EQ(raw_fd, *scoped_file);
50 ASSERT_NE(0, close(raw_fd)); // Should fail when closing twice.
84 int raw_fd = open("/dev/null", O_RDONLY); local
85 ASSERT_GE(raw_fd, 0);
87 ScopedFile scoped_file(raw_fd);
88 ASSERT_EQ(raw_fd, scoped_file.release())
139 int raw_fd = open("\/dev\/null", O_RDONLY); local
    [all...]
  /external/dhcpcd-6.8.2/
dhcp.h 233 int raw_fd; member in struct:dhcp_state

Completed in 80 milliseconds