Home
last modified time | relevance | path

Searched refs:ki_open (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
Dkernel_proxy_test.cc89 int fd = ki_open("/test", O_RDWR | O_CREAT); in TEST_F()
120 int fd = ki_open(filename, O_WRONLY | O_CREAT); in TEST_F()
238 int file1 = ki_open("/test1.txt", O_RDWR | O_CREAT); in TEST_F()
310 EXPECT_EQ(-1, ki_open("/foo/bar", O_RDONLY)); in TEST_F()
314 fd1 = ki_open("/foo/bar", O_RDWR | O_CREAT); in TEST_F()
318 fd2 = ki_open("/foo/bar", O_RDWR | O_CREAT); in TEST_F()
322 EXPECT_EQ(-1, ki_open("/foo/bar", O_RDONLY | O_CREAT | O_EXCL)); in TEST_F()
330 fd3 = ki_open("/foo/bar", O_RDONLY); in TEST_F()
340 fd1 = ki_open("/foo/bar", O_WRONLY | O_APPEND); in TEST_F()
349 fd2 = ki_open("/foo/bar", O_RDONLY); in TEST_F()
[all …]
Dmount_node_tty_test.cc174 int tty_fd = ki_open("/dev/tty", O_RDONLY); in TEST_F()
217 int tty_fd = ki_open("/dev/tty", O_RDONLY); in TEST_F()
299 int tty_fd = ki_open("/dev/tty", O_RDONLY); in TEST_F()
333 int fd = ki_open("/dev/tty", O_RDONLY); in input_thread_main()
341 int tty_fd = ki_open("/dev/tty", O_RDONLY); in TEST_F()
Dmount_fuse_test.cc330 int fd = ki_open("/hello", O_WRONLY | O_CREAT); in TEST_F()
337 fd = ki_open("/hello", O_RDONLY); in TEST_F()
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
Dkernel_wrap_win.cc132 return ki_open(path, oflag); in _open()
136 return ki_open(path, oflag); in _sopen()
140 *pfh = ki_open(path, oflag); in _sopen_s()
Dkernel_intercept.h56 int ki_open(const char* path, int oflag);
Dkernel_wrap_newlib.cc172 *newfd = ki_open(pathname, oflag); in WRAP()
Dkernel_intercept.cc149 int ki_open(const char *path, int oflag) { in ki_open() function
Dkernel_wrap_glibc.cc231 *newfd = ki_open(pathname, oflag); in WRAP()