Searched refs:req_wrap_sync (Results 1 – 2 of 2) sorted by relevance
/third_party/node/src/ |
D | node_file.cc | 861 FSReqWrapSync req_wrap_sync; in Access() local 863 SyncCall(env, args[3], &req_wrap_sync, "access", uv_fs_access, *path, mode); in Access() 885 FSReqWrapSync req_wrap_sync; in Close() local 887 SyncCall(env, args[2], &req_wrap_sync, "close", uv_fs_close, fd); in Close() 1026 FSReqWrapSync req_wrap_sync; in Stat() local 1028 int err = SyncCall(env, args[3], &req_wrap_sync, "stat", uv_fs_stat, *path); in Stat() 1035 static_cast<const uv_stat_t*>(req_wrap_sync.req.ptr)); in Stat() 1057 FSReqWrapSync req_wrap_sync; in LStat() local 1059 int err = SyncCall(env, args[3], &req_wrap_sync, "lstat", uv_fs_lstat, in LStat() 1067 static_cast<const uv_stat_t*>(req_wrap_sync.req.ptr)); in LStat() [all …]
|
D | node_dir.cc | 157 FSReqWrapSync req_wrap_sync; in Close() local 159 SyncCall(env, args[1], &req_wrap_sync, "closedir", uv_fs_closedir, in Close() 261 FSReqWrapSync req_wrap_sync; in Read() local 263 int err = SyncCall(env, args[3], &req_wrap_sync, "readdir", uv_fs_readdir, in Read() 270 if (req_wrap_sync.req.result == 0) { in Read() 277 CHECK_GE(req_wrap_sync.req.result, 0); in Read() 283 req_wrap_sync.req.result, in Read() 329 FSReqWrapSync req_wrap_sync; in OpenDir() local 331 int result = SyncCall(env, args[3], &req_wrap_sync, "opendir", in OpenDir() 338 uv_fs_t* req = &req_wrap_sync.req; in OpenDir()
|