/development/ndk/platforms/android-3/include/sys/ |
dirent.h | 45 extern int getdents(unsigned int, struct dirent *, unsigned int);
|
/development/ndk/platforms/android-3/include/ |
dirent.h | 76 extern int getdents(unsigned int, struct dirent*, unsigned int);
|
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/fusefs/ |
fuse_fs.cc | 23 FillDirInfo(GetDentsHelper* getdents, size_t num_bytes) 24 : getdents(getdents), num_bytes(num_bytes), wrote_offset(false) {} 26 GetDentsHelper* getdents; member in struct:nacl_io::__anon13542::FillDirInfo 415 Error DirFuseFsNode::GetDents(size_t offs, 437 GetDentsHelper getdents; local 438 FillDirInfo fill_info(&getdents, count); 447 // GetDentsHelpers::GetDents should use an offset of 0. 453 error = getdents.GetDents(offs, pdir, count, out_bytes) [all...] |
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/ |
kernel_wrap_newlib.cc | 67 OP(fdio, getdents); \ 134 int WRAP(getdents)(int fd, dirent* buf, size_t count, size_t* nread) { function 308 CHECK_REAL(getdents); 309 return REAL(getdents)(fd, static_cast<dirent*>(nacl_buf), nacl_count, nread);
|
kernel_wrap.h | 83 int getdents(int fd, void* buf, unsigned int count) NOTHROW; 86 int getdents(unsigned int fd, struct dirent* buf, unsigned int count) NOTHROW;
|
kernel_wrap_bionic.cc | 128 OP(getdents); \ 198 int WRAP(getdents)(int fd, dirent* nacl_buf, size_t nacl_count, size_t* nread) { 394 // See WRAP(getdents) above. 399 CHECK_REAL(getdents); 400 int err = REAL(getdents)(fd, (dirent*)nacl_buf, count, &nacl_nread);
|
kernel_wrap_glibc.cc | 137 OP(getdents); \ 227 int WRAP(getdents)(int fd, dirent* nacl_buf, size_t nacl_count, size_t* nread) { 562 // See WRAP(getdents) above. 567 CHECK_REAL(getdents); 568 int err = REAL(getdents)(fd, (dirent*)nacl_buf, count, &nacl_nread);
|
kernel_proxy.h | 113 virtual int getdents(int fd, void* buf, unsigned int count);
|
kernel_intercept.cc | 257 return s_state.kp->getdents(fd, buf, count);
|
kernel_proxy.cc | 562 int KernelProxy::getdents(int fd, void* buf, unsigned int count) { function in class:nacl_io::KernelProxy 571 error = handle->GetDents(static_cast<dirent*>(buf), count, &cnt); [all...] |
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/ |
mock_kernel_proxy.h | 38 MOCK_METHOD3(getdents, int(int, void*, unsigned int));
|
kernel_wrap_test.cc | 341 TEST_F(KernelWrapTest, getdents) { 343 // TODO(sbc): Find a way to test the getdents wrapper under glibc. 349 EXPECT_CALL(mock, getdents(kDummyInt, void_ptr, kDummyInt2)) 351 EXPECT_EQ(kDummyInt2, getdents(kDummyInt, void_ptr, kDummyInt2));
|
/external/ltrace/etc/ |
syscalls.conf | 119 int getdents(uint, void *, uint);
|
/bionic/libc/bionic/ |
ndk_cruft.cpp | 246 extern "C" int getdents(unsigned int fd, dirent* dirp, unsigned int count) { function
|
/external/chromium_org/components/nacl/loader/nonsfi/ |
nonsfi_sandbox_sigsys_unittest.cc | 163 RESTRICT_SYSCALL_DEATH_TEST(getdents);
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_linux.cc | 507 return internal_syscall(SYSCALL(getdents), fd, (uptr)dirp, count);
|
/external/chromium_org/third_party/tcmalloc/chromium/src/base/ |
linux_syscall_support.h | [all...] |
/external/chromium_org/third_party/tcmalloc/vendor/src/base/ |
linux_syscall_support.h | [all...] |