HomeSort by: relevance | last modified time | path
    Searched refs:statxbuf (Results 1 - 5 of 5) sorted by relevancy

  /src/external/mit/libuv/dist/src/unix/
linux-syscalls.h 75 struct uv__statx* statxbuf);
linux.c 400 struct uv__statx* statxbuf) {
406 rc = syscall(__NR_statx, dirfd, path, flags, mask, statxbuf);
408 uv__msan_unpoison(statxbuf, sizeof(*statxbuf));
1085 struct uv__statx* statxbuf; local
1088 statxbuf = uv__malloc(sizeof(*statxbuf));
1089 if (statxbuf == NULL)
1096 uv__free(statxbuf);
1100 req->ptr = statxbuf;
1148 struct uv__statx* statxbuf; local
    [all...]
linux-syscalls.c 249 struct uv__statx* statxbuf) {
253 return syscall(__NR_statx, dirfd, path, flags, mask, statxbuf);
internal.h 461 struct uv__statx* statxbuf);
462 void uv__statx_to_stat(const struct uv__statx* statxbuf, uv_stat_t* buf);
fs.c 1519 struct uv__statx statxbuf; local
1540 rc = uv__statx(dirfd, path, flags, mode, &statxbuf);
1563 uv__statx_to_stat(&statxbuf, buf);

Completed in 19 milliseconds