Lines Matching refs:name
92 for fn in $(find "$modpath" -name "${module//_/[-_]}.ko*") ; do
105 release=$(gdb -ex 'print init_uts_ns.name.release' -ex 'quit' -quiet -batch "$vmlinux" 2>/dev/null | sed -n 's/\$1 = "\(.*\)".*/\1/p')
121 # ([name]+[offset]/[total length])
152 # Strip the symbol name so that we could look it up
153 local name=${symbol%+*}
158 if [[ $aarray_support == true && "${cache[$module,$name]+isset}" == "isset" ]]; then
159 local base_addr=${cache[$module,$name]}
161 local base_addr=$(nm "$objfile" 2>/dev/null | awk '$3 == "'$name'" && ($2 == "t" || $2 == "T") {print $1; exit}')
167 cache[$module,$name]="$base_addr"
174 # Now, replace the symbol name with the base address we found
176 expr=${expr/$name/0x$base_addr}
206 # Demangle if the name looks like a Rust symbol and if
208 if [[ $name =~ ^_R && $cppfilt != "" ]] ; then
209 name=$("$cppfilt" "$cppfilt_opts" "$name")
213 symbol="$segment$name ($code)"