Searched refs:file_flags (Results 1 - 25 of 38) sorted by relevance

12

/external/chromium_org/webkit/browser/fileapi/
H A Dtest_file_set.cc51 int file_flags = base::PLATFORM_FILE_CREATE_ALWAYS | local
54 base::CreatePlatformFile(path, file_flags, &created, &error_code);
H A Dnative_file_util.h43 int file_flags,
H A Dobfuscated_file_util.h112 int file_flags,
285 int file_flags,
330 int file_flags,
H A Dasync_file_util_adapter.h44 int file_flags,
H A Dfile_system_file_util.h66 int file_flags,
H A Dlocal_file_util.h36 int file_flags,
H A Dfile_system_operation_impl.h71 int file_flags,
150 const OpenFileCallback& callback, int file_flags);
H A Dobfuscated_file_util.cc277 const FileSystemURL& url, int file_flags,
279 PlatformFileError error = CreateOrOpenInternal(context, url, file_flags,
282 file_flags & base::PLATFORM_FILE_WRITE &&
1053 FileInfo* dest_file_info, int file_flags, PlatformFile* handle) {
1070 DCHECK(!file_flags);
1090 dest_local_path, file_flags, handle, &created);
1093 DCHECK(!file_flags); // file_flags is only used by CreateOrOpen.
1336 const FileSystemURL& url, int file_flags,
1338 DCHECK(!(file_flags
275 CreateOrOpen( FileSystemOperationContext* context, const FileSystemURL& url, int file_flags, PlatformFile* file_handle, bool* created) argument
1049 CreateFile( FileSystemOperationContext* context, const base::FilePath& src_file_path, const FileSystemURL& dest_url, FileInfo* dest_file_info, int file_flags, PlatformFile* handle) argument
1334 CreateOrOpenInternal( FileSystemOperationContext* context, const FileSystemURL& url, int file_flags, PlatformFile* file_handle, bool* created) argument
[all...]
H A Dfile_system_operation_impl.cc201 int file_flags,
205 if (file_flags &
216 url, callback, file_flags),
450 int file_flags) {
452 operation_context_.Pass(), url, file_flags,
200 OpenFile(const FileSystemURL& url, int file_flags, const OpenFileCallback& callback) argument
448 DoOpenFile(const FileSystemURL& url, const OpenFileCallback& callback, int file_flags) argument
H A Dasync_file_util.h97 // If PLATFORM_FILE_CREATE is set in |file_flags| it always tries to create
107 int file_flags,
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dfileapi_worker.cc155 void OpenFileAfterFileSystemOpenFile(int file_flags, argument
174 if (file_flags & (base::PLATFORM_FILE_CREATE |
176 file_flags &= ~(base::PLATFORM_FILE_CREATE |
178 file_flags |= base::PLATFORM_FILE_OPEN;
179 } else if (file_flags & base::PLATFORM_FILE_CREATE_ALWAYS) {
180 file_flags &= ~base::PLATFORM_FILE_CREATE_ALWAYS;
181 file_flags |= base::PLATFORM_FILE_OPEN_TRUNCATED;
190 local_path, file_flags, static_cast<bool*>(NULL), result),
322 int file_flags,
328 if (file_flags
321 OpenFile(const base::FilePath& file_path, int file_flags, const OpenFileCallback& callback, FileSystemInterface* file_system) argument
[all...]
H A Dasync_file_util.h34 int file_flags,
H A Dfileapi_worker.h161 // Opens the file at |file_path| with options |file_flags|.
164 int file_flags,
/external/chromium_org/chrome/installer/util/
H A Dlogging_installer_unittest.cc77 const int file_flags = base::PLATFORM_FILE_OPEN | local
81 base::CreatePlatformFile(temp_file, file_flags, NULL, NULL));
107 const int file_flags = base::PLATFORM_FILE_CREATE | local
113 base::CreatePlatformFile(temp_file_move_dest, file_flags, NULL, NULL));
H A Dlogging_installer.cc40 const int file_flags = base::PLATFORM_FILE_OPEN | local
45 base::CreatePlatformFile(log_file, file_flags, NULL, NULL));
/external/chromium_org/base/files/
H A Dfile_util_proxy.cc81 int file_flags = local
88 file_handle_ = CreatePlatformFile(file_path_, file_flags, NULL, &error_);
191 const FilePath& file_path, int file_flags,
200 *file_handle = CreatePlatformFile(file_path, file_flags, created, &error);
229 const FilePath& file_path, int file_flags,
233 base::Bind(&CreateOrOpenAdapter, file_path, file_flags),
190 CreateOrOpenAdapter( const FilePath& file_path, int file_flags, PlatformFile* file_handle, bool* created) argument
227 CreateOrOpen( TaskRunner* task_runner, const FilePath& file_path, int file_flags, const CreateOrOpenCallback& callback) argument
H A Dscoped_temp_dir_unittest.cc101 int file_flags = base::PLATFORM_FILE_CREATE_ALWAYS | local
105 base::PlatformFile file = base::CreatePlatformFile(file_path, file_flags,
H A Dfile_util_proxy.h50 // callback. If PLATFORM_FILE_CREATE is set in |file_flags| it always tries to
57 int file_flags,
/external/chromium/base/memory/
H A Dscoped_temp_dir_unittest.cc96 int file_flags = base::PLATFORM_FILE_CREATE_ALWAYS | local
100 base::PlatformFile file = base::CreatePlatformFile(file_path, file_flags,
/external/openfst/src/include/fst/
H A Dfst.h694 int32 file_flags = 0; local
696 file_flags |= FstHeader::HAS_ISYMBOLS;
698 file_flags |= FstHeader::HAS_OSYMBOLS;
700 file_flags |= FstHeader::IS_ALIGNED;
701 hdr->SetFlags(file_flags);
722 int32 file_flags = 0; local
724 file_flags |= FstHeader::HAS_ISYMBOLS;
726 file_flags |= FstHeader::HAS_OSYMBOLS;
728 file_flags |= FstHeader::IS_ALIGNED;
729 hdr->SetFlags(file_flags);
[all...]
/external/chromium_org/content/browser/fileapi/
H A Dlocal_file_util_unittest.cc95 int file_flags = base::PLATFORM_FILE_CREATE | local
102 file_flags, file_handle, created);
162 int file_flags = base::PLATFORM_FILE_OPEN | base::PLATFORM_FILE_READ; local
166 context.get(), url, file_flags, &file_handle, &created));
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dfst.h507 int32 file_flags = 0; local
509 file_flags |= FstHeader::HAS_ISYMBOLS;
511 file_flags |= FstHeader::HAS_OSYMBOLS;
512 hdr->SetFlags(file_flags);
/external/chromium/base/
H A Dfile_util_proxy.h58 // If PLATFORM_FILE_CREATE is set in |file_flags| it always tries to create
63 int file_flags,
/external/chromium_org/chrome/browser/media_galleries/fileapi/
H A Ddevice_media_async_file_util.h38 int file_flags,
/external/chromium_org/chrome/browser/sync_file_system/local/
H A Dsyncable_file_system_operation.h72 int file_flags,

Completed in 539 milliseconds

12