Searched refs:program (Results 1 - 25 of 169) sorted by relevance

1234567

/osnet-11/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DConsumer.java32 * DTrace consumer. To consume the output of DTrace program actions,
34 * listener}. To get a snapshot of all aggregations in a D program on
81 * @see #compile(File program, String[] macroArgs)
82 * @see #compile(String program, String[] macroArgs)
89 * Compiles the given D program string. Optional macro arguments
90 * replace corresponding numbered macro variables in the D program
93 * @param program program string
95 * embedded in the given D program: {@code macroArgs[0]} replaces
104 * to {@link #enable(Program program) enabl
114 compile(String program, String ... macroArgs) argument
149 compile(File program, String ... macroArgs) argument
198 enable(Program program) argument
216 getProgramInfo(Program program) argument
677 listProgramProbes(Program program) argument
701 listProgramProbeDetail(Program program) argument
[all...]
H A DLocalConsumer.java92 private native Program _compileString(String program, String[] args) argument
96 private native void _exec(Program program) throws DTraceException; argument
97 private native void _getProgramInfo(Program program) argument
118 List <ProbeDescription> probeList, Program program);
120 List <Probe> probeList, Program program);
328 case COMPILED: // caller may compile more than one program
341 compile(String program, String ... macroArgs) throws DTraceException argument
343 if (program == null) {
344 throw new NullPointerException("program string is null");
371 p = _compileString(program, arg
117 _listCompiledProbes( List <ProbeDescription> probeList, Program program) argument
119 _listCompiledProbeDetail( List <Probe> probeList, Program program) argument
382 compile(File program, String ... macroArgs) argument
422 checkProgram(Program program) argument
440 enable(Program program) argument
474 getProgramInfo(Program program) argument
1087 listProgramProbes(Program program) argument
1100 listProgramProbeDetail(Program program) argument
[all...]
/osnet-11/usr/src/lib/libc/i386/gen/
H A Dmemcmp.s33 / Fast assembly language version of the following C-program strcat
H A Dstrcpy.s35 / Fast assembly language version of the following C-program strcpy
H A Dstrlen.s34 / Fast assembly language version of the following C-program strlen
H A Dstrncpy.s34 / Fast assembly language version of the following C-program strncpy
H A Dstrrchr.s34 / Fast assembly language version of the following C-program strrchr
/osnet-11/usr/src/lib/libdhcputil/common/
H A Ddhcpmsg.c40 static char program[PATH_MAX] = "<unknown>"; variable
84 errno != 0) ? "%s: %s: %s: %s\n" : "%s: %s: %s\n", program,
108 (void) strlcpy(program, program_name, sizeof (program));
115 (void) openlog(program, LOG_PID, LOG_DAEMON);
/osnet-11/usr/src/lib/libc/amd64/gen/
H A Dstrrchr.s34 / Fast assembly language version of the following C-program strrchr
/osnet-11/usr/src/grub/grub-0.97/docs/
H A Dhelp2man6 # This program is free software; you can redistribute it and/or modify
11 # This program is distributed in the hope that it will be useful,
17 # along with this program; if not, write to the Free Software Foundation,
170 (my $program = $ARGV[0]) =~ s!.*/!!;
171 my $package = $program;
188 # <program> <version>
189 # {GNU,Free} <program> <version>
190 # <program> ({GNU,Free} <package>) <version>
191 # <program> - {GNU,Free} <package> <version>
200 $program
[all...]
/osnet-11/usr/src/lib/libnsl/rpc/
H A Dpmap_clnt.c59 * Set a mapping between program, version and port.
63 pmap_set(rpcprog_t program, rpcvers_t version, rpcprot_t protocol, argument
82 rslt = rpcb_set(program, version, nconf, na);
90 * Remove the mapping between program, version and port.
94 pmap_unset(rpcprog_t program, rpcvers_t version) argument
102 udp_rslt = rpcb_unset(program, version, nconf);
107 tcp_rslt = rpcb_unset(program, version, nconf);
119 * Find the mapped port for program, version.
128 pmap_getport(struct sockaddr_in *address, rpcprog_t program, argument
140 parms.pm_prog = program;
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Digest/MD5/
H A DMakefile.PL82 /* This program allocates a buffer of U8 (char) and then tries */
84 /* program is expected to die with a bus error/seg fault for */
149 print "Can't compile test program. Will ensure alignment to play safe.\n\n";
161 print "Test program exit status was $rc\n";
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/
H A Dtestlib.pm35 to a test program the intermediate directories used by C<make> are
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Dconfig_h.SH49 * This symbol holds the complete pathname to the sed program.
152 * This symbol, if defined, indicates to the C program that
206 * This symbol, if defined, indicates to the C program that
231 * This symbol, if defined, indicates to the C program that the
437 * to change the effective gid of the current program.
443 * to change the effective uid of the current program.
506 * to change the real gid of the current program.
512 * to change the real uid of the current program.
658 * This symbol, if defined, indicates to the C program that it should
675 * This symbol, if defined, indicates to the C program tha
[all...]
/osnet-11/usr/src/lib/libdtrace_jni/common/
H A Ddtrace_jni.c391 * Add the compiled program to a list of programs the API expects to enable.
392 * Returns the Program instance identifying the listed program, or NULL if the
412 dtj_throw_illegal_argument(jenv, "unexpected program type %d\n",
426 "could not add program");
671 jobject obj, jstring program, jobjectArray args)
687 prog = (*env)->GetStringUTFChars(env, program, 0);
694 (*env)->ReleaseStringUTFChars(env, program, prog);
701 (*env)->ReleaseStringUTFChars(env, program, prog);
713 (*env)->ReleaseStringUTFChars(env, program, prog);
718 (*env)->ReleaseStringUTFChars(env, program, pro
670 Java_org_opensolaris_os_dtrace_LocalConsumer__1compileString(JNIEnv *env, jobject obj, jstring program, jobjectArray args) argument
794 Java_org_opensolaris_os_dtrace_LocalConsumer__1exec(JNIEnv *env, jobject obj, jobject program) argument
872 Java_org_opensolaris_os_dtrace_LocalConsumer__1getProgramInfo(JNIEnv *env, jobject obj, jobject program) argument
1764 Java_org_opensolaris_os_dtrace_LocalConsumer__1listCompiledProbes(JNIEnv *env, jobject obj, jobject list, jobject program) argument
1771 Java_org_opensolaris_os_dtrace_LocalConsumer__1listCompiledProbeDetail( JNIEnv *env, jobject obj, jobject list, jobject program) argument
1779 dtj_list_compiled_probes(JNIEnv *env, jobject obj, jobject list, jobject program, dtrace_probe_f *func) argument
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/DBM_Filter/
H A Dnull.pm38 to interoperate with a DBM file that a C program also uses. A fairly
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Test/Harness/
H A DAssert.pm39 If the expression is false the program aborts.
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/pod/
H A Dpod2man.PL43 # This program is free software; you may redistribute it and/or modify it
260 pod2man program > program.1
287 The name of the program being documented is conventionally written in bold
288 (using BE<lt>E<gt>) wherever it occurs, as are all program options.
322 The description should ideally fit on a single line, even if a man program
332 Extended description and discussion of the program or functions, or the body
348 program. This should be separate from the description for the use of things
370 What the program or function returns, if successful. This section can be
378 Typically used for function documentation; program documentatio
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/Perldoc/
H A DToRtf.pm55 the output will be opened with F<write.exe> or whatever program is
76 This program is distributed in the hope that it will be useful, but
H A DToPod.pm81 This program is distributed in the hope that it will be useful, but
H A DToXml.pm54 This program is distributed in the hope that it will be useful, but
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/t/
H A DSelect.t33 This program just tests the basics of the Pod::Select module.
98 This program just tests the basics of the Pod::Select module.
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A Ddiagnostics.pm17 Using the C<splain> standalone filter program:
19 perl program 2>diag.out
29 other pragmata, it affects the compilation phase of your program rather
32 To use in your program as a pragma, merely invoke
36 at the start (or near the start) of your program. (Note
58 While apparently a whole nuther program, I<splain> is actually nothing
82 If you prefer to run your program first and look at its problem
159 a program named I<splain>, you should expect a bit of whimsy.
/osnet-11/usr/src/cmd/hal/hald-runner/
H A Drunner.c10 * This program is free software; you can redistribute it and/or modify
15 * This program is distributed in the hope that it will be useful,
21 * along with this program; if not, write to the Free Software
41 /* Successful run of the program */
212 /* Search for the program in the dirs where it's allowed to be */
213 char *program; local
219 program = g_path_get_basename(argv[0]);
222 path = g_find_program_in_path (program);
223 g_free(program);
227 /* Replace program i
[all...]
/osnet-11/usr/src/grub/grub2/util/
H A Dgrub-editenv.c305 char *program = xstrdup(program_name); local
307 argp_help (&argp, stderr, ARGP_HELP_STD_USAGE, program);
308 free(program);

Completed in 61 milliseconds

1234567