Home
last modified time | relevance | path

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

/scripts/
Dfaddr2line74 local objfile=$1
76 local start_kernel_addr=$(${READELF} --symbols --wide $objfile | sed 's/\[.*\]//' |
80 local file_line=$(${ADDR2LINE} -e $objfile $start_kernel_addr)
93 local objfile=$1
114 local file_type=$(${READELF} --file-header $objfile |
132 sec_size=$(${READELF} --section-headers --wide $objfile |
143 sec_name=$(${READELF} --section-headers --wide $objfile |
181 …done < <(${READELF} --symbols --wide $objfile | sed 's/\[.*\]//' | ${AWK} -v sec=$sym_sec '$7 == s…
233 local args="--functions --pretty-print --inlines --exe=$objfile"
262 …done < <(${READELF} --symbols --wide $objfile | sed 's/\[.*\]//' | ${AWK} -v fn=$sym_name '$4 == "…
[all …]
Ddecode_stacktrace.sh104 local objfile=$vmlinux
106 local objfile=${modcache[$module]}
108 local objfile=$(find_module)
109 if [[ $objfile == "" ]] ; then
114 modcache[$module]=$objfile
138 …local base_addr=$(nm "$objfile" 2>/dev/null | awk '$3 == "'$name'" && ($2 == "t" || $2 == "T") {pr…
164 local code=$(${ADDR2LINE} -i -e "$objfile" "$address" 2>/dev/null)
/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()