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

/linux-master/scripts/
H A Dfaddr2line88 local objfile=$1
90 local start_kernel_addr=$(${READELF} --symbols --wide $objfile | sed 's/\[.*\]//' |
94 local file_line=$(${ADDR2LINE} -e $objfile $start_kernel_addr)
107 local objfile=$1
128 local file_type=$(${READELF} --file-header $objfile |
146 sec_size=$(${READELF} --section-headers --wide $objfile |
157 sec_name=$(${READELF} --section-headers --wide $objfile |
200 done < <(${READELF} --symbols --wide $objfile | sed 's/\[.*\]//' | ${AWK} -v sec=$sym_sec '$7 == sec' | sort --key=2)
252 local args="--functions --pretty-print --inlines --exe=$objfile"
281 done < <(${READELF} --symbols --wide $objfile | se
[all...]
H A Ddecode_stacktrace.sh127 local objfile=$vmlinux
129 local objfile=${modcache[$module]}
131 local objfile=$(find_module)
132 if [[ $objfile == "" ]] ; then
137 modcache[$module]=$objfile
161 local base_addr=$(nm "$objfile" 2>/dev/null | awk '$3 == "'$name'" && ($2 == "t" || $2 == "T") {print $1; exit}')
187 local code=$(${ADDR2LINE} -i -e "$objfile" "$address" 2>/dev/null)
/linux-master/tools/bpf/bpftool/
H A Diter.c18 const char *objfile, *path; local
27 objfile = GET_ARG();
51 obj = bpf_object__open(objfile);
54 p_err("can't open objfile %s", objfile);
60 p_err("can't load objfile %s", objfile);
67 p_err("can't find bpf program in objfile %s", objfile);
/linux-master/scripts/mod/
H A Dsumversion.c293 static bool is_static_library(const char *objfile) argument
295 int len = strlen(objfile);
297 return objfile[len - 2] == '.' && objfile[len - 1] == 'a';
302 static int parse_source_files(const char *objfile, struct md4_ctx *md) argument
308 cmd = NOFAIL(malloc(strlen(objfile) + sizeof("..cmd")));
310 base = strrchr(objfile, '/');
313 dirlen = base - objfile;
314 sprintf(cmd, "%.*s.%s.cmd", dirlen, objfile, base);
317 sprintf(cmd, ".%s.cmd", objfile);
[all...]
/linux-master/tools/testing/selftests/bpf/prog_tests/
H A Dcore_reloc.c231 #define BITFIELDS_CASE_COMMON(objfile, test_name_prefix, name) \
233 .bpf_obj_file = objfile, \

Completed in 308 milliseconds