Home
last modified time | relevance | path

Searched refs:tmp_file (Results 1 – 7 of 7) sorted by relevance

/linux-6.6.21/scripts/
Dtools-support-relr.sh4 tmp_file=$(mktemp)
5 trap "rm -f $tmp_file.o $tmp_file $tmp_file.bin" EXIT
7 cat << "END" | $CC -c -x c - -o $tmp_file.o >/dev/null 2>&1
12 if ! $LD $tmp_file.o -shared -Bsymbolic --pack-dyn-relocs=relr -o $tmp_file 2>/dev/null; then
13 $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
Dleaking_addresses.pl224 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");
Drecordmcount.c331 char tmp_file[strlen(fname) + 4]; in write_file() local
337 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()
/linux-6.6.21/tools/time/
Dudelay_test.sh19 tmp_file=`mktemp`
26 tee -a $tmp_file < $UDELAY_PATH
31 if [ -f $tmp_file ]; then
32 rm $tmp_file
53 count=`grep -c FAIL $tmp_file`
/linux-6.6.21/tools/testing/selftests/
Dkselftest_deps.sh64 tmp_file=$(mktemp).c
65 trap "rm -f $tmp_file.o $tmp_file $tmp_file.bin" EXIT
77 cat << "EOF" > $tmp_file
264 $CC -o $tmp_file.bin $lib $tmp_file > /dev/null 2>&1
/linux-6.6.21/tools/testing/selftests/net/
Dfib_tests.sh2198 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_file
2256 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_file
2446 local tmp_file=$(mktemp)
2455 run_cmd "perf stat -a -e fib:fib_table_lookup --filter 'err == 0' -j -o $tmp_file -- $cmd"
[all …]
/linux-6.6.21/tools/testing/selftests/net/af_unix/
Dtest_unix_oob.c185 char *tmp_file; in main() local