Home
last modified time | relevance | path

Searched refs:tempdir2 (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/lite/tools/make/
Ddownload_dependencies.sh90 tempdir2=$(mktemp -d)
91 unzip ${filepath} -d ${tempdir2}
95 if ls ${tempdir2}/*/* 1> /dev/null 2>&1; then
98 cp -R ${tempdir2}/*/* ${dir}/
100 cp -R ${tempdir2}/* ${dir}/
102 rm -rf ${tempdir2}
/external/tensorflow/tensorflow/lite/micro/tools/make/
Ddownload_and_extract.sh117 local tempdir2=$(mktemp -d)
173 unzip ${tempfile} -d ${tempdir2} 2>&1 1>/dev/null
176 if [ $(find $tempdir2/* -maxdepth 0 | wc -l) = 1 ] && [ -d $tempdir2/* ]; then
179 cp -R ${tempdir2}/*/* ${dir}/
181 cp -R ${tempdir2}/* ${dir}/
187 rm -rf ${tempdir2} ${tempdir}
/external/curl/src/
Dtool_dirhie.c105 char *tempdir2; in create_dir_hierarchy() local
129 tempdir2 = strtok(NULL, PATH_DELIMITERS); in create_dir_hierarchy()
132 if(tempdir2 != NULL) { in create_dir_hierarchy()
163 tempdir = tempdir2; in create_dir_hierarchy()