Searched refs:archive_path (Results 1 – 6 of 6) sorted by relevance
/third_party/cef/libcef_dll/wrapper/ |
D | cef_resource_manager.cc | 174 const std::string& archive_path, in ArchiveProvider() argument 177 archive_path_(archive_path), in ArchiveProvider() 227 const std::string& archive_path, in LoadOnFileThread() argument 234 CefStreamReader::CreateForFile(archive_path); in LoadOnFileThread() 238 DLOG(WARNING) << "Empty archive file: " << archive_path; in LoadOnFileThread() 242 DLOG(WARNING) << "Failed to load archive file: " << archive_path; in LoadOnFileThread() 460 const std::string& archive_path, in AddArchiveProvider() argument 464 AddProvider(new ArchiveProvider(url_path, archive_path, password), order, in AddArchiveProvider()
|
/third_party/boost/tools/boostbook/ |
D | setup_boostbook.py | 53 def unzip( archive_path, result_dir ): argument 54 z = zipfile.ZipFile( archive_path, 'r', zipfile.ZIP_DEFLATED ) 65 def gunzip( archive_path, result_dir ): argument 66 tar = tarfile.open( archive_path, 'r:gz' )
|
/third_party/boost/libs/predef/tools/ci/ |
D | common.py | 384 def unpack_archive( archive_path ): argument 385 utils.log( 'Unpacking archive ("%s")...' % archive_path ) 387 archive_name = os.path.basename( archive_path ) 395 tar = tarfile.open( archive_path, 'r:%s' % mode ) 408 z = zipfile.ZipFile( archive_path, 'r', zipfile.ZIP_DEFLATED )
|
/third_party/cef/tools/automate/ |
D | automate-git.py | 192 handle, archive_path = tempfile.mkstemp(suffix='.zip') 197 archive_path = src 201 if not zipfile.is_zipfile(archive_path): 207 zf = zipfile.ZipFile(archive_path, 'r') 215 if temporary and os.path.exists(archive_path): 216 os.remove(archive_path)
|
/third_party/cef/include/wrapper/ |
D | cef_resource_manager.h | 248 const std::string& archive_path,
|
/third_party/cef/tests/ceftests/ |
D | resource_manager_unittest.cc | 855 const std::string& archive_path = in TEST() local 859 EXPECT_TRUE(CefZipDirectory(file_dir, archive_path, false)); in TEST() 861 state.manager_->AddArchiveProvider(kUrlBase, archive_path, std::string(), 0, in TEST()
|