Home | History | Annotate | Download | only in fileapi

Lines Matching defs:file_path

82   base::FilePath file_path;
83 base::File::Error error = GetLocalFilePath(context, url, &file_path);
87 if (base::IsLink(file_path))
90 return NativeFileUtil::CreateOrOpen(file_path, file_flags);
97 base::FilePath file_path;
98 base::File::Error error = GetLocalFilePath(context, url, &file_path);
101 return NativeFileUtil::EnsureFileExists(file_path, created);
109 base::FilePath file_path;
110 base::File::Error error = GetLocalFilePath(context, url, &file_path);
113 return NativeFileUtil::CreateDirectory(file_path, exclusive, recursive);
121 base::FilePath file_path;
122 base::File::Error error = GetLocalFilePath(context, url, &file_path);
126 if (base::IsLink(file_path))
129 error = NativeFileUtil::GetFileInfo(file_path, file_info);
131 *platform_file_path = file_path;
139 base::FilePath file_path;
140 if (GetLocalFilePath(context, root_url, &file_path) !=
146 file_path, root_url.path(),
170 base::FilePath file_path;
171 base::File::Error error = GetLocalFilePath(context, url, &file_path);
174 return NativeFileUtil::Touch(file_path, last_access_time, last_modified_time);
181 base::FilePath file_path;
182 base::File::Error error = GetLocalFilePath(context, url, &file_path);
185 return NativeFileUtil::Truncate(file_path, length);
234 base::FilePath file_path;
235 base::File::Error error = GetLocalFilePath(context, url, &file_path);
238 return NativeFileUtil::DeleteFile(file_path);
244 base::FilePath file_path;
245 base::File::Error error = GetLocalFilePath(context, url, &file_path);
248 return NativeFileUtil::DeleteDirectory(file_path);