Home
last modified time | relevance | path

Searched refs:object_ptr (Results 1 – 10 of 10) sorted by relevance

/third_party/glib/gobject/
Dgobject.h682 void g_clear_object (GObject **object_ptr);
683 #define g_clear_object(object_ptr) g_clear_pointer ((object_ptr), g_object_unref) argument
721 (g_set_object) (GObject **object_ptr, in gboolean()
724 GObject *old_object = *object_ptr; in gboolean()
738 *object_ptr = new_object; in gboolean()
749 #define g_set_object(object_ptr, new_object) \ argument
751 G_STATIC_ASSERT (sizeof *(object_ptr) == sizeof (new_object)); \
754 _object_ptr.in = (char *) (object_ptr); \
756 (void) (0 ? *(object_ptr) = (new_object), FALSE : FALSE); \
763 #define g_set_object(object_ptr, new_object) \ argument
[all …]
Dgobject.c3565 g_clear_object (GObject **object_ptr) in g_clear_object() argument
3567 g_clear_pointer (object_ptr, g_object_unref); in g_clear_object()
/third_party/boost/boost/local_function/aux_/
Dfunction.hpp115 object_ptr \
270 typedef void* object_ptr;
289 object_ptr object
315 object_ptr object_;
/third_party/gstreamer/gstreamer/gst/
Dgstminiobject.h245 void gst_clear_mini_object (GstMiniObject **object_ptr);
246 #define gst_clear_mini_object(object_ptr) g_clear_pointer ((object_ptr), gst_mini_object_unref) argument
Dgstobject.h258 void gst_clear_object (GstObject **object_ptr);
259 #define gst_clear_object(object_ptr) g_clear_pointer ((object_ptr), gst_object_unref) argument
Dgstminiobject.c708 gst_clear_mini_object (GstMiniObject ** object_ptr) in gst_clear_mini_object() argument
710 g_clear_pointer (object_ptr, gst_mini_object_unref); in gst_clear_mini_object()
Dgstobject.c318 gst_clear_object (GstObject ** object_ptr) in gst_clear_object() argument
320 g_clear_pointer (object_ptr, gst_object_unref); in gst_clear_object()
/third_party/skia/third_party/externals/abseil-cpp/absl/types/
Dany.h302 Obj<VT>* const object_ptr = in emplace() local
304 obj_ = std::unique_ptr<ObjInterface>(object_ptr); in emplace()
305 return object_ptr->value; in emplace()
326 Obj<VT>* const object_ptr = in emplace() local
328 obj_ = std::unique_ptr<ObjInterface>(object_ptr); in emplace()
329 return object_ptr->value; in emplace()
/third_party/abseil-cpp/absl/types/
Dany.h302 Obj<VT>* const object_ptr = in emplace() local
304 obj_ = std::unique_ptr<ObjInterface>(object_ptr); in emplace()
305 return object_ptr->value; in emplace()
326 Obj<VT>* const object_ptr = in emplace() local
328 obj_ = std::unique_ptr<ObjInterface>(object_ptr); in emplace()
329 return object_ptr->value; in emplace()
/third_party/glib/
DNEWS422 - #1849 Documentation of g_set_object(): can object_ptr be null?