OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dtrace
(Results
1 - 25
of
582
) sorted by relevancy
1
2
3
4
5
6
7
8
9
10
11
>>
/src/external/cddl/dtracetoolkit/dist/Docs/
oneliners.txt
2
#
DTrace
OneLiners
5
DTrace
One Liners,
8
dtrace
-n 'proc:::exec-success { trace(curpsinfo->pr_psargs); }'
11
dtrace
-n 'syscall::open*:entry { printf("%s %s",execname,copyinstr(arg0)); }'
14
dtrace
-n 'syscall::creat*:entry { printf("%s %s",execname,copyinstr(arg0)); }'
17
dtrace
-n 'syscall:::entry { @num[execname] = count(); }'
20
dtrace
-n 'syscall:::entry { @num[probefunc] = count(); }'
23
dtrace
-n 'syscall:::entry { @num[pid,execname] = count(); }'
26
dtrace
-n 'sysinfo:::readch { @bytes[execname] = sum(arg0); }'
29
dtrace
-n 'sysinfo:::writech { @bytes[execname] = sum(arg0); }
[
all
...]
/src/external/cddl/dtracetoolkit/dist/Bin/
j_events.d
1
#!/usr/sbin/
dtrace
-Zs
3
* j_events.d - count Java events using
DTrace
.
4
* Written for the Java hotspot
DTrace
provider.
17
* EVENT Event name (
DTrace
probe name)
41
dtrace
:::BEGIN
52
dtrace
:::END
bitesize.d
1
#!/usr/sbin/
dtrace
-s
4
* Written using
DTrace
(Solaris 10 3/05).
57
dtrace
:::BEGIN
77
dtrace
:::END
dispqlen.d
1
#!/usr/sbin/
dtrace
-s
4
* Written using
DTrace
(Solaris 10 3/05).
38
dtrace
:::BEGIN
49
dtrace
:::END
dnlcps.d
1
#!/usr/sbin/
dtrace
-s
4
* Written in
DTrace
(Solaris 10 3/05).
48
dtrace
:::BEGIN
65
dtrace
:::END
intbycpu.d
1
#!/usr/sbin/
dtrace
-s
4
* Written using
DTrace
(Solaris 10 3/05).
14
* This is based on a
DTrace
OneLiner from the DTraceToolkit.
38
dtrace
:::BEGIN
45
dtrace
:::END
iofileb.d
1
#!/usr/sbin/
dtrace
-s
4
* Written using
DTrace
(Solaris 10 3/05).
44
dtrace
:::BEGIN
54
dtrace
:::END
j_who.d
1
#!/usr/sbin/
dtrace
-Zs
3
* j_who.d - trace Java calls by process using
DTrace
.
4
* Written for the Java hotspot
DTrace
provider.
44
dtrace
:::BEGIN
54
dtrace
:::END
js_objnew.d
1
#!/usr/sbin/
dtrace
-Zs
3
* js_objnew.d - count JavaScript object creation using
DTrace
.
4
* Written for the JavaScript
DTrace
provider.
41
dtrace
:::BEGIN
51
dtrace
:::END
js_who.d
1
#!/usr/sbin/
dtrace
-Zs
3
* js_who.d - trace JavaScript function execution by process using
DTrace
.
4
* Written for the JavaScript
DTrace
provider.
42
dtrace
:::BEGIN
52
dtrace
:::END
minfbypid.d
1
#!/usr/sbin/
dtrace
-s
4
* Written using
DTrace
(Solaris 10 3/05)
43
dtrace
:::BEGIN
53
dtrace
:::END
pgpginbypid.d
1
#!/usr/sbin/
dtrace
-s
4
* Writen using
DTrace
(Solaris 10 3/05).
39
dtrace
:::BEGIN
49
dtrace
:::END
php_funccalls.d
1
#!/usr/sbin/
dtrace
-Zs
3
* php_funccalls.d - measure PHP function calls using
DTrace
.
4
* Written for the PHP
DTrace
provider.
9
* which support the PHP
DTrace
provider.
41
dtrace
:::BEGIN
52
dtrace
:::END
php_who.d
1
#!/usr/sbin/
dtrace
-Zs
3
* php_who.d - trace PHP function execution by process using
DTrace
.
4
* Written for the PHP
DTrace
provider.
42
dtrace
:::BEGIN
52
dtrace
:::END
pl_subcalls.d
1
#!/usr/sbin/
dtrace
-Zs
3
* pl_subcalls.d - measure Perl subroutine calls using
DTrace
.
4
* Written for the Perl
DTrace
provider.
9
* which support the Perl
DTrace
provider.
41
dtrace
:::BEGIN
51
dtrace
:::END
pl_who.d
1
#!/usr/sbin/
dtrace
-Zs
3
* pl_who.d - trace Perl subroutine execution by process using
DTrace
.
4
* Written for the Perl
DTrace
provider.
42
dtrace
:::BEGIN
52
dtrace
:::END
pridist.d
1
#!/usr/sbin/
dtrace
-s
4
* Written using
DTrace
(Solaris 10 3/05)
6
* This is a simple
DTrace
script that samples at 1000 Hz which process
12
* This idea came from the script /usr/demo/
dtrace
/profpri.d, which
25
* BASED ON: /usr/demo/
dtrace
/profpri.d
28
*
DTrace
Guide "profile Provider" chapter (docs.sun.com)
53
dtrace
:::BEGIN
63
dtrace
:::END
py_funccalls.d
1
#!/usr/sbin/
dtrace
-Zs
3
* py_funccalls.d - measure Python function calls using
DTrace
.
4
* Written for the Python
DTrace
provider.
9
* which support the Python
DTrace
provider.
41
dtrace
:::BEGIN
51
dtrace
:::END
py_who.d
1
#!/usr/sbin/
dtrace
-Zs
3
* py_who.d - trace Python function execution by process using
DTrace
.
4
* Written for the Python
DTrace
provider.
42
dtrace
:::BEGIN
52
dtrace
:::END
rb_funccalls.d
1
#!/usr/sbin/
dtrace
-Zs
3
* rb_funccalls.d - count Ruby function (method) calls using
DTrace
.
4
* Written for the Ruby
DTrace
provider.
41
dtrace
:::BEGIN
52
dtrace
:::END
rb_lines.d
1
#!/usr/sbin/
dtrace
-Zs
3
* rb_lines.d - trace Ruby line execution by process using
DTrace
.
4
* Written for the Ruby
DTrace
provider.
41
dtrace
:::BEGIN
51
dtrace
:::END
rb_objnew.d
1
#!/usr/sbin/
dtrace
-Zs
3
* rb_objnew.d - count Ruby object creation using
DTrace
.
4
* Written for the Ruby
DTrace
provider.
41
dtrace
:::BEGIN
51
dtrace
:::END
rb_who.d
1
#!/usr/sbin/
dtrace
-Zs
3
* rb_who.d - trace Ruby line execution by process using
DTrace
.
4
* Written for the Ruby
DTrace
provider.
42
dtrace
:::BEGIN
52
dtrace
:::END
/src/external/cddl/dtracetoolkit/dist/Java/
j_events.d
1
#!/usr/sbin/
dtrace
-Zs
3
* j_events.d - count Java events using
DTrace
.
4
* Written for the Java hotspot
DTrace
provider.
17
* EVENT Event name (
DTrace
probe name)
41
dtrace
:::BEGIN
52
dtrace
:::END
/src/external/cddl/osnet/include/
dtrace.h
1
/* $NetBSD:
dtrace
.h,v 1.3 2018/05/28 21:05:08 chs Exp $ */
28
* $FreeBSD: head/cddl/compat/opensolaris/include/
dtrace
.h 179163 2008-05-21 00:26:38Z jb $
37
#include_next <
dtrace
.h>
Completed in 25 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>
Indexes created Thu Apr 16 00:22:31 UTC 2026