HomeSort by relevance Sort by last modified time
    Searched refs:PlatformFileError (Results 1 - 25 of 234) sorted by null

1 2 3 4 5 6 7 8 910

  /external/chromium_org/content/common/
file_utilities_messages.h 19 base::PlatformFileError /* status */)
  /external/chromium_org/webkit/browser/fileapi/
native_file_util.h 33 static base::PlatformFileError CreateOrOpen(
38 static base::PlatformFileError Close(base::PlatformFile file);
39 static base::PlatformFileError EnsureFileExists(const base::FilePath& path,
41 static base::PlatformFileError CreateDirectory(const base::FilePath& path,
44 static base::PlatformFileError GetFileInfo(const base::FilePath& path,
49 static base::PlatformFileError Touch(const base::FilePath& path,
52 static base::PlatformFileError Truncate(const base::FilePath& path,
56 static base::PlatformFileError CopyOrMoveFile(const base::FilePath& src_path,
59 static base::PlatformFileError DeleteFile(const base::FilePath& path);
60 static base::PlatformFileError DeleteDirectory(const base::FilePath& path)
    [all...]
async_file_test_helper.h 30 static base::PlatformFileError Copy(FileSystemContext* context,
35 static base::PlatformFileError Move(FileSystemContext* context,
40 static base::PlatformFileError Remove(FileSystemContext* context,
45 static base::PlatformFileError ReadDirectory(FileSystemContext* context,
50 static base::PlatformFileError CreateDirectory(FileSystemContext* context,
54 static base::PlatformFileError CreateFile(FileSystemContext* context,
58 static base::PlatformFileError TruncateFile(FileSystemContext* context,
63 static base::PlatformFileError GetMetadata(FileSystemContext* context,
68 static base::PlatformFileError GetPlatformPath(FileSystemContext* context,
async_file_test_helper.cc 23 base::PlatformFileError* result_out,
24 base::PlatformFileError result) {
29 base::Callback<void(base::PlatformFileError)>
31 base::PlatformFileError* result) {
36 base::PlatformFileError* result_out,
38 base::PlatformFileError result,
48 base::PlatformFileError* result_out,
50 base::PlatformFileError result,
62 base::PlatformFileError* result_out,
64 base::PlatformFileError result
    [all...]
file_system_file_util.h 60 virtual base::PlatformFileError CreateOrOpen(
69 virtual base::PlatformFileError Close(
76 virtual base::PlatformFileError EnsureFileExists(
82 virtual base::PlatformFileError CreateDirectory(
90 virtual base::PlatformFileError GetFileInfo(
110 virtual base::PlatformFileError GetLocalFilePath(
117 virtual base::PlatformFileError Touch(
125 virtual base::PlatformFileError Truncate(
142 virtual base::PlatformFileError CopyOrMoveFile(
151 virtual base::PlatformFileError CopyInForeignFile
    [all...]
local_file_util.h 33 virtual base::PlatformFileError CreateOrOpen(
39 virtual base::PlatformFileError Close(
42 virtual base::PlatformFileError EnsureFileExists(
45 virtual base::PlatformFileError CreateDirectory(
50 virtual base::PlatformFileError GetFileInfo(
58 virtual base::PlatformFileError GetLocalFilePath(
62 virtual base::PlatformFileError Touch(
67 virtual base::PlatformFileError Truncate(
71 virtual base::PlatformFileError CopyOrMoveFile(
76 virtual base::PlatformFileError CopyInForeignFile
    [all...]
copy_or_move_operation_delegate.h 57 void DidTryCopyOrMoveFile(base::PlatformFileError error);
58 void DidTryRemoveDestRoot(base::PlatformFileError error);
65 base::PlatformFileError error,
74 base::PlatformFileError error);
78 base::PlatformFileError error);
82 base::PlatformFileError error);
86 base::PlatformFileError error,
94 base::PlatformFileError error);
97 base::PlatformFileError error);
99 base::PlatformFileError prior_error
    [all...]
recursive_operation_delegate.h 79 void DidProcessFile(base::PlatformFileError error);
81 base::PlatformFileError error);
84 base::PlatformFileError error,
87 void DidTryProcessFile(base::PlatformFileError previous_error,
88 base::PlatformFileError error);
obfuscated_file_util.h 71 virtual base::PlatformFileError CreateOrOpen(
77 virtual base::PlatformFileError Close(
80 virtual base::PlatformFileError EnsureFileExists(
83 virtual base::PlatformFileError CreateDirectory(
88 virtual base::PlatformFileError GetFileInfo(
96 virtual base::PlatformFileError GetLocalFilePath(
100 virtual base::PlatformFileError Touch(
105 virtual base::PlatformFileError Truncate(
109 virtual base::PlatformFileError CopyOrMoveFile(
114 virtual base::PlatformFileError CopyInForeignFile
    [all...]
remove_operation_delegate.h 31 void DidTryRemoveFile(base::PlatformFileError error);
33 base::PlatformFileError error);
34 void RemoveNextDirectory(base::PlatformFileError error);
local_file_util.cc 20 using base::PlatformFileError;
78 PlatformFileError LocalFileUtil::CreateOrOpen(
84 PlatformFileError error = GetLocalFilePath(context, url, &file_path);
94 PlatformFileError LocalFileUtil::Close(FileSystemOperationContext* context,
99 PlatformFileError LocalFileUtil::EnsureFileExists(
104 PlatformFileError error = GetLocalFilePath(context, url, &file_path);
110 PlatformFileError LocalFileUtil::CreateDirectory(
116 PlatformFileError error = GetLocalFilePath(context, url, &file_path);
122 PlatformFileError LocalFileUtil::GetFileInfo(
128 PlatformFileError error = GetLocalFilePath(context, url, &file_path)
    [all...]
isolated_file_util.h 23 virtual base::PlatformFileError GetLocalFilePath(
39 virtual base::PlatformFileError GetFileInfo(
transient_file_util.h 26 base::PlatformFileError* error,
file_writer_delegate.h 32 typedef base::Callback<void(base::PlatformFileError result,
66 base::PlatformFileError error,
72 void OnError(base::PlatformFileError error);
75 void FlushForCompletion(base::PlatformFileError error,
78 void OnFlushed(base::PlatformFileError error,
native_file_util.cc 38 using base::PlatformFileError;
79 PlatformFileError NativeFileUtil::CreateOrOpen(
88 PlatformFileError error_code = base::PLATFORM_FILE_OK;
94 PlatformFileError NativeFileUtil::Close(PlatformFile file_handle) {
100 PlatformFileError NativeFileUtil::EnsureFileExists(
106 PlatformFileError error_code = base::PLATFORM_FILE_OK;
124 PlatformFileError NativeFileUtil::CreateDirectory(
149 PlatformFileError NativeFileUtil::GetFileInfo(
168 PlatformFileError NativeFileUtil::Touch(
178 PlatformFileError NativeFileUtil::Truncate
    [all...]
async_file_util.h 48 void(base::PlatformFileError result)> StatusCallback;
54 void(base::PlatformFileError result,
59 void(base::PlatformFileError result,
63 void(base::PlatformFileError result,
68 void(base::PlatformFileError result,
73 void(base::PlatformFileError result,
file_system_operation.h 62 typedef base::Callback<void(base::PlatformFileError result)> StatusCallback;
67 void(base::PlatformFileError result,
74 void(base::PlatformFileError result,
86 void(base::PlatformFileError result,
112 void(base::PlatformFileError result,
119 typedef base::Callback<void(base::PlatformFileError result,
  /external/chromium_org/base/files/
file_util_proxy.h 29 typedef Callback<void(PlatformFileError)> StatusCallback;
31 typedef Callback<void(PlatformFileError,
34 typedef Callback<void(PlatformFileError,
37 typedef Callback<void(PlatformFileError,
39 typedef Callback<void(PlatformFileError,
42 typedef Callback<void(PlatformFileError,
45 typedef Callback<PlatformFileError(PlatformFile*, bool*)> CreateOrOpenTask;
46 typedef Callback<PlatformFileError(PlatformFile)> CloseTask;
47 typedef Callback<PlatformFileError(void)> FileTask;
  /external/chromium_org/chrome/browser/sync_file_system/local/
canned_syncable_file_system.h 56 typedef base::Callback<void(base::PlatformFileError)> StatusCallback;
80 base::PlatformFileError OpenFileSystem();
103 base::PlatformFileError CreateDirectory(const fileapi::FileSystemURL& url);
104 base::PlatformFileError CreateFile(const fileapi::FileSystemURL& url);
105 base::PlatformFileError Copy(const fileapi::FileSystemURL& src_url,
107 base::PlatformFileError Move(const fileapi::FileSystemURL& src_url,
109 base::PlatformFileError TruncateFile(const fileapi::FileSystemURL& url,
111 base::PlatformFileError TouchFile(const fileapi::FileSystemURL& url,
114 base::PlatformFileError Remove(const fileapi::FileSystemURL& url,
116 base::PlatformFileError FileExists(const fileapi::FileSystemURL& url)
    [all...]
  /external/chromium_org/base/
platform_file.cc 21 PlatformFileError* error) {
  /external/chromium_org/content/child/fileapi/
webfilesystem_callback_adapters.h 25 base::PlatformFileError error);
  /external/chromium_org/ppapi/shared_impl/
file_type_conversion.h 17 base::PlatformFileError error_code);
  /external/chromium_org/chrome/browser/media_galleries/win/
mtp_device_delegate_impl_win.h 78 const base::Callback<base::PlatformFileError(void)>& task,
79 const base::Callback<void(base::PlatformFileError)>& reply);
82 const base::Callback<base::PlatformFileError(void)> task;
83 const base::Callback<void(base::PlatformFileError)> reply;
147 base::PlatformFileError error);
160 base::PlatformFileError error);
172 base::PlatformFileError error);
  /external/chromium_org/content/renderer/pepper/
pepper_file_io_host.h 35 typedef base::Callback<void (base::PlatformFileError)>
53 base::PlatformFileError error_code,
82 // Callback handlers. These mostly convert the PlatformFileError to the
87 base::PlatformFileError error_code);
89 base::PlatformFileError error_code,
93 base::PlatformFileError error_code,
98 base::PlatformFileError error_code,
101 base::PlatformFileError error_code,
104 base::PlatformFileError error_code,
139 typedef base::Callback<void (base::PlatformFileError, base::PassPlatformFile)
    [all...]
  /external/chromium_org/chrome/browser/chromeos/drive/
fileapi_worker.h 48 void(base::PlatformFileError result)> StatusCallback;
50 void(base::PlatformFileError result,
53 void(base::PlatformFileError result,
57 void(base::PlatformFileError result,
63 void(base::PlatformFileError result,
68 void(base::PlatformFileError result,

Completed in 1032 milliseconds

1 2 3 4 5 6 7 8 910