Home
last modified time | relevance | path

Searched refs:nacl_buf (Results 1 – 5 of 5) sorted by relevance

/dports/www/chromium-legacy/chromium-88.0.4324.182/native_client_sdk/src/libraries/nacl_io/
H A Dkernel_wrap_irt_ext.c85 nacl_buf->nacl_abi_st_dev = buf->st_dev; in stat_to_nacl_stat()
86 nacl_buf->nacl_abi_st_ino = buf->st_ino; in stat_to_nacl_stat()
89 nacl_buf->nacl_abi_st_uid = buf->st_uid; in stat_to_nacl_stat()
90 nacl_buf->nacl_abi_st_gid = buf->st_gid; in stat_to_nacl_stat()
105 buf->st_dev = nacl_buf->nacl_abi_st_dev; in nacl_stat_to_stat()
106 buf->st_ino = nacl_buf->nacl_abi_st_ino; in nacl_stat_to_stat()
195 stat_to_nacl_stat(&buf, nacl_buf); in ext_fstat()
271 stat_to_nacl_stat(&buf, nacl_buf); in ext_stat()
306 stat_to_nacl_stat(&buf, nacl_buf); in ext_lstat()
358 nacl_irt_stat_t nacl_buf; in _real_fstat() local
[all …]
H A Dkernel_wrap_glibc.cc33 nacl_buf->nacl_abi_st_dev = buf->st_dev; in stat_to_nacl_stat()
34 nacl_buf->nacl_abi_st_ino = buf->st_ino; in stat_to_nacl_stat()
37 nacl_buf->nacl_abi_st_uid = buf->st_uid; in stat_to_nacl_stat()
38 nacl_buf->nacl_abi_st_gid = buf->st_gid; in stat_to_nacl_stat()
53 buf->st_dev = nacl_buf->nacl_abi_st_dev; in nacl_stat_to_stat()
54 buf->st_ino = nacl_buf->nacl_abi_st_ino; in nacl_stat_to_stat()
57 buf->st_uid = nacl_buf->nacl_abi_st_uid; in nacl_stat_to_stat()
58 buf->st_gid = nacl_buf->nacl_abi_st_gid; in nacl_stat_to_stat()
190 stat_to_nacl_stat(&buf, nacl_buf); in WRAP()
307 stat_to_nacl_stat(&buf, nacl_buf); in WRAP()
[all …]
H A Dkernel_wrap_real.h18 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) { in _real_getdents() argument
H A Dkernel_wrap_newlib.cc307 int _real_getdents(int fd, void* nacl_buf, size_t nacl_count, size_t* nread) { in _real_getdents() argument
309 return REAL(getdents)(fd, static_cast<dirent*>(nacl_buf), nacl_count, nread); in _real_getdents()