Lines Matching refs:bin
71 as below: (sets a uprobe at an offset of 0x4245c0 in the executable /bin/bash)
73 echo 'p: /bin/bash:0x4245c0' > /sys/kernel/debug/tracing/uprobe_events
77 echo 'r: /bin/bash:0x4245c0' > /sys/kernel/debug/tracing/uprobe_events
92 at the probed text address. Probe zfree function in /bin/zsh:
95 # cat /proc/`pgrep zsh`/maps | grep /bin/zsh | grep r-xp
96 00400000-0048a000 r-xp 00000000 08:03 130904 /bin/zsh
97 # objdump -T /bin/zsh | grep -w zfree
100 0x46420 is the offset of zfree in object /bin/zsh that is loaded at
103 # echo 'p:zfree_entry /bin/zsh:0x46420 %ip %ax' > uprobe_events
107 # echo 'r:zfree_exit /bin/zsh:0x46420 %ip %ax' >> uprobe_events
114 p:uprobes/zfree_entry /bin/zsh:0x00046420 arg1=%ip arg2=%ax
115 r:uprobes/zfree_exit /bin/zsh:0x00046420 arg1=%ip arg2=%ax