Searched refs:new_refcount (Results 1 – 4 of 4) sorted by relevance
/third_party/gstreamer/gstreamer/gst/ |
D | gsttracerutils.h | 610 GstObject *object, gint new_refcount); 611 #define GST_TRACER_OBJECT_UNREFFED(object, new_refcount) G_STMT_START{ \ argument 613 GstTracerHookObjectUnreffed, (GST_TRACER_ARGS, object, new_refcount)); \ 627 GstObject *object, gint new_refcount); 628 #define GST_TRACER_OBJECT_REFFED(object, new_refcount) G_STMT_START{ \ argument 630 GstTracerHookObjectReffed, (GST_TRACER_ARGS, object, new_refcount)); \ 644 GstMiniObject *object, gint new_refcount); 645 #define GST_TRACER_MINI_OBJECT_UNREFFED(object, new_refcount) G_STMT_START{ \ argument 647 GstTracerHookMiniObjectUnreffed, (GST_TRACER_ARGS, object, new_refcount)); \ 661 GstMiniObject *object, gint new_refcount); [all …]
|
D | gstminiobject.c | 466 gint old_refcount, new_refcount; in gst_mini_object_ref() local 476 new_refcount = old_refcount + 1; in gst_mini_object_ref() 479 old_refcount, new_refcount); in gst_mini_object_ref() 481 GST_TRACER_MINI_OBJECT_REFFED (mini_object, new_refcount); in gst_mini_object_ref() 650 gint old_refcount, new_refcount; in gst_mini_object_unref() local 656 new_refcount = old_refcount - 1; in gst_mini_object_unref() 661 mini_object, old_refcount, new_refcount); in gst_mini_object_unref() 663 GST_TRACER_MINI_OBJECT_UNREFFED (mini_object, new_refcount); in gst_mini_object_unref() 665 if (new_refcount == 0) { in gst_mini_object_unref()
|
/third_party/gstreamer/gstreamer/plugins/tracers/ |
D | gstleaks.c | 121 gint new_refcount; member 432 gint new_refcount, gboolean reffed, GstClockTime ts) in handle_object_reffed() argument 450 refinfo->new_refcount = new_refcount; in handle_object_reffed() 463 gint new_refcount) in object_reffed_cb() argument 467 handle_object_reffed (self, object, G_OBJECT_TYPE (object), new_refcount, in object_reffed_cb() 473 gint new_refcount) in object_unreffed_cb() argument 477 handle_object_reffed (self, object, G_OBJECT_TYPE (object), new_refcount, in object_unreffed_cb() 483 GstMiniObject * object, gint new_refcount) in mini_object_reffed_cb() argument 488 new_refcount, TRUE, ts); in mini_object_reffed_cb() 493 GstMiniObject * object, gint new_refcount) in mini_object_unreffed_cb() argument [all …]
|
/third_party/node/src/ |
D | base_object-inl.h | 207 unsigned int new_refcount = --metadata->strong_ptr_count; in decrease_refcount() local 208 if (new_refcount == 0) { in decrease_refcount()
|