Searched refs:tmp_file (Results 1 – 7 of 7) sorted by relevance
4 tmp_file=$(mktemp)5 trap "rm -f $tmp_file.o $tmp_file $tmp_file.bin" EXIT7 cat << "END" | $CC -c -x c - -o $tmp_file.o >/dev/null 2>&112 if ! $LD $tmp_file.o -shared -Bsymbolic --pack-dyn-relocs=relr -o $tmp_file 2>/dev/null; then13 $LD $tmp_file.o -shared -Bsymbolic -z pack-relative-relocs -o $tmp_file 2>&1 |19 test -z "$($NM $tmp_file 2>&1 >/dev/null)"21 $OBJCOPY -O binary $tmp_file $tmp_file.bin
224 my $tmp_file = "";231 my $tmp_file = "/tmp/tmpkconf";233 if (system("gunzip < /proc/config.gz > $tmp_file")) {237 @config_files = ($tmp_file);253 if ($tmp_file ne "") {254 system("rm -f $tmp_file");
331 char tmp_file[strlen(fname) + 4]; in write_file() local337 sprintf(tmp_file, "%s.rc", fname); in write_file()344 fd_map = open(tmp_file, O_WRONLY | O_TRUNC | O_CREAT, sb.st_mode); in write_file()364 if (rename(tmp_file, fname) < 0) { in write_file()
19 tmp_file=`mktemp`26 tee -a $tmp_file < $UDELAY_PATH31 if [ -f $tmp_file ]; then32 rm $tmp_file53 count=`grep -c FAIL $tmp_file`
64 tmp_file=$(mktemp).c65 trap "rm -f $tmp_file.o $tmp_file $tmp_file.bin" EXIT77 cat << "EOF" > $tmp_file264 $CC -o $tmp_file.bin $lib $tmp_file > /dev/null 2>&1
2198 local tmp_file=$(mktemp)2199 ip netns exec ns2 socat UDP4-LISTEN:54321,fork $tmp_file &2230 [[ $(cat $tmp_file | wc -l) -eq 3 ]]2238 rm $tmp_file2256 local tmp_file=$(mktemp)2257 ip netns exec ns2 socat UDP6-LISTEN:54321,fork $tmp_file &2288 [[ $(cat $tmp_file | wc -l) -eq 3 ]]2296 rm $tmp_file2446 local tmp_file=$(mktemp)2455 run_cmd "perf stat -a -e fib:fib_table_lookup --filter 'err == 0' -j -o $tmp_file -- $cmd"[all …]
185 char *tmp_file; in main() local