Lines Matching refs:name
69 for fn in $(find "$modpath" -name "${module//_/[-_]}.ko*") ; do
82 release=$(gdb -ex 'print init_uts_ns.name.release' -ex 'quit' -quiet -batch "$vmlinux" 2>/dev/null | sed -n 's/\$1 = "\(.*\)".*/\1/p')
98 # ([name]+[offset]/[total length])
129 # Strip the symbol name so that we could look it up
130 local name=${symbol%+*}
135 if [[ $aarray_support == true && "${cache[$module,$name]+isset}" == "isset" ]]; then
136 local base_addr=${cache[$module,$name]}
138 local base_addr=$(nm "$objfile" 2>/dev/null | awk '$3 == "'$name'" && ($2 == "t" || $2 == "T") {print $1; exit}')
144 cache[$module,$name]="$base_addr"
151 # Now, replace the symbol name with the base address we found
153 expr=${expr/$name/0x$base_addr}
183 # Demangle if the name looks like a Rust symbol and if
185 if [[ $name =~ ^_R && $cppfilt != "" ]] ; then
186 name=$("$cppfilt" "$cppfilt_opts" "$name")
190 symbol="$segment$name ($code)"