Lines Matching refs:tracepoint
111 # running until that tracepoint is reached. At times, we want to start
139 # Define actions for a tracepoint.
144 # tracepoint -- to which tracepoint(s) do these actions apply? (optional)
150 proc gdb_trace_setactions_command { actions_command testname tracepoint args } {
155 send_gdb "$actions_command $tracepoint\n"
158 -re "No tracepoint number .*$gdb_prompt $" {
162 -re "Enter actions for tracepoint $tracepoint.*>" {
218 # Define actions for a tracepoint, using the "actions" command. See
221 proc gdb_trace_setactions { testname tracepoint args } {
222 eval gdb_trace_setactions_command "actions" {$testname} {$tracepoint} $args
225 # Define actions for a tracepoint, using the "commands" command. See
228 proc gdb_trace_setcommands { testname tracepoint args } {
229 eval gdb_trace_setactions_command "commands" {$testname} {$tracepoint} $args
302 # tracepoint (optional): if supplied, set a tracepoint here.
304 # the tracepoint ID of the most recently set tracepoint.
307 proc gdb_gettpnum { tracepoint } {
310 if { $tracepoint != "" } {
311 gdb_test -nopass "trace $tracepoint"