Home
last modified time | relevance | path

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

/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
10 $LD $tmp_file.o -shared -Bsymbolic --pack-dyn-relocs=relr -o $tmp_file
14 test -z "$($NM $tmp_file 2>&1 >/dev/null)"
16 $OBJCOPY -O binary $tmp_file $tmp_file.bin
Dleaking_addresses.pl223 my $tmp_file = "";
230 my $tmp_file = "/tmp/tmpkconf";
232 if (system("gunzip < /proc/config.gz > $tmp_file")) {
236 @config_files = ($tmp_file);
252 if ($tmp_file ne "") {
253 system("rm -f $tmp_file");
Drecordmcount.c317 char tmp_file[strlen(fname) + 4]; in write_file() local
323 sprintf(tmp_file, "%s.rc", fname); in write_file()
330 fd_map = open(tmp_file, O_WRONLY | O_TRUNC | O_CREAT, sb.st_mode); in write_file()
350 if (rename(tmp_file, fname) < 0) { in write_file()