Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:TMPFILE
(Results
1 - 11
of
11
) sorted by relevance
/kernel/linux/build/test/tracepointtest/
H
A
D
tracepoint.sh
69
local
TMPFILE
=${DRIVERS_DIR}/tmp
75
if [ -e "${
TMPFILE
}" ]; then
76
rm -f ${
TMPFILE
}
81
echo "$line" >>${
TMPFILE
}
84
echo "source \"drivers/tracepointtest/Kconfig\"" >>${
TMPFILE
}
85
echo "endmenu" >>${
TMPFILE
}
86
mv ${
TMPFILE
} ${KCONFIG}
89
echo "$line" >>${
TMPFILE
}
91
echo "obj-y += tracepointtest/" >>${
TMPFILE
}
92
mv ${
TMPFILE
}
[all...]
/kernel/linux/linux-5.10/scripts/
H
A
D
gfp-translate
11
if [ "$
TMPFILE
" != "" ]; then
12
rm -f $
TMPFILE
65
TMPFILE
=`mktemp -t gfptranslate-XXXXXX` || exit 1
68
grep "^#define ___GFP" $SOURCE/include/linux/gfp.h | sed -e 's/u$//' | grep -v GFP_BITS > $
TMPFILE
70
grep "^#define __GFP" $SOURCE/include/linux/gfp.h | sed -e 's/(__force gfp_t)//' | sed -e 's/u)/)/' | grep -v GFP_BITS | sed -e 's/)\//) \//' > $
TMPFILE
78
for LINE in `cat $
TMPFILE
`; do
85
rm -f $
TMPFILE
H
A
D
patch-kernel
192
TMPFILE
=`mktemp ./.tmpver.XXXXXX` || { echo "cannot make temp file" ; exit 1; }
193
grep -E "^(VERSION|PATCHLEVEL|SUBLEVEL|EXTRAVERSION)" $sourcedir/Makefile > $
TMPFILE
194
tr -d [:blank:] < $
TMPFILE
> $
TMPFILE
.1
195
. $
TMPFILE
.1
196
rm -f $
TMPFILE
*
/kernel/linux/linux-6.6/scripts/
H
A
D
gfp-translate
11
if [ "$
TMPFILE
" != "" ]; then
12
rm -f $
TMPFILE
65
TMPFILE
=`mktemp -t gfptranslate-XXXXXX` || exit 1
68
grep "^#define ___GFP" $SOURCE/include/linux/gfp_types.h | sed -e 's/u$//' | grep -v GFP_BITS > $
TMPFILE
70
grep "^#define __GFP" $SOURCE/include/linux/gfp_types.h | sed -e 's/(__force gfp_t)//' | sed -e 's/u)/)/' | grep -v GFP_BITS | sed -e 's/)\//) \//' > $
TMPFILE
78
for LINE in `cat $
TMPFILE
`; do
85
rm -f $
TMPFILE
H
A
D
patch-kernel
192
TMPFILE
=`mktemp ./.tmpver.XXXXXX` || { echo "cannot make temp file" ; exit 1; }
193
grep -E "^(VERSION|PATCHLEVEL|SUBLEVEL|EXTRAVERSION)" $sourcedir/Makefile > $
TMPFILE
194
tr -d [:blank:] < $
TMPFILE
> $
TMPFILE
.1
195
. $
TMPFILE
.1
196
rm -f $
TMPFILE
*
/kernel/linux/linux-6.6/tools/testing/selftests/net/
H
A
D
icmp.sh
30
TMPFILE
=$(mktemp)
34
rm -f "$
TMPFILE
"
62
ip netns exec $NS1 timeout 10 tcpdump -tpni veth0 -c 1 'icmp and icmp[icmptype] != icmp-echo' > $
TMPFILE
2>/dev/null
67
RESP_IP=$(awk '{print $2}' < $
TMPFILE
)
H
A
D
gre_gso.sh
18
TMPFILE
=`mktemp`
63
dd if=/dev/urandom of=$
TMPFILE
bs=1024 count=2048 &>/dev/null
69
rm -rf $
TMPFILE
127
cat $
TMPFILE
| timeout 1 socat -u STDIN TCP:$addr:$port
132
cat $
TMPFILE
| timeout 1 socat -u STDIN TCP:$addr:$port
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/
H
A
D
test_lwt_ip_encap.sh
81
TMPFILE
=""
255
TMPFILE
=$(mktemp /tmp/test_lwt_ip_encap.XXXXXX)
263
if [ -f ${
TMPFILE
} ] ; then
264
rm ${
TMPFILE
}
322
: > ${
TMPFILE
} # trim the capture file
328
# listen on port 9000, capture TCP into $
TMPFILE
332
"nc -4 -l -p 9000 > ${
TMPFILE
} &"
336
"nc -6 -l -p 9000 > ${
TMPFILE
} &"
350
SZ=$(stat -c %s ${
TMPFILE
})
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/
H
A
D
test_lwt_ip_encap.sh
82
TMPFILE
=""
256
TMPFILE
=$(mktemp /tmp/test_lwt_ip_encap.XXXXXX)
264
if [ -f ${
TMPFILE
} ] ; then
265
rm ${
TMPFILE
}
323
: > ${
TMPFILE
} # trim the capture file
329
# listen on port 9000, capture TCP into $
TMPFILE
333
"nc -4 -l -p 9000 > ${
TMPFILE
} &"
337
"nc -6 -l -p 9000 > ${
TMPFILE
} &"
351
SZ=$(stat -c %s ${
TMPFILE
})
/kernel/linux/linux-5.10/tools/perf/trace/beauty/
H
A
D
open_flags.c
50
P_FLAG(
TMPFILE
);
in open__scnprintf_flags()
/kernel/linux/linux-6.6/tools/perf/trace/beauty/
H
A
D
open_flags.c
50
P_FLAG(
TMPFILE
);
in open__scnprintf_flags()
Completed in 4 milliseconds