Searched refs:objfile (Results 1 – 5 of 5) sorted by relevance
/linux-6.12.1/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)
|
/linux-6.12.1/tools/bpf/bpftool/ |
D | iter.c | 18 const char *objfile, *path; in do_pin() local 27 objfile = GET_ARG(); in do_pin() 51 obj = bpf_object__open(objfile); in do_pin() 54 p_err("can't open objfile %s", objfile); in do_pin() 60 p_err("can't load objfile %s", objfile); in do_pin() 67 p_err("can't find bpf program in objfile %s", objfile); in do_pin()
|
/linux-6.12.1/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()
|
/linux-6.12.1/tools/testing/selftests/bpf/prog_tests/ |
D | core_reloc.c | 232 #define BITFIELDS_CASE_COMMON(objfile, test_name_prefix, name) \ argument 234 .bpf_obj_file = objfile, \
|