Lines Matching defs:name
70 static void create_dir(const char* name) {
73 r = uv_fs_mkdir(NULL, &req, name, 0755, NULL);
78 static void create_file(const char* name) {
83 r = uv_fs_open(NULL, &req, name, UV_FS_O_WRONLY | UV_FS_O_CREAT,
94 static void touch_file(const char* name) {
100 r = uv_fs_open(NULL, &req, name, UV_FS_O_RDWR, 0, NULL);
277 * under Windows: once with the name of the file, and second time with the
278 * name of the directory. We will ignore the callback for the directory
532 short name */
558 RETURN_SKIP("Was not able to address files with 8.3 short name.");