Searched refs:nacl_count (Results 1 - 4 of 4) sorted by relevance
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/ |
H A D | kernel_wrap_real.h | 16 int _real_getdents(int fd, void* nacl_buf, size_t nacl_count, size_t *nread);
|
H A D | kernel_wrap_dummy.cc | 26 int _real_getdents(int fd, void* nacl_buf, size_t nacl_count, size_t *nread) { argument
|
H A D | kernel_wrap_glibc.cc | 180 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 D | kernel_wrap_newlib.cc | 269 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