/external/chromium/chrome/browser/download/ |
save_file.cc | 11 SaveFile::SaveFile(const SaveFileCreateInfo* info) 20 SaveFile::~SaveFile() {
|
save_file.h | 15 // SaveFile ---------------------------------------------------------------- 20 // canceled, the SaveFile is destroyed. One SaveFile object represents one item 22 class SaveFile : public BaseFile { 24 explicit SaveFile(const SaveFileCreateInfo* info); 25 ~SaveFile(); 39 DISALLOW_COPY_AND_ASSIGN(SaveFile);
|
save_file_manager.h | 7 // The SaveFileManager owns a set of SaveFile objects, each of which connects 23 // call SaveFile's method to persist data. 56 // cancel all SaveFile job. 74 class SaveFile; 114 // Cancel a SaveFile instance which has specified save id. 178 SaveFile* LookupSaveFile(int save_id); 223 // Unique ID for the next SaveFile object. 227 typedef base::hash_map<int, SaveFile*> SaveFileMap;
|
save_file_manager.cc | 56 SaveFile* SaveFileManager::LookupSaveFile(int save_id) { 222 // to create a SaveFile which will hold and finally destroy |info|. It will 227 SaveFile* save_file = new SaveFile(info); 244 // cancel message. We just delete the data since the SaveFile has been deleted. 249 SaveFile* save_file = LookupSaveFile(save_id); 277 SaveFile* save_file = it->second; 409 SaveFile* save_file = it->second; 425 // If we did not find SaveFile in map, the saving job should either get 438 // before this function runs. So if we can not find corresponding SaveFile b [all...] |
/external/chromium_org/content/browser/download/ |
save_file.cc | 13 // TODO(asanka): SaveFile should use the target directory of the save package as 15 // Unfortunately, as it is, constructors of SaveFile don't always 17 SaveFile::SaveFile(const SaveFileCreateInfo* info, bool calculate_hash) 33 SaveFile::~SaveFile() { 37 DownloadInterruptReason SaveFile::Initialize() { 41 DownloadInterruptReason SaveFile::AppendDataToFile(const char* data, 46 DownloadInterruptReason SaveFile::Rename(const base::FilePath& full_path) { 50 void SaveFile::Detach() [all...] |
save_file.h | 15 // SaveFile ---------------------------------------------------------------- 20 // canceled, the SaveFile is destroyed. One SaveFile object represents one item 22 class SaveFile { 24 explicit SaveFile(const SaveFileCreateInfo* info, bool calculate_hash); 25 virtual ~SaveFile(); 54 DISALLOW_COPY_AND_ASSIGN(SaveFile);
|
save_file_manager.h | 7 // 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;
|
save_file_manager.cc | 50 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; 408 SaveFile* save_file = it->second; 435 // before this function runs. So if we can not find corresponding SaveFile by 441 SaveFile* save_file = LookupSaveFile(save_id) [all...] |
/external/chromium_org/third_party/sfntly/cpp/src/sample/chromium/ |
chrome_subsetter.cc | 62 bool SaveFile(const char* output_file_path, const unsigned char* output_buffer, 128 int result = SaveFile(argv[2], output_buffer, output_length) ? 1 : 0;
|
/external/sfntly/cpp/src/sample/chromium/ |
chrome_subsetter.cc | 62 bool SaveFile(const char* output_file_path, const unsigned char* output_buffer, 128 int result = SaveFile(argv[2], output_buffer, output_length) ? 1 : 0;
|
/external/tinyxml2/ |
tinyxml2.cpp | [all...] |
tinyxml2.h | [all...] |
/external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/ |
tinyxml.h | [all...] |
tinyxml.cpp | 960 bool TiXmlDocument::SaveFile() const 962 return SaveFile( Value() ); 1084 bool TiXmlDocument::SaveFile( const char * filename ) const 1090 bool result = SaveFile( fp ); 1098 bool TiXmlDocument::SaveFile( FILE* fp ) const [all...] |
/external/sfntly/cpp/src/test/tinyxml/ |
tinyxml.h | [all...] |
tinyxml.cpp | 960 bool TiXmlDocument::SaveFile() const 962 return SaveFile( Value() ); 1084 bool TiXmlDocument::SaveFile( const char * filename ) const 1090 bool result = SaveFile( fp ); 1098 bool TiXmlDocument::SaveFile( FILE* fp ) const [all...] |
/external/tinyxml/ |
tinyxml.h | [all...] |
xmltest.cpp | 134 doc.SaveFile(); 535 doc.SaveFile( "utf8testout.xml" ); 874 doc.SaveFile( "test7.xml" );
|
tinyxml.cpp | 947 bool TiXmlDocument::SaveFile() const 952 if ( buf.buffer && SaveFile( buf.buffer ) ) 1086 bool TiXmlDocument::SaveFile( const char * filename ) const [all...] |
/external/bluetooth/bluedroid/btif/src/ |
btif_config_util.cpp | 162 ret = xml.SaveFile(file_name) == XML_SUCCESS;
|