Searched refs:objfile (Results 1 – 3 of 3) sorted by relevance
| /scripts/ |
| D | faddr2line | 109 local objfile=$1 110 local out=$(${READELF} --file-header --section-headers --symbols --wide $objfile) 132 local objfile=$1 136 ADDR2LINE_ARGS="--functions --pretty-print --inlines --addresses --exe=$objfile" 174 local objfile=$1 340 objfile=$1 343 [[ "$objfile" == "--list" ]] && LIST=1 && shift && objfile=$1 345 [[ ! -f $objfile ]] && die "can't find objfile $objfile" 348 run_readelf $objfile 352 init_addr2line $objfile [all …]
|
| D | decode_stacktrace.sh | 134 local objfile=$vmlinux 136 local objfile=${modcache[$module]} 138 local objfile=$(find_module) 139 if [[ $objfile == "" ]] ; then 143 modcache[$module]=$objfile 167 …local base_addr=$(${NM} "$objfile" 2>/dev/null | awk '$3 == "'$name'" && ($2 == "t" || $2 == "T") … 193 local code=$(${ADDR2LINE} -i -e "$objfile" "$address" 2>/dev/null)
|
| /scripts/mod/ |
| D | sumversion.c | 295 static bool is_static_library(const char *objfile) in is_static_library() argument 297 int len = strlen(objfile); in is_static_library() 299 return 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 = xmalloc(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()
|