Lines Matching refs:path
53 char* path
80 r = uv_fs_lstat(NULL, &req, path, NULL);
1192 buf->u.dir.pr_name_len = strlen(wrap->path);
1202 char* path,
1208 UVWASI_DEBUG("uvwasi_fd_prestat_dir_name(uvwasi=%p, fd=%d, path=%p, "
1212 path,
1215 if (uvwasi == NULL || path == NULL)
1226 size = strlen(wrap->path);
1232 memcpy(path, wrap->path, size);
1643 const char* path,
1651 UVWASI_DEBUG("uvwasi_path_create_directory(uvwasi=%p, fd=%d, path='%s', "
1655 path,
1658 if (uvwasi == NULL || path == NULL)
1669 err = uvwasi__resolve_path(uvwasi, wrap, path, path_len, &resolved_path, 0);
1692 const char* path,
1702 "path='%s', path_len=%d, buf=%p)\n",
1706 path,
1710 if (uvwasi == NULL || path == NULL || buf == NULL)
1723 path,
1750 const char* path,
1764 "flags=%d, path='%s', path_len=%d, "
1769 path,
1775 if (uvwasi == NULL || path == NULL)
1790 path,
1935 const char* path,
1957 UVWASI_DEBUG("uvwasi_path_open(uvwasi=%p, dirfd=%d, dirflags=%d, path='%s', "
1963 path,
1971 if (uvwasi == NULL || path == NULL || fd == NULL)
2030 path,
2093 const char* path,
2105 UVWASI_DEBUG("uvwasi_path_readlink(uvwasi=%p, fd=%d, path='%s', path_len=%d, "
2109 path,
2115 if (uvwasi == NULL || path == NULL || buf == NULL || bufused == NULL)
2126 err = uvwasi__resolve_path(uvwasi, wrap, path, path_len, &resolved_path, 0);
2156 const char* path,
2164 UVWASI_DEBUG("uvwasi_path_remove_directory(uvwasi=%p, fd=%d, path='%s', "
2168 path,
2171 if (uvwasi == NULL || path == NULL)
2182 err = uvwasi__resolve_path(uvwasi, wrap, path, path_len, &resolved_path, 0);
2360 const char* path,
2368 UVWASI_DEBUG("uvwasi_path_unlink_file(uvwasi=%p, fd=%d, path='%s', "
2372 path,
2375 if (uvwasi == NULL || path == NULL)
2386 err = uvwasi__resolve_path(uvwasi, wrap, path, path_len, &resolved_path, 0);
2485 /* Handle poll() errors, then timeouts, then happy path. */