Searched refs:gdb_id (Results 1 – 2 of 2) sorted by relevance
/external/valgrind/coregrind/m_gdbserver/ |
D | inferiors.c | 32 unsigned int gdb_id; member 98 void add_thread (unsigned long thread_id, void *target_data, unsigned int gdb_id) in add_thread() argument 114 new_thread->gdb_id = gdb_id; in add_thread() 124 return thread->gdb_id; in thread_id_to_gdb_id() 133 return thread->gdb_id; in thread_to_gdb_id() 136 struct thread_info * gdb_id_to_thread (unsigned int gdb_id) in gdb_id_to_thread() argument 142 if (thread->gdb_id == gdb_id) in gdb_id_to_thread() 150 unsigned long gdb_id_to_thread_id (unsigned int gdb_id) in gdb_id_to_thread_id() argument 152 struct thread_info *thread = gdb_id_to_thread (gdb_id); in gdb_id_to_thread_id()
|
D | server.c | 684 unsigned long gdb_id; in handle_query() local 692 gdb_id = strtoul (from, NULL, 16); in handle_query() 700 gdb_id, (void*)offset, (void*)lm); in handle_query() 702 ti = gdb_id_to_thread (gdb_id); in handle_query() 748 unsigned long gdb_id; in handle_query() local 752 gdb_id = strtoul (&arg_own_buf[17], NULL, 16); in handle_query() 753 ti = gdb_id_to_thread (gdb_id); in handle_query() 1202 unsigned long gdb_id, thread_id; in server_main() local 1204 gdb_id = strtoul (&own_buf[2], NULL, 16); in server_main() 1205 thread_id = gdb_id_to_thread_id (gdb_id); in server_main() [all …]
|