Searched refs:SaveFile (Results 1 - 17 of 17) sorted by relevance

/external/chromium_org/content/browser/download/
H A Dsave_file.cc12 // TODO(asanka): SaveFile should use the target directory of the save package as
14 // Unfortunately, as it is, constructors of SaveFile don't always
16 SaveFile::SaveFile(const SaveFileCreateInfo* info, bool calculate_hash) function in class:content::SaveFile
32 SaveFile::~SaveFile() {
36 DownloadInterruptReason SaveFile::Initialize() {
40 DownloadInterruptReason SaveFile::AppendDataToFile(const char* data,
45 DownloadInterruptReason SaveFile::Rename(const base::FilePath& full_path) {
49 void SaveFile
[all...]
H A Dsave_file.h15 // SaveFile ----------------------------------------------------------------
20 // canceled, the SaveFile is destroyed. One SaveFile object represents one item
22 class SaveFile { class in namespace:content
24 explicit SaveFile(const SaveFileCreateInfo* info, bool calculate_hash);
25 virtual ~SaveFile();
54 DISALLOW_COPY_AND_ASSIGN(SaveFile);
H A Dsave_file_manager.h7 // The SaveFileManager owns a set of SaveFile objects, each of which connects
23 // call SaveFile's method to persist data.
55 // saving, the SavePackage will notify the SaveFileManage to cancel all SaveFile
81 class SaveFile;
117 // Cancel a SaveFile instance which has specified save id.
175 SaveFile* LookupSaveFile(int save_id);
220 // Unique ID for the next SaveFile object.
224 typedef base::hash_map<int, SaveFile*> SaveFileMap;
H A Dsave_file_manager.cc50 SaveFile* SaveFileManager::LookupSaveFile(int save_id) {
212 // to create a SaveFile which will hold and finally destroy |info|. It will
218 SaveFile* save_file = new SaveFile(info, false);
235 // cancel message. We just delete the data since the SaveFile has been deleted.
240 SaveFile* save_file = LookupSaveFile(save_id);
273 SaveFile* save_file = it->second;
407 SaveFile* save_file = it->second;
434 // before this function runs. So if we can not find corresponding SaveFile by
440 SaveFile* save_fil
[all...]
/external/chromium_org/third_party/sfntly/cpp/src/sample/chromium/
H A Dchrome_subsetter.cc62 bool SaveFile(const char* output_file_path, const unsigned char* output_buffer, function
128 int result = SaveFile(argv[2], output_buffer, output_length) ? 1 : 0;
/external/sfntly/cpp/src/sample/chromium/
H A Dchrome_subsetter.cc62 bool SaveFile(const char* output_file_path, const unsigned char* output_buffer, function
128 int result = SaveFile(argv[2], output_buffer, output_length) ? 1 : 0;
/external/zopfli/src/zopfli/
H A Dzopfli_bin.c71 static void SaveFile(const char* filename, function
99 SaveFile(outfilename, out, outsize);
/external/tinyxml2/
H A Dtinyxml2.cpp1566 int XMLDocument::SaveFile( const char* filename ) function in class:XMLDocument
1582 SaveFile(fp);
1588 int XMLDocument::SaveFile( FILE* fp ) function in class:XMLDocument
H A Dtinyxml2.h1078 int SaveFile( const char* filename );
1087 int SaveFile( FILE* );
/external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
H A Dtinyxml.h1417 bool SaveFile() const;
1421 bool SaveFile( const char * filename ) const;
1429 bool SaveFile( FILE* ) const;
1436 bool SaveFile( const std::string& filename ) const ///< STL std::string version. function in class:TiXmlDocument
1438 return SaveFile( filename.c_str() );
H A Dtinyxml.cpp960 bool TiXmlDocument::SaveFile() const function in class:TiXmlDocument
962 return SaveFile( Value() );
1084 bool TiXmlDocument::SaveFile( const char * filename ) const
1090 bool result = SaveFile( fp );
1098 bool TiXmlDocument::SaveFile( FILE* fp ) const
/external/sfntly/cpp/src/test/tinyxml/
H A Dtinyxml.h1417 bool SaveFile() const;
1421 bool SaveFile( const char * filename ) const;
1429 bool SaveFile( FILE* ) const;
1436 bool SaveFile( const std::string& filename ) const ///< STL std::string version. function in class:TiXmlDocument
1438 return SaveFile( filename.c_str() );
H A Dtinyxml.cpp960 bool TiXmlDocument::SaveFile() const function in class:TiXmlDocument
962 return SaveFile( Value() );
1084 bool TiXmlDocument::SaveFile( const char * filename ) const
1090 bool result = SaveFile( fp );
1098 bool TiXmlDocument::SaveFile( FILE* fp ) const
/external/tinyxml/
H A Dtinyxml.h1245 bool SaveFile() const;
1249 bool SaveFile( const char * filename ) const;
1257 bool SaveFile( const std::string& filename ) const ///< STL std::string version. function in class:TiXmlDocument
1260 return ( f.buffer && SaveFile( f.buffer ));
H A Dxmltest.cpp134 doc.SaveFile();
535 doc.SaveFile( "utf8testout.xml" );
874 doc.SaveFile( "test7.xml" );
H A Dtinyxml.cpp947 bool TiXmlDocument::SaveFile() const function in class:TiXmlDocument
952 if ( buf.buffer && SaveFile( buf.buffer ) )
1086 bool TiXmlDocument::SaveFile( const char * filename ) const
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_config_util.cpp197 ret = xml.SaveFile(file_name) == XML_SUCCESS;

Completed in 2711 milliseconds