Searched refs:tmpdir (Results 1 – 6 of 6) sorted by relevance
/packages/modules/Bluetooth/system/build/dpkg/modp_b64/ |
D | gen-src-pkg.sh | 15 tmpdir=$(mktemp -d) 16 echo Generating source package in "${tmpdir}". 19 cd "${tmpdir}" 41 cp -aT "${scriptdir}/debian/" "${tmpdir}/${pkgdir}/debian/" 45 mv "${tmpdir}/${pkgdir}/debian/modp-b64.install.docker" \ 46 "${tmpdir}/${pkgdir}/debian/modp-b64.install" 48 rm -f "${tmpdir}/${pkgdir}/debian/modp-b64.install.docker" 53 cd "${tmpdir}/${pkgdir}" 57 cd "${tmpdir}" 63 echo Removing temporary directory "${tmpdir}". [all …]
|
/packages/modules/Bluetooth/system/build/dpkg/libchrome/ |
D | gen-src-pkg.sh | 22 tmpdir=$(mktemp -d) 23 echo Generating source package in "${tmpdir}". 26 cd "${tmpdir}" 58 cp -aT "${scriptdir}/debian/" "${tmpdir}/${pkgdir}/debian/" 62 mv "${tmpdir}/${pkgdir}/debian/libchrome.install.docker" \ 63 "${tmpdir}/${pkgdir}/debian/libchrome.install" 65 rm -f "${tmpdir}/${pkgdir}/debian/libchrome.install.docker" 69 cd "${tmpdir}/${pkgdir}" 73 cd "${tmpdir}" 79 echo Removing temporary directory "${tmpdir}". [all …]
|
/packages/modules/Bluetooth/system/build/dpkg/sysprop/ |
D | gen-src-pkg.sh | 15 tmpdir=$(mktemp -d) 16 echo Generating source package in "${tmpdir}". 18 cd "${tmpdir}" 41 cp -aT "${scriptdir}/debian/" "${tmpdir}/${pkgdir}/debian/" 44 cd "${tmpdir}/${pkgdir}" 48 cd "${tmpdir}" 54 echo Removing temporary directory "${tmpdir}". 55 rm -rf "${tmpdir}"
|
/packages/modules/common/tools/ |
D | finalize_sdk.py | 48 tmpdir = Path(tempfile.TemporaryDirectory().name) 49 tmpdir.mkdir() 52 print('Copying %s to %s ...' % (artifact_path, tmpdir)) 53 shutil.copy(artifact_path, tmpdir) 61 fetch_cmd.append(str(tmpdir)) 70 return os.path.join(tmpdir, ARTIFACT_MODULES_INFO) 73 tmpdir = Path(tempfile.TemporaryDirectory().name) 74 tmpdir.mkdir() 77 print('Copying %s to %s ...' % (artifact_path, tmpdir)) 79 shutil.copy(file, tmpdir) [all …]
|
/packages/apps/Traceur/src_common/com/android/traceur/ |
D | TraceUtils.java | 196 public static Process exec(String cmd, String tmpdir) throws IOException { in exec() argument 197 return exec(cmd, tmpdir, true); in exec() 200 public static Process exec(String cmd, String tmpdir, boolean logOutput) throws IOException { in exec() argument 202 String[] envp = {"TMPDIR=" + tmpdir}; in exec() 203 envp = tmpdir == null ? null : envp; in exec() 216 public static Process execWithTimeout(String cmd, String tmpdir, long timeout) in execWithTimeout() argument 218 return execWithTimeout(cmd, tmpdir, timeout, null); in execWithTimeout() 222 public static Process execWithTimeout(String cmd, String tmpdir, long timeout, byte[] input) in execWithTimeout() argument 224 Process process = exec(cmd, tmpdir, true); in execWithTimeout()
|
/packages/modules/Bluetooth/system/tools/scripts/ |
D | viewbtsnoop.sh | 33 TMPDIR=$(mktemp --tmpdir -d "viewbtsnooz_XXXXX")
|