5 /* These are needed to keep track of gtype and signal names for the below
8 probe process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("type__new")
10 gtypes[pid(),user_string($arg1)] = $arg3;
11 gtypenames[pid(),$arg3] = user_string($arg1);
13 probe process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("signal__new")
15 gsignalnames[pid(),$arg1] = user_string($arg2);
19 * probe gobject.type_new - Called when any entity registered with the #GType system is created
20 * @name: String name of type
21 * @parent_gtype: The parent #GType of this type
22 * @gtype: The #GType for this type
24 probe gobject.type_new = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("type__new")
26 name = user_string($arg1);
29 probestr = sprintf("gobject.type_new(%s, %d) -> %d", name, parent_gtype, gtype);
33 * probe gobject.object_new - Called when a #GObject is created
34 * @object: Raw pointer to object
35 * @gtype: #GType for this object
36 * @type: String name of object type
38 probe gobject.object_new = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("object__new")
42 type = gtypenames[pid(),$arg2];
43 probestr = sprintf("gobject.object_new(%s) -> %p", type, object);
47 * probe gobject.object_ref - Called when a new reference is added to a #GObject
48 * @object: Raw pointer to object
49 * @gtype: #GType for this object
50 * @type: String name of object type
51 * @old_refcount: Original value of the reference count
52 * @refcount: New value of the reference count
54 probe gobject.object_ref = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("object__ref")
58 type = gtypenames[pid(),gtype];
60 refcount = old_refcount+1;
61 probestr = sprintf("gobject.object_ref(%p[%s]) -> %d", object, type, refcount);
65 * probe gobject.object_unref - Called when a reference is removed from a #GObject
66 * @object: Raw pointer to object
67 * @gtype: #GType for this object
68 * @type: String name of object type
69 * @old_refcount: Original value of the reference count
71 probe gobject.object_unref = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("object__unref")
75 type = gtypenames[pid(),gtype];
77 refcount = old_refcount-1;
78 probestr = sprintf("gobject.object_unref(%p [%s]) -> %d", object, type, refcount);
82 * probe gobject.object_dispose - Called when a g_object_dispose() run for a #GObject is initiated
83 * @object: Raw pointer to object
84 * @gtype: #GType for this object
85 * @type: String name of object type
88 probe gobject.object_dispose = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("object__dispose")
92 type = gtypenames[pid(),$arg2];
94 probestr = sprintf("gobject.object_dispose(%p[%s])", object, type);
98 * probe gobject.object_dispose_end - Called when a g_object_dispose() run for a #GObject is completed
99 * @object: Raw pointer to object
100 * @gtype: #GType for this object
101 * @type: String name of object type
104 probe gobject.object_dispose_end = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("object__dispose__end")
108 type = gtypenames[pid(),$arg2];
110 probestr = sprintf("gobject.object_dispose_end(%p[%s])", object, type);
114 * probe gobject.object_finalize - Called when finalization for a #GObject is started
115 * @object: Raw pointer to object
116 * @gtype: #GType for this object
117 * @type: String name of object type
119 probe gobject.object_finalize = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("object__finalize")
123 type = gtypenames[pid(),$arg2];
124 probestr = sprintf("gobject.object_finalize(%p[%s])", object, type);
128 * probe gobject.object_finalize - Called when finalization for a #GObject is completed
129 * @object: Raw pointer to object
130 * @gtype: #GType for this object
131 * @type: String name of object type
133 probe gobject.object_finalize_end = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("object__finalize__end")
137 type = gtypenames[pid(),$arg2];
138 probestr = sprintf("gobject.object_finalize_end(%p[%s])", object, type);
142 * probe gobject.signal_new - Called when a new signal is registered for a #GObject
143 * @gsignal: Integer value for this signal
144 * @name: String name for this signal
145 * @gtype: #GType for the type which will gain the new signal
146 * @type: String name of the type which will gain the new signal
148 probe gobject.signal_new = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("signal__new")
151 name = user_string($arg2);
153 type = gtypenames[pid(),$arg3];
154 probestr = sprintf("gobject.signal_new(%s, %s) -> %d", name, type, gsignal);
158 * probe gobject.signal_emit - Called when a signal emission for a #GObject is started
159 * @gsignal: Integer value for this signal
160 * @detail: String containing signal "detail"
161 * @signal: String name of the signal
162 * @object: Raw pointer for object emitting signal
163 * @gtype: #GType for the type emitting the signal
164 * @type: String name of the type emitting the signal
166 probe gobject.signal_emit = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("signal__emit")
170 signal = gsignalnames[pid(),$arg1];
172 signal = signal . "::" . gquarks[pid(), detail]
175 type = gtypenames[pid(),$arg4];
176 probestr = sprintf("gobject.signal_emit(%p[%s], %s)", object, type, signal);
180 * probe gobject.signal_emit_end - Called when a signal emission for a #GObject is completed
181 * @gsignal: Integer value for this signal
182 * @detail: String containing signal "detail"
183 * @signal: String name of the signal
184 * @object: Raw pointer for object emitting signal
185 * @gtype: #GType for the type emitting the signal
186 * @type: String name of the type emitting the signal
188 probe gobject.signal_emit_end = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("signal__emit__end")
192 signal = gsignalnames[pid(),$arg1];
194 signal = signal . "::" . gquarks[pid(), detail]
197 type = gtypenames[pid(),$arg4];
198 probestr = sprintf("gobject.signal_emit_end(%p[%s], %s)", object, type, signal);