Home | History | Annotate | Download | only in fileapi

Lines Matching defs:file_path

83   base::FilePath file_path;
84 PlatformFileError error = GetLocalFilePath(context, url, &file_path);
88 if (file_util::IsLink(file_path))
91 file_path, file_flags, file_handle, created);
103 base::FilePath file_path;
104 PlatformFileError error = GetLocalFilePath(context, url, &file_path);
107 return NativeFileUtil::EnsureFileExists(file_path, created);
115 base::FilePath file_path;
116 PlatformFileError error = GetLocalFilePath(context, url, &file_path);
119 return NativeFileUtil::CreateDirectory(file_path, exclusive, recursive);
127 base::FilePath file_path;
128 PlatformFileError error = GetLocalFilePath(context, url, &file_path);
132 if (file_util::IsLink(file_path))
134 error = NativeFileUtil::GetFileInfo(file_path, file_info);
136 *platform_file_path = file_path;
144 base::FilePath file_path;
145 if (GetLocalFilePath(context, root_url, &file_path) !=
151 file_path, root_url.path(),
172 base::FilePath file_path;
173 PlatformFileError error = GetLocalFilePath(context, url, &file_path);
176 return NativeFileUtil::Touch(file_path, last_access_time, last_modified_time);
183 base::FilePath file_path;
184 PlatformFileError error = GetLocalFilePath(context, url, &file_path);
187 return NativeFileUtil::Truncate(file_path, length);
226 base::FilePath file_path;
227 PlatformFileError error = GetLocalFilePath(context, url, &file_path);
230 return NativeFileUtil::DeleteFile(file_path);
236 base::FilePath file_path;
237 PlatformFileError error = GetLocalFilePath(context, url, &file_path);
240 return NativeFileUtil::DeleteDirectory(file_path);