Server IP : 103.119.228.120 / Your IP : 18.118.19.123 Web Server : Apache System : Linux v8.techscape8.com 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64 User : nobody ( 99) PHP Version : 5.6.40 Disable Function : shell_exec,symlink,system,exec,proc_get_status,proc_nice,proc_terminate,define_syslog_variables,syslog,openlog,closelog,escapeshellcmd,passthru,ocinum cols,ini_alter,leak,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dl,dll,myshellexec,proc_open,socket_bind,proc_close,escapeshellarg,parse_ini_filepopen,fpassthru,exec,passthru,escapeshellarg,escapeshellcmd,proc_close,proc_open,ini_alter,popen,show_source,proc_nice,proc_terminate,proc_get_status,proc_close,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,dl,symlink,shell_exec,system,dl,passthru,escapeshellarg,escapeshellcmd,myshellexec,c99_buff_prepare,c99_sess_put,fpassthru,getdisfunc,fx29exec,fx29exec2,is_windows,disp_freespace,fx29sh_getupdate,fx29_buff_prepare,fx29_sess_put,fx29shexit,fx29fsearch,fx29ftpbrutecheck,fx29sh_tools,fx29sh_about,milw0rm,imagez,sh_name,myshellexec,checkproxyhost,dosyayicek,c99_buff_prepare,c99_sess_put,c99getsource,c99sh_getupdate,c99fsearch,c99shexit,view_perms,posix_getpwuid,posix_getgrgid,posix_kill,parse_perms,parsesort,view_perms_color,set_encoder_input,ls_setcheckboxall,ls_reverse_all,rsg_read,rsg_glob,selfURL,dispsecinfo,unix2DosTime,addFile,system,get_users,view_size,DirFiles,DirFilesWide,DirPrintHTMLHeaders,GetFilesTotal,GetTitles,GetTimeTotal,GetMatchesCount,GetFileMatchesCount,GetResultFiles,fs_copy_dir,fs_copy_obj,fs_move_dir,fs_move_obj,fs_rmdir,SearchText,getmicrotime MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/local/ssl/local/ssl/local/ssl/share/systemtap/tapset/x86_64/ |
Upload File : |
global gobject_types_2_0_5600_1 global gobject_type_names_2_0_5600_1 global gobject_signal_names_2_0_5600_1 /* These are needed to keep track of gtype and signal names for the below * probes. */ probe process("/usr/lib64/libgobject-2.0.so.0.5600.1").mark("type__new") { gobject_types_2_0_5600_1[pid(),user_string($arg1)] = $arg3; gobject_type_names_2_0_5600_1[pid(),$arg3] = user_string($arg1); } probe process("/usr/lib64/libgobject-2.0.so.0.5600.1").mark("signal__new") { gobject_signal_names_2_0_5600_1[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("/usr/lib64/libgobject-2.0.so.0.5600.1").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("/usr/lib64/libgobject-2.0.so.0.5600.1").mark("object__new") { object = $arg1; gtype = $arg2; type = gobject_type_names_2_0_5600_1[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("/usr/lib64/libgobject-2.0.so.0.5600.1").mark("object__ref") { object = $arg1; gtype = $arg2; type = gobject_type_names_2_0_5600_1[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("/usr/lib64/libgobject-2.0.so.0.5600.1").mark("object__unref") { object = $arg1; gtype = $arg2; type = gobject_type_names_2_0_5600_1[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("/usr/lib64/libgobject-2.0.so.0.5600.1").mark("object__dispose") { object = $arg1; gtype = $arg2; type = gobject_type_names_2_0_5600_1[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("/usr/lib64/libgobject-2.0.so.0.5600.1").mark("object__dispose__end") { object = $arg1; gtype = $arg2; type = gobject_type_names_2_0_5600_1[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("/usr/lib64/libgobject-2.0.so.0.5600.1").mark("object__finalize") { object = $arg1; gtype = $arg2; type = gobject_type_names_2_0_5600_1[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("/usr/lib64/libgobject-2.0.so.0.5600.1").mark("object__finalize__end") { object = $arg1; gtype = $arg2; type = gobject_type_names_2_0_5600_1[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("/usr/lib64/libgobject-2.0.so.0.5600.1").mark("signal__new") { gsignal = $arg1; name = user_string($arg2); gtype = $arg3; type = gobject_type_names_2_0_5600_1[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("/usr/lib64/libgobject-2.0.so.0.5600.1").mark("signal__emit") { gsignal = $arg1; detail = $arg2; signal = gobject_signal_names_2_0_5600_1[pid(),$arg1]; if (detail != 0) signal = signal . "::" . gquarks[pid(), detail] object = $arg3; gtype = $arg4; type = gobject_type_names_2_0_5600_1[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("/usr/lib64/libgobject-2.0.so.0.5600.1").mark("signal__emit__end") { gsignal = $arg1; detail = $arg2; signal = gobject_signal_names_2_0_5600_1[pid(),$arg1]; if (detail != 0) signal = signal . "::" . gquarks[pid(), detail] object = $arg3; gtype = $arg4; type = gobject_type_names_2_0_5600_1[pid(),$arg4]; probestr = sprintf("gobject.signal_emit_end(%p[%s], %s)", object, type, signal); }