Home
last modified time | relevance | path

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

/linux-6.1.9/scripts/ !
Dfaddr2line75 local objfile=$1
77 local start_kernel_addr=$(${READELF} --symbols --wide $objfile | sed 's/\[.*\]//' |
81 local file_line=$(${ADDR2LINE} -e $objfile $start_kernel_addr)
94 local objfile=$1
115 local file_type=$(${READELF} --file-header $objfile |
133 sec_size=$(${READELF} --section-headers --wide $objfile |
144 sec_name=$(${READELF} --section-headers --wide $objfile |
182 …done < <(${READELF} --symbols --wide $objfile | sed 's/\[.*\]//' | ${AWK} -v sec=$sym_sec '$7 == s…
234 local args="--functions --pretty-print --inlines --exe=$objfile"
263 …done < <(${READELF} --symbols --wide $objfile | sed 's/\[.*\]//' | ${AWK} -v fn=$sym_name '$4 == "…
[all …]
Ddecode_stacktrace.sh112 local objfile=$vmlinux
114 local objfile=${modcache[$module]}
116 local objfile=$(find_module)
117 if [[ $objfile == "" ]] ; then
122 modcache[$module]=$objfile
146 …local base_addr=$(nm "$objfile" 2>/dev/null | awk '$3 == "'$name'" && ($2 == "t" || $2 == "T") {pr…
172 local code=$(${CROSS_COMPILE}addr2line -i -e "$objfile" "$address" 2>/dev/null)
/linux-6.1.9/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()
51 p_err("can't open objfile %s", objfile); in do_pin()
57 p_err("can't load objfile %s", objfile); in do_pin()
63 p_err("can't find bpf program in objfile %s", objfile); in do_pin()
/linux-6.1.9/scripts/mod/ !
Dsumversion.c293 static bool is_static_library(const char *objfile) in is_static_library() argument
295 int len = strlen(objfile); in is_static_library()
297 return objfile[len - 2] == '.' && objfile[len - 1] == 'a'; in is_static_library()
302 static int parse_source_files(const char *objfile, struct md4_ctx *md) in parse_source_files() argument
308 cmd = NOFAIL(malloc(strlen(objfile) + sizeof("..cmd"))); in parse_source_files()
310 base = strrchr(objfile, '/'); in parse_source_files()
313 dirlen = base - objfile; in parse_source_files()
314 sprintf(cmd, "%.*s.%s.cmd", dirlen, objfile, base); in parse_source_files()
317 sprintf(cmd, ".%s.cmd", objfile); in parse_source_files()
320 strncpy(dir, objfile, dirlen); in parse_source_files()
/linux-6.1.9/tools/testing/selftests/bpf/prog_tests/ !
Dcore_reloc.c231 #define BITFIELDS_CASE_COMMON(objfile, test_name_prefix, name) \ argument
233 .bpf_obj_file = objfile, \