Searched refs:archiveName (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython3/Mac/BuildScript/ |
D | build-installer.py | 727 def extractArchive(builddir, archiveName): argument 742 if archiveName.endswith('.tar.gz'): 743 retval = os.path.basename(archiveName[:-7]) 749 fp = os.popen("tar zxf %s 2>&1"%(shellQuote(archiveName),), 'r') 751 elif archiveName.endswith('.tar.bz2'): 752 retval = os.path.basename(archiveName[:-8]) 755 fp = os.popen("tar jxf %s 2>&1"%(shellQuote(archiveName),), 'r') 757 elif archiveName.endswith('.tar'): 758 retval = os.path.basename(archiveName[:-4]) 761 fp = os.popen("tar xf %s 2>&1"%(shellQuote(archiveName),), 'r') [all …]
|
/external/python/cpython2/Mac/BuildScript/ |
D | build-installer.py | 753 def extractArchive(builddir, archiveName): argument 768 if archiveName.endswith('.tar.gz'): 769 retval = os.path.basename(archiveName[:-7]) 775 fp = os.popen("tar zxf %s 2>&1"%(shellQuote(archiveName),), 'r') 777 elif archiveName.endswith('.tar.bz2'): 778 retval = os.path.basename(archiveName[:-8]) 781 fp = os.popen("tar jxf %s 2>&1"%(shellQuote(archiveName),), 'r') 783 elif archiveName.endswith('.tar'): 784 retval = os.path.basename(archiveName[:-4]) 787 fp = os.popen("tar xf %s 2>&1"%(shellQuote(archiveName),), 'r') [all …]
|
/external/lzma/CPP/7zip/UI/Client7z/ |
D | Client7z.cpp | 738 FString archiveName = CmdStringToFString(args[2]); in main() local 776 if (!outFileStreamSpec->Create(archiveName, false)) in main() 868 if (!fileSpec->Open(archiveName)) in main() 870 PrintError("Can not open archive file", archiveName); in main() 884 PrintError("Can not open file as archive", archiveName); in main()
|
/external/lzma/CPP/7zip/Bundles/SFXSetup/ |
D | SfxSetup.cpp | 146 UString archiveName, switches; in WinMain() local 150 NCommandLineParser::SplitCommandLine(GetCommandLineW(), archiveName, switches); in WinMain()
|
/external/conscrypt/benchmark-android/ |
D | build.gradle | 68 archiveName = 'bundled-deps.jar'
|
/external/emma/core/java12/com/vladium/emma/instr/ |
D | InstrProcessorST.java | 129 final String archiveName = Files.getFileName (archive) + IAppConstants.APP_NAME_LC; in handleArchiveStart() local 134 m_tempArchiveFile = Files.createTempFile (parentDir, archiveName, archiveExt); in handleArchiveStart()
|