Home
last modified time | relevance | path

Searched refs:objfile (Results 1 – 5 of 5) sorted by relevance

/Linux-v5.10/scripts/
Dfaddr2line77 local objfile=$1
79 local start_kernel_addr=$(${READELF} -sW $objfile | awk '$8 == "start_kernel" {printf "0x%s", $2}')
82 local file_line=$(${ADDR2LINE} -e $objfile $start_kernel_addr)
95 local objfile=$1
114 file_end=$(${SIZE} -Ax $objfile | awk '$1 == ".text" {print $2}')
166 local file_lines=$(${ADDR2LINE} -fpie $objfile $addr | sed "s; $dir_prefix\(\./\)*; ;")
192 …done < <(${NM} -n $objfile | awk -v fn=$func -v end=$file_end '$3 == fn { found=1; line=$0; start=…
197 objfile=$1
200 [[ "$objfile" == "--list" ]] && LIST=1 && shift && objfile=$1
202 [[ ! -f $objfile ]] && die "can't find objfile $objfile"
[all …]
Ddecode_stacktrace.sh76 local objfile=$vmlinux
78 local objfile=${modcache[$module]}
80 local objfile=$(find_module)
81 if [[ $objfile == "" ]] ; then
85 modcache[$module]=$objfile
108 …local base_addr=$(nm "$objfile" | awk '$3 == "'$name'" && ($2 == "t" || $2 == "T") {print $1; exit…
132 local code=$(${CROSS_COMPILE}addr2line -i -e "$objfile" "$address")
/Linux-v5.10/tools/bpf/bpftool/
Diter.c15 const char *objfile, *path; in do_pin() local
24 objfile = GET_ARG(); in do_pin()
48 obj = bpf_object__open(objfile); in do_pin()
50 p_err("can't open objfile %s", objfile); in do_pin()
56 p_err("can't load objfile %s", objfile); in do_pin()
62 p_err("can't find bpf program in objfile %s", objfile); in do_pin()
/Linux-v5.10/scripts/mod/
Dsumversion.c293 static int is_static_library(const char *objfile) in is_static_library() argument
295 int len = strlen(objfile); in is_static_library()
296 if (objfile[len - 2] == '.' && objfile[len - 1] == 'a') in is_static_library()
304 static int parse_source_files(const char *objfile, struct md4_ctx *md) in parse_source_files() argument
310 cmd = NOFAIL(malloc(strlen(objfile) + sizeof("..cmd"))); in parse_source_files()
312 base = strrchr(objfile, '/'); in parse_source_files()
315 dirlen = base - objfile; in parse_source_files()
316 sprintf(cmd, "%.*s.%s.cmd", dirlen, objfile, base); in parse_source_files()
319 sprintf(cmd, ".%s.cmd", objfile); in parse_source_files()
322 strncpy(dir, objfile, dirlen); in parse_source_files()
/Linux-v5.10/tools/testing/selftests/bpf/prog_tests/
Dcore_reloc.c193 #define BITFIELDS_CASE_COMMON(objfile, test_name_prefix, name) \ argument
195 .bpf_obj_file = objfile, \