OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:ki_lstat
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
lstat.c
16
return
ki_lstat
(pathname, buf);
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
kernel_intercept.h
101
int
ki_lstat
(const char* path, struct stat* buf);
kernel_wrap_newlib.cc
223
ERRNO_RTN(
ki_lstat
(pathname, buf));
kernel_wrap_bionic.cc
236
int res =
ki_lstat
(path, &buf);
kernel_intercept.cc
285
int
ki_lstat
(const char* path, struct stat* buf) {
function
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
kernel_proxy_test.cc
521
EXPECT_EQ(0,
ki_lstat
("/foo", &buf));
525
EXPECT_EQ(0,
ki_lstat
("/bar", &buf));
529
EXPECT_EQ(-1,
ki_lstat
("/no-such-file", &buf));
Completed in 133 milliseconds