File: gobject.stp.in

package info (click to toggle)
glib2.0 2.42.1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-backports, jessie-kfreebsd, jessie-kfreebsd-proposed-updates
  • size: 82,084 kB
  • sloc: ansic: 411,692; xml: 15,280; sh: 12,977; python: 5,145; makefile: 3,567; perl: 1,422; cpp: 9
file content (199 lines) | stat: -rw-r--r-- 7,079 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
global gtypes
global gtypenames
global gsignalnames

/* These are needed to keep track of gtype and signal names for the below
 * probes.
 */
probe process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("type__new")
{
  gtypes[pid(),user_string($arg1)] = $arg3;
  gtypenames[pid(),$arg3] = user_string($arg1);
}
probe process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("signal__new")
{
  gsignalnames[pid(),$arg1] = user_string($arg2);
}

/**
 * probe gobject.type_new - Called when any entity registered with the #GType system is created
 * @name: String name of type
 * @parent_gtype: The parent #GType of this type
 * @gtype: The #GType for this type
 */
probe gobject.type_new = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("type__new")
{
  name = user_string($arg1); 
  parent_gtype = $arg2; 
  gtype = $arg3; 
  probestr = sprintf("gobject.type_new(%s, %d) -> %d", name, parent_gtype, gtype);
}

/**
 * probe gobject.object_new - Called when a #GObject is created
 * @object: Raw pointer to object
 * @gtype: #GType for this object
 * @type: String name of object type
 */
probe gobject.object_new = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("object__new")
{
  object = $arg1; 
  gtype = $arg2; 
  type = gtypenames[pid(),$arg2]; 
  probestr = sprintf("gobject.object_new(%s) -> %p", type, object);
}

/**
 * probe gobject.object_ref - Called when a new reference is added to a #GObject
 * @object: Raw pointer to object
 * @gtype: #GType for this object
 * @type: String name of object type
 * @old_refcount: Original value of the reference count
 * @refcount: New value of the reference count
 */
probe gobject.object_ref = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("object__ref")
{
  object = $arg1; 
  gtype = $arg2; 
  type = gtypenames[pid(),gtype]; 
  old_refcount = $arg3; 
  refcount = old_refcount+1; 
  probestr = sprintf("gobject.object_ref(%p[%s]) -> %d", object, type, refcount);
}

/**
 * probe gobject.object_unref - Called when a reference is removed from a #GObject
 * @object: Raw pointer to object
 * @gtype: #GType for this object
 * @type: String name of object type
 * @old_refcount: Original value of the reference count
 */
probe gobject.object_unref = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("object__unref")
{
  object = $arg1; 
  gtype = $arg2; 
  type = gtypenames[pid(),gtype]; 
  old_refcount = $arg3; 
  refcount = old_refcount-1; 
  probestr = sprintf("gobject.object_unref(%p [%s]) -> %d", object, type, refcount);
}

/**
 * probe gobject.object_dispose - Called when a g_object_dispose() run for a #GObject is initiated
 * @object: Raw pointer to object
 * @gtype: #GType for this object
 * @type: String name of object type
 * @last_unref: FIXME
 */
probe gobject.object_dispose = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("object__dispose")
{
  object = $arg1; 
  gtype = $arg2; 
  type = gtypenames[pid(),$arg2]; 
  last_unref = $arg3; 
  probestr = sprintf("gobject.object_dispose(%p[%s])", object, type);
}

/**
 * probe gobject.object_dispose_end - Called when a g_object_dispose() run for a #GObject is completed
 * @object: Raw pointer to object
 * @gtype: #GType for this object
 * @type: String name of object type
 * @last_unref: FIXME
 */
probe gobject.object_dispose_end = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("object__dispose__end")
{
  object = $arg1; 
  gtype = $arg2; 
  type = gtypenames[pid(),$arg2]; 
  last_unref = $arg3; 
  probestr = sprintf("gobject.object_dispose_end(%p[%s])", object, type);
}

/**
 * probe gobject.object_finalize - Called when finalization for a #GObject is started
 * @object: Raw pointer to object
 * @gtype: #GType for this object
 * @type: String name of object type
 */
probe gobject.object_finalize = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("object__finalize")
{
  object = $arg1; 
  gtype = $arg2; 
  type = gtypenames[pid(),$arg2]; 
  probestr = sprintf("gobject.object_finalize(%p[%s])", object, type);
}

/**
 * probe gobject.object_finalize - Called when finalization for a #GObject is completed
 * @object: Raw pointer to object
 * @gtype: #GType for this object
 * @type: String name of object type
 */
probe gobject.object_finalize_end = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("object__finalize__end")
{
  object = $arg1; 
  gtype = $arg2; 
  type = gtypenames[pid(),$arg2]; 
  probestr = sprintf("gobject.object_finalize_end(%p[%s])", object, type);
}

/**
 * probe gobject.signal_new - Called when a new signal is registered for a #GObject
 * @gsignal: Integer value for this signal
 * @name: String name for this signal
 * @gtype: #GType for the type which will gain the new signal
 * @type: String name of the type which will gain the new signal
 */
probe gobject.signal_new = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("signal__new")
{
  gsignal = $arg1; 
  name = user_string($arg2); 
  gtype = $arg3; 
  type = gtypenames[pid(),$arg3]; 
  probestr = sprintf("gobject.signal_new(%s, %s) -> %d", name, type, gsignal);
}

/**
 * probe gobject.signal_emit - Called when a signal emission for a #GObject is started
 * @gsignal: Integer value for this signal
 * @detail: String containing signal "detail"
 * @signal: String name of the signal
 * @object: Raw pointer for object emitting signal
 * @gtype: #GType for the type emitting the signal
 * @type: String name of the type emitting the signal
 */
probe gobject.signal_emit = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("signal__emit")
{
  gsignal = $arg1; 
  detail = $arg2; 
  signal = gsignalnames[pid(),$arg1]; 
  if (detail != 0)
    signal = signal . "::" . gquarks[pid(), detail]
  object = $arg3; 
  gtype = $arg4; 
  type = gtypenames[pid(),$arg4]; 
  probestr = sprintf("gobject.signal_emit(%p[%s], %s)", object, type, signal);
}

/**
 * probe gobject.signal_emit_end - Called when a signal emission for a #GObject is completed
 * @gsignal: Integer value for this signal
 * @detail: String containing signal "detail"
 * @signal: String name of the signal
 * @object: Raw pointer for object emitting signal
 * @gtype: #GType for the type emitting the signal
 * @type: String name of the type emitting the signal
 */
probe gobject.signal_emit_end = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("signal__emit__end")
{
  gsignal = $arg1; 
  detail = $arg2; 
  signal = gsignalnames[pid(),$arg1]; 
  if (detail != 0)
    signal = signal . "::" . gquarks[pid(), detail]
  object = $arg3; 
  gtype = $arg4; 
  type = gtypenames[pid(),$arg4]; 
  probestr = sprintf("gobject.signal_emit_end(%p[%s], %s)", object, type, signal);
}