Searched refs:nacl_count (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dkernel_wrap_real.h16 int _real_getdents(int fd, void* nacl_buf, size_t nacl_count, size_t *nread);
H A Dkernel_wrap_dummy.cc26 int _real_getdents(int fd, void* nacl_buf, size_t nacl_count, size_t *nread) { argument
H A Dkernel_wrap_glibc.cc180 int WRAP(getdents)(int fd, dirent* nacl_buf, size_t nacl_count, size_t *nread) { argument
183 // nacl_abi_dirent(s) are smaller than dirent(s), so nacl_count bytes buffer
185 char* buf = (char*)alloca(nacl_count);
189 count = ki_getdents(fd, buf, nacl_count);
H A Dkernel_wrap_newlib.cc269 int _real_getdents(int fd, void* nacl_buf, size_t nacl_count, size_t* nread) { argument
271 return REAL(getdents)(fd, static_cast<dirent*>(nacl_buf), nacl_count, nread);

Completed in 584 milliseconds