Home
last modified time | relevance | path

Searched refs:sub_obj (Results 1 – 3 of 3) sorted by relevance

/third_party/weston/libweston/
Dtimeline.c99 weston_timeline_destroy_subscription_object(struct weston_timeline_subscription_object *sub_obj) in weston_timeline_destroy_subscription_object() argument
102 wl_list_remove(&sub_obj->destroy_listener.link); in weston_timeline_destroy_subscription_object()
103 sub_obj->destroy_listener.notify = NULL; in weston_timeline_destroy_subscription_object()
105 wl_list_remove(&sub_obj->subscription_link); in weston_timeline_destroy_subscription_object()
106 free(sub_obj); in weston_timeline_destroy_subscription_object()
122 struct weston_timeline_subscription_object *sub_obj, *tmp_sub_obj; in weston_timeline_destroy_subscription() local
127 wl_list_for_each_safe(sub_obj, tmp_sub_obj, in weston_timeline_destroy_subscription()
129 weston_timeline_destroy_subscription_object(sub_obj); in weston_timeline_destroy_subscription()
148 struct weston_timeline_subscription_object *sub_obj; in weston_timeline_subscription_search() local
150 wl_list_for_each(sub_obj, &tl_sub->objects, subscription_link) in weston_timeline_subscription_search()
[all …]
/third_party/python/Objects/
Dbytes_methods.c658 PyObject *sub_obj; in _Py_bytes_count() local
668 &sub_obj, &byte, &start, &end)) in _Py_bytes_count()
671 if (sub_obj) { in _Py_bytes_count()
672 if (PyObject_GetBuffer(sub_obj, &vsub, PyBUF_SIMPLE) != 0) in _Py_bytes_count()
689 if (sub_obj) in _Py_bytes_count()
/third_party/python/Lib/test/test_zoneinfo/
Dtest_zoneinfo.py480 sub_obj = self.klass("Europe/London")
482 self.assertIsNot(base_obj, sub_obj)
484 self.assertIsInstance(sub_obj, self.klass)