HomeSort by relevance Sort by last modified time
    Searched full:nacl_buf (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
kernel_wrap_glibc.cc 30 void stat_to_nacl_stat(const struct stat* buf, nacl_abi_stat* nacl_buf) {
31 memset(nacl_buf, 0, sizeof(struct nacl_abi_stat));
32 nacl_buf->nacl_abi_st_dev = buf->st_dev;
33 nacl_buf->nacl_abi_st_ino = buf->st_ino;
34 nacl_buf->nacl_abi_st_mode = buf->st_mode;
35 nacl_buf->nacl_abi_st_nlink = buf->st_nlink;
36 nacl_buf->nacl_abi_st_uid = buf->st_uid;
37 nacl_buf->nacl_abi_st_gid = buf->st_gid;
38 nacl_buf->nacl_abi_st_rdev = buf->st_rdev;
39 nacl_buf->nacl_abi_st_size = buf->st_size
309 char* nacl_buf = (char*)alloca(count); local
    [all...]
kernel_wrap_real.h 16 int _real_getdents(int fd, void* nacl_buf, size_t nacl_count, size_t *nread);
kernel_wrap_newlib.cc 150 int _real_getdents(int fd, dirent* nacl_buf, size_t nacl_count, size_t* nread) {
151 return REAL(getdents)(fd, nacl_buf, nacl_count, nread);
kernel_wrap_win.cc 230 int _real_getdents(int fd, void* nacl_buf, size_t nacl_count, size_t *nread) {

Completed in 5913 milliseconds