Searched refs:thread_obj (Results 1 – 4 of 4) sorted by relevance
41 gdbpy_ref<thread_object> thread_obj; in create_thread_object() local47 thread_obj.reset (PyObject_New (thread_object, &thread_object_type)); in create_thread_object()48 if (thread_obj == NULL) in create_thread_object()51 thread_obj->thread = tp; in create_thread_object()52 thread_obj->inf_obj = (PyObject *) inf_obj.release (); in create_thread_object()53 thread_obj->dict = PyDict_New (); in create_thread_object()54 if (thread_obj->dict == nullptr) in create_thread_object()57 return thread_obj; in create_thread_object()76 thread_object *thread_obj = (thread_object *) self; in thpy_get_name() local78 THPY_REQUIRE_VALID (thread_obj); in thpy_get_name()[all …]
344 gdbpy_ref<thread_object> thread_obj = create_thread_object (tp); in add_thread_object() local345 if (thread_obj == NULL) in add_thread_object()351 inf_obj = (inferior_object *) thread_obj->inf_obj; in add_thread_object()354 (thread_map_t::value_type (tp, std::move (thread_obj))); in add_thread_object()
7730 * python/py-inferior.c (add_thread_object): Don't use thread_obj7893 <thread_obj>: Now a gdbpy_ref.
149815 This now uses the thread_obj in its new location instead.