HomeSort by: relevance | last modified time | path
    Searched refs:tsv (Results 1 - 25 of 123) sorted by relevancy

1 2 3 4 5

  /src/external/gpl3/gdb/dist/gdb/mi/
mi-interp.h 67 void on_tsv_created (const trace_state_variable *tsv) override;
68 void on_tsv_deleted (const trace_state_variable *tsv) override;
69 void on_tsv_modified (const trace_state_variable *tsv) override;
  /src/external/gpl3/gdb.old/dist/gdb/mi/
mi-interp.h 67 void on_tsv_created (const trace_state_variable *tsv) override;
68 void on_tsv_deleted (const trace_state_variable *tsv) override;
69 void on_tsv_modified (const trace_state_variable *tsv) override;
  /src/external/gpl3/gdb/dist/gdb/
interps.h 166 /* Notify the interpreter that trace state variable TSV was created. */
167 virtual void on_tsv_created (const trace_state_variable *tsv) {}
169 /* Notify the interpreter that trace state variable TSV was deleted. */
170 virtual void on_tsv_deleted (const trace_state_variable *tsv) {}
172 /* Notify the interpreter that trace state variable TSV was modified. */
173 virtual void on_tsv_modified (const trace_state_variable *tsv) {}
345 /* Notify all interpreters that trace state variable TSV was created. */
346 extern void interps_notify_tsv_created (const trace_state_variable *tsv);
348 /* Notify all interpreters that trace state variable TSV was deleted.
350 If TSV is nullptr, it means that all trace state variables were deleted. *
    [all...]
tracepoint.c 264 for (trace_state_variable &tsv : tvariables)
265 if (tsv.name == name)
266 return &tsv;
277 for (trace_state_variable &tsv : tvariables)
278 if (tsv.number == number)
279 return &tsv;
329 struct trace_state_variable *tsv; local
356 tsv = find_trace_state_variable (name.c_str ());
357 if (tsv)
359 if (tsv->initial_value != initval
3133 struct trace_state_variable *tsv; local
3177 struct trace_state_variable *tsv = find_matching_tsv (utsv); local
    [all...]
interps.c 515 interps_notify_tsv_created (const trace_state_variable *tsv)
517 interps_notify (&interp::on_tsv_created, tsv);
523 interps_notify_tsv_deleted (const trace_state_variable *tsv)
525 interps_notify (&interp::on_tsv_deleted, tsv);
531 interps_notify_tsv_modified (const trace_state_variable *tsv)
533 interps_notify (&interp::on_tsv_modified, tsv);
  /src/external/gpl3/gdb.old/dist/gdb/
interps.h 166 /* Notify the interpreter that trace state variable TSV was created. */
167 virtual void on_tsv_created (const trace_state_variable *tsv) {}
169 /* Notify the interpreter that trace state variable TSV was deleted. */
170 virtual void on_tsv_deleted (const trace_state_variable *tsv) {}
172 /* Notify the interpreter that trace state variable TSV was modified. */
173 virtual void on_tsv_modified (const trace_state_variable *tsv) {}
345 /* Notify all interpreters that trace state variable TSV was created. */
346 extern void interps_notify_tsv_created (const trace_state_variable *tsv);
348 /* Notify all interpreters that trace state variable TSV was deleted.
350 If TSV is nullptr, it means that all trace state variables were deleted. *
    [all...]
tracepoint.c 264 for (trace_state_variable &tsv : tvariables)
265 if (tsv.name == name)
266 return &tsv;
277 for (trace_state_variable &tsv : tvariables)
278 if (tsv.number == number)
279 return &tsv;
329 struct trace_state_variable *tsv; local
356 tsv = find_trace_state_variable (name.c_str ());
357 if (tsv)
359 if (tsv->initial_value != initval
3129 struct trace_state_variable *tsv; local
3173 struct trace_state_variable *tsv = find_matching_tsv (utsv); local
    [all...]
  /src/external/gpl3/gdb/dist/gdbserver/
tracepoint.cc 2041 struct trace_state_variable *tsv; local
2045 for (tsv = alloced_trace_state_variables; tsv; tsv = tsv->next)
2046 if (tsv->number == num)
2047 return tsv;
2051 for (tsv = trace_state_variables; tsv; tsv = tsv->next
2063 struct trace_state_variable *tsv; local
2097 struct trace_state_variable *tsv; local
2127 struct trace_state_variable *tsv; local
2155 struct trace_state_variable *tsv; local
2171 struct trace_state_variable *tsv; local
2350 struct trace_state_variable *tsv, *prev, *next; local
2724 struct trace_state_variable *tsv; local
6211 struct trace_state_variable *tsv; local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdbserver/
tracepoint.cc 2041 struct trace_state_variable *tsv; local
2045 for (tsv = alloced_trace_state_variables; tsv; tsv = tsv->next)
2046 if (tsv->number == num)
2047 return tsv;
2051 for (tsv = trace_state_variables; tsv; tsv = tsv->next
2063 struct trace_state_variable *tsv; local
2097 struct trace_state_variable *tsv; local
2127 struct trace_state_variable *tsv; local
2155 struct trace_state_variable *tsv; local
2171 struct trace_state_variable *tsv; local
2350 struct trace_state_variable *tsv, *prev, *next; local
2724 struct trace_state_variable *tsv; local
6211 struct trace_state_variable *tsv; local
    [all...]
  /src/external/gpl3/gdb/lib/libgdb/arch/aarch64/
observer.h 321 typedef void (observer_tsv_created_ftype) (const struct trace_state_variable *tsv);
325 extern void observer_notify_tsv_created (const struct trace_state_variable *tsv);
329 typedef void (observer_tsv_deleted_ftype) (const struct trace_state_variable *tsv);
333 extern void observer_notify_tsv_deleted (const struct trace_state_variable *tsv);
337 typedef void (observer_tsv_modified_ftype) (const struct trace_state_variable *tsv);
341 extern void observer_notify_tsv_modified (const struct trace_state_variable *tsv);
  /src/external/gpl3/gdb/lib/libgdb/arch/alpha/
observer.h 321 typedef void (observer_tsv_created_ftype) (const struct trace_state_variable *tsv);
325 extern void observer_notify_tsv_created (const struct trace_state_variable *tsv);
329 typedef void (observer_tsv_deleted_ftype) (const struct trace_state_variable *tsv);
333 extern void observer_notify_tsv_deleted (const struct trace_state_variable *tsv);
337 typedef void (observer_tsv_modified_ftype) (const struct trace_state_variable *tsv);
341 extern void observer_notify_tsv_modified (const struct trace_state_variable *tsv);
  /src/external/gpl3/gdb/lib/libgdb/arch/arm/
observer.h 321 typedef void (observer_tsv_created_ftype) (const struct trace_state_variable *tsv);
325 extern void observer_notify_tsv_created (const struct trace_state_variable *tsv);
329 typedef void (observer_tsv_deleted_ftype) (const struct trace_state_variable *tsv);
333 extern void observer_notify_tsv_deleted (const struct trace_state_variable *tsv);
337 typedef void (observer_tsv_modified_ftype) (const struct trace_state_variable *tsv);
341 extern void observer_notify_tsv_modified (const struct trace_state_variable *tsv);
  /src/external/gpl3/gdb/lib/libgdb/arch/armeb/
observer.h 321 typedef void (observer_tsv_created_ftype) (const struct trace_state_variable *tsv);
325 extern void observer_notify_tsv_created (const struct trace_state_variable *tsv);
329 typedef void (observer_tsv_deleted_ftype) (const struct trace_state_variable *tsv);
333 extern void observer_notify_tsv_deleted (const struct trace_state_variable *tsv);
337 typedef void (observer_tsv_modified_ftype) (const struct trace_state_variable *tsv);
341 extern void observer_notify_tsv_modified (const struct trace_state_variable *tsv);
  /src/external/gpl3/gdb/lib/libgdb/arch/hppa/
observer.h 321 typedef void (observer_tsv_created_ftype) (const struct trace_state_variable *tsv);
325 extern void observer_notify_tsv_created (const struct trace_state_variable *tsv);
329 typedef void (observer_tsv_deleted_ftype) (const struct trace_state_variable *tsv);
333 extern void observer_notify_tsv_deleted (const struct trace_state_variable *tsv);
337 typedef void (observer_tsv_modified_ftype) (const struct trace_state_variable *tsv);
341 extern void observer_notify_tsv_modified (const struct trace_state_variable *tsv);
  /src/external/gpl3/gdb/lib/libgdb/arch/i386/
observer.h 321 typedef void (observer_tsv_created_ftype) (const struct trace_state_variable *tsv);
325 extern void observer_notify_tsv_created (const struct trace_state_variable *tsv);
329 typedef void (observer_tsv_deleted_ftype) (const struct trace_state_variable *tsv);
333 extern void observer_notify_tsv_deleted (const struct trace_state_variable *tsv);
337 typedef void (observer_tsv_modified_ftype) (const struct trace_state_variable *tsv);
341 extern void observer_notify_tsv_modified (const struct trace_state_variable *tsv);
  /src/external/gpl3/gdb/lib/libgdb/arch/m68000/
observer.h 321 typedef void (observer_tsv_created_ftype) (const struct trace_state_variable *tsv);
325 extern void observer_notify_tsv_created (const struct trace_state_variable *tsv);
329 typedef void (observer_tsv_deleted_ftype) (const struct trace_state_variable *tsv);
333 extern void observer_notify_tsv_deleted (const struct trace_state_variable *tsv);
337 typedef void (observer_tsv_modified_ftype) (const struct trace_state_variable *tsv);
341 extern void observer_notify_tsv_modified (const struct trace_state_variable *tsv);
  /src/external/gpl3/gdb/lib/libgdb/arch/m68k/
observer.h 321 typedef void (observer_tsv_created_ftype) (const struct trace_state_variable *tsv);
325 extern void observer_notify_tsv_created (const struct trace_state_variable *tsv);
329 typedef void (observer_tsv_deleted_ftype) (const struct trace_state_variable *tsv);
333 extern void observer_notify_tsv_deleted (const struct trace_state_variable *tsv);
337 typedef void (observer_tsv_modified_ftype) (const struct trace_state_variable *tsv);
341 extern void observer_notify_tsv_modified (const struct trace_state_variable *tsv);
  /src/external/gpl3/gdb/lib/libgdb/arch/mips64eb/
observer.h 321 typedef void (observer_tsv_created_ftype) (const struct trace_state_variable *tsv);
325 extern void observer_notify_tsv_created (const struct trace_state_variable *tsv);
329 typedef void (observer_tsv_deleted_ftype) (const struct trace_state_variable *tsv);
333 extern void observer_notify_tsv_deleted (const struct trace_state_variable *tsv);
337 typedef void (observer_tsv_modified_ftype) (const struct trace_state_variable *tsv);
341 extern void observer_notify_tsv_modified (const struct trace_state_variable *tsv);
  /src/external/gpl3/gdb/lib/libgdb/arch/mips64el/
observer.h 321 typedef void (observer_tsv_created_ftype) (const struct trace_state_variable *tsv);
325 extern void observer_notify_tsv_created (const struct trace_state_variable *tsv);
329 typedef void (observer_tsv_deleted_ftype) (const struct trace_state_variable *tsv);
333 extern void observer_notify_tsv_deleted (const struct trace_state_variable *tsv);
337 typedef void (observer_tsv_modified_ftype) (const struct trace_state_variable *tsv);
341 extern void observer_notify_tsv_modified (const struct trace_state_variable *tsv);
  /src/external/gpl3/gdb/lib/libgdb/arch/mipseb/
observer.h 321 typedef void (observer_tsv_created_ftype) (const struct trace_state_variable *tsv);
325 extern void observer_notify_tsv_created (const struct trace_state_variable *tsv);
329 typedef void (observer_tsv_deleted_ftype) (const struct trace_state_variable *tsv);
333 extern void observer_notify_tsv_deleted (const struct trace_state_variable *tsv);
337 typedef void (observer_tsv_modified_ftype) (const struct trace_state_variable *tsv);
341 extern void observer_notify_tsv_modified (const struct trace_state_variable *tsv);
  /src/external/gpl3/gdb/lib/libgdb/arch/mipsel/
observer.h 321 typedef void (observer_tsv_created_ftype) (const struct trace_state_variable *tsv);
325 extern void observer_notify_tsv_created (const struct trace_state_variable *tsv);
329 typedef void (observer_tsv_deleted_ftype) (const struct trace_state_variable *tsv);
333 extern void observer_notify_tsv_deleted (const struct trace_state_variable *tsv);
337 typedef void (observer_tsv_modified_ftype) (const struct trace_state_variable *tsv);
341 extern void observer_notify_tsv_modified (const struct trace_state_variable *tsv);
  /src/external/gpl3/gdb/lib/libgdb/arch/mipsn64eb/
observer.h 321 typedef void (observer_tsv_created_ftype) (const struct trace_state_variable *tsv);
325 extern void observer_notify_tsv_created (const struct trace_state_variable *tsv);
329 typedef void (observer_tsv_deleted_ftype) (const struct trace_state_variable *tsv);
333 extern void observer_notify_tsv_deleted (const struct trace_state_variable *tsv);
337 typedef void (observer_tsv_modified_ftype) (const struct trace_state_variable *tsv);
341 extern void observer_notify_tsv_modified (const struct trace_state_variable *tsv);
  /src/external/gpl3/gdb/lib/libgdb/arch/mipsn64el/
observer.h 321 typedef void (observer_tsv_created_ftype) (const struct trace_state_variable *tsv);
325 extern void observer_notify_tsv_created (const struct trace_state_variable *tsv);
329 typedef void (observer_tsv_deleted_ftype) (const struct trace_state_variable *tsv);
333 extern void observer_notify_tsv_deleted (const struct trace_state_variable *tsv);
337 typedef void (observer_tsv_modified_ftype) (const struct trace_state_variable *tsv);
341 extern void observer_notify_tsv_modified (const struct trace_state_variable *tsv);
  /src/external/gpl3/gdb/lib/libgdb/arch/powerpc/
observer.h 321 typedef void (observer_tsv_created_ftype) (const struct trace_state_variable *tsv);
325 extern void observer_notify_tsv_created (const struct trace_state_variable *tsv);
329 typedef void (observer_tsv_deleted_ftype) (const struct trace_state_variable *tsv);
333 extern void observer_notify_tsv_deleted (const struct trace_state_variable *tsv);
337 typedef void (observer_tsv_modified_ftype) (const struct trace_state_variable *tsv);
341 extern void observer_notify_tsv_modified (const struct trace_state_variable *tsv);
  /src/external/gpl3/gdb/lib/libgdb/arch/powerpc64/
observer.h 321 typedef void (observer_tsv_created_ftype) (const struct trace_state_variable *tsv);
325 extern void observer_notify_tsv_created (const struct trace_state_variable *tsv);
329 typedef void (observer_tsv_deleted_ftype) (const struct trace_state_variable *tsv);
333 extern void observer_notify_tsv_deleted (const struct trace_state_variable *tsv);
337 typedef void (observer_tsv_modified_ftype) (const struct trace_state_variable *tsv);
341 extern void observer_notify_tsv_modified (const struct trace_state_variable *tsv);

Completed in 45 milliseconds

1 2 3 4 5