Searched refs:OpenFile (Results 1 - 25 of 198) sorted by relevance

12345678

/external/chromium_org/chrome/browser/chromeos/file_system_provider/operations/
H A Dopen_file.cc16 OpenFile::OpenFile( function in class:chromeos::file_system_provider::operations::OpenFile
28 OpenFile::~OpenFile() {
31 bool OpenFile::Execute(int request_id) {
61 void OpenFile::OnSuccess(int request_id,
64 // File handle is the same as request id of the OpenFile operation.
68 void OpenFile::OnError(int /* request_id */,
H A Dopen_file.h30 class OpenFile : public Operation { class in namespace:chromeos::file_system_provider::operations
32 OpenFile(extensions::EventRouter* event_router,
37 virtual ~OpenFile();
53 DISALLOW_COPY_AND_ASSIGN(OpenFile);
/external/chromium_org/sandbox/win/src/
H A Dpolicy_params.h22 POLPARAMS_BEGIN(OpenFile)
27 POLPARAMS_END(OpenFile)
35 COMPILE_ASSERT(OpenFile::NAME == static_cast<int>(FileName::NAME),
37 COMPILE_ASSERT(OpenFile::BROKER == static_cast<int>(FileName::BROKER),
H A Dfilesystem_dispatcher.cc98 CountedParameterSet<OpenFile> params;
99 params[OpenFile::NAME] = ParamPickerMake(filename);
100 params[OpenFile::ACCESS] = ParamPickerMake(desired_access);
101 params[OpenFile::OPTIONS] = ParamPickerMake(create_options);
102 params[OpenFile::BROKER] = ParamPickerMake(broker);
140 CountedParameterSet<OpenFile> params;
141 params[OpenFile::NAME] = ParamPickerMake(filename);
142 params[OpenFile::ACCESS] = ParamPickerMake(desired_access);
143 params[OpenFile::OPTIONS] = ParamPickerMake(open_options);
144 params[OpenFile
[all...]
H A Dfilesystem_interception.cc56 CountedParameterSet<OpenFile> params;
57 params[OpenFile::NAME] = ParamPickerMake(name);
58 params[OpenFile::ACCESS] = ParamPickerMake(desired_access);
59 params[OpenFile::OPTIONS] = ParamPickerMake(options);
60 params[OpenFile::BROKER] = ParamPickerMake(broker);
127 CountedParameterSet<OpenFile> params;
128 params[OpenFile::NAME] = ParamPickerMake(name);
129 params[OpenFile::ACCESS] = ParamPickerMake(desired_access);
130 params[OpenFile::OPTIONS] = ParamPickerMake(options);
131 params[OpenFile
[all...]
/external/chromium_org/ppapi/thunk/
H A Dppb_flash_file_fileref_thunk.cc25 int32_t OpenFile(PP_Resource file_ref_id, int32_t mode, PP_FileHandle* file) { function in namespace:ppapi::thunk::__anon10267
46 &OpenFile,
H A Dppb_flash_file_modulelocal_thunk.cc23 int32_t OpenFile(PP_Instance instance, function in namespace:ppapi::thunk::__anon10268
30 return enter.functions()->OpenFile(instance, path, mode, file);
93 &OpenFile,
/external/llvm/lib/Support/
H A DDataStream.cpp67 std::error_code OpenFile(const std::string &Filename) { function in class:__anon25908::DataFileStreamer
84 if (std::error_code e = s->OpenFile(Filename)) {
/external/chromium_org/base/test/
H A Dperf_log.cc21 perf_log_file = OpenFile(log_file, "w");
/external/chromium_org/third_party/npapi/npspy/common/
H A Dutils.cpp46 return (HFILE_ERROR != OpenFile(szFileName, &of, OF_EXIST));
70 HFILE hFile = OpenFile(szFileName, &of, OF_CREATE | OF_WRITE);
81 HFILE hFile = OpenFile(szFileName, &of, OF_READ | OF_WRITE);
/external/chromium_org/storage/browser/database/
H A Dvfs_backend.h21 static base::File OpenFile(const base::FilePath& file_path,
/external/chromium_org/third_party/webrtc/base/
H A Dfileutils_unittest.cc34 fs = Filesystem::OpenFile(path, "wb");
42 fs = Filesystem::OpenFile(path, "rb");
60 FileStream* fs = Filesystem::OpenFile(path, "rb");
77 scoped_ptr<FileStream> fs(Filesystem::OpenFile(path, "wb"));
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/tools/
H A Drtp_file_source.h54 bool OpenFile(const std::string& file_name);
/external/webrtc/src/system_wrappers/interface/
H A Dfile_wrapper.h36 virtual int OpenFile(const char* fileNameUTF8,
72 // Rewinds the file to the start. Only available when OpenFile() has been
/external/chromium_org/chrome/browser/chromeos/drive/file_system/
H A Dopen_file_operation_unittest.cc48 operation_->OpenFile(
74 operation_->OpenFile(
94 operation_->OpenFile(
113 operation_->OpenFile(
146 operation_->OpenFile(
181 operation_->OpenFile(
211 operation_->OpenFile(
228 operation_->OpenFile(
/external/chromium_org/ppapi/c/private/
H A Dppb_flash_file.h42 int32_t (*OpenFile)(PP_Instance instance, member in struct:PPB_Flash_File_ModuleLocal_3_0
105 int32_t (*OpenFile)(PP_Resource file_ref_id, member in struct:PPB_Flash_File_FileRef
/external/chromium_org/ppapi/cpp/private/
H A Dflash_file.h28 static PP_FileHandle OpenFile(const InstanceHandle& instance,
63 static PP_FileHandle OpenFile(const pp::FileRef& resource,
H A Dflash_file.cc38 PP_FileHandle FileModuleLocal::OpenFile(const InstanceHandle& instance, function in class:pp::flash::FileModuleLocal
45 OpenFile(instance.pp_instance(), path.c_str(), mode, &file_handle);
154 PP_FileHandle FileFileRef::OpenFile(const pp::FileRef& resource, function in class:pp::flash::FileFileRef
160 OpenFile(resource.pp_resource(), mode, &file_handle);
/external/chromium_org/third_party/libjingle/source/talk/media/devices/
H A Dfilevideocapturer_unittest.cc47 bool OpenFile(const std::string& filename) { function in class:__anon12662::FileVideoCapturerTest
97 EXPECT_FALSE(OpenFile("NotmeNotme"));
101 EXPECT_TRUE(OpenFile("captured-320x240-2s-48.frames"));
110 EXPECT_TRUE(OpenFile("captured-320x240-2s-48.frames"));
127 EXPECT_TRUE(OpenFile("captured-320x240-2s-48.frames"));
144 EXPECT_TRUE(OpenFile("captured-320x240-2s-48.frames"));
157 EXPECT_TRUE(OpenFile("captured-320x240-2s-48.frames"));
179 EXPECT_TRUE(OpenFile("1.frame_plus_1.byte"));
/external/chromium_org/chrome/common/media_galleries/
H A Dpicasa_types.cc14 base::File OpenFile(const base::FilePath& directory_path, function in namespace:picasa::__anon5686
23 return OpenFile(directory_path, column_name + "." + kPmpExtension);
57 : indicator_file(OpenFile(directory_path, "0")),
/external/chromium_org/content/child/npapi/
H A Dplugin_stream_posix.cc37 temp_file_ = base::OpenFile(temp_file_path_, "a");
/external/chromium_org/third_party/webrtc/system_wrappers/interface/
H A Dfile_wrapper.h36 virtual int OpenFile(const char* file_name_utf8,
80 // Rewinds the file to the start. Only available when OpenFile() has been
/external/lzma/CPP/7zip/Archive/7z/
H A D7zFolderOutStream.cpp37 HRESULT CFolderOutStream::OpenFile() function in class:NArchive::N7z::CFolderOutStream
78 RINOK(OpenFile());
118 RINOK(OpenFile());
143 RINOK(OpenFile());
/external/webrtc/src/system_wrappers/source/
H A Dfile_impl.h31 virtual int OpenFile(const char* fileNameUTF8,
/external/chromium_org/chrome/browser/chromeos/drive/fileapi/
H A Dfileapi_worker_unittest.cc43 virtual void OpenFile(const base::FilePath& file_path,
67 // Helper function of testing OpenFile() for write access. It checks that the
100 // Helper function of testing OpenFile() for read access. It checks that the
172 OpenFile(kDummyPath,
194 OpenFile(kDummyPath,
216 OpenFile(kDummyPath,
238 OpenFile(kDummyPath,
257 OpenFile(kDummyPath,

Completed in 531 milliseconds

12345678