Searched refs:raw_fd1 (Results 1 – 1 of 1) sorted by relevance
88 int raw_fd1 = open(kNullFilename, O_RDONLY); in TEST() local90 ASSERT_GE(raw_fd1, 0); in TEST()93 ScopedFile scoped_file(raw_fd1); in TEST()94 ASSERT_EQ(raw_fd1, scoped_file.get()); in TEST()98 ASSERT_NE(0, close(raw_fd1)); // Should fail when closing twice. in TEST()121 int raw_fd1 = open(kNullFilename, O_RDONLY); in TEST() local123 ASSERT_GE(raw_fd1, 0); in TEST()126 ScopedFile scoped_file1(ScopedFile{raw_fd1}); in TEST()131 ASSERT_EQ(raw_fd1, scoped_file2.get()); in TEST()137 ASSERT_NE(0, close(raw_fd1)); // Should fail when closing twice. in TEST()[all …]