Searched refs:macroArgs (Results 1 - 4 of 4) sorted by relevance

/osnet-11/usr/src/lib/libdtrace_jni/java/docs/examples/
H A DTestAPI.java42 String[] macroArgs = new String[args.length - 1];
43 System.arraycopy(args, 1, macroArgs, 0, (args.length - 1));
54 consumer.compile(file, macroArgs);
H A DTestAPI2.java43 String[] macroArgs = new String[args.length - 1];
44 System.arraycopy(args, 1, macroArgs, 0, (args.length - 1));
63 consumer.compile(file, macroArgs);
/osnet-11/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DConsumer.java81 * @see #compile(File program, String[] macroArgs)
82 * @see #compile(String program, String[] macroArgs)
94 * @param macroArgs macro substitutions for <i>$n</i> placeholders
95 * embedded in the given D program: {@code macroArgs[0]} replaces
96 * all occurrences of {@code $1}, {@code macroArgs[1]} replaces all
99 * included in the {@code macroArgs} parameter. See the <a
112 * @see #compile(File program, String[] macroArgs)
114 public Program compile(String program, String ... macroArgs) argument
123 * @param macroArgs macro substitutions for <i>$n</i> placeholders
124 * embedded in the given D program: {@code macroArgs[
149 compile(File program, String ... macroArgs) argument
[all...]
H A DLocalConsumer.java341 compile(String program, String ... macroArgs) throws DTraceException argument
350 if (macroArgs != null) {
351 for (String macroArg : macroArgs) {
356 argv = new String[macroArgs.length + 1];
364 System.arraycopy(macroArgs, 0, argv, 1, macroArgs.length);
382 compile(File program, String ... macroArgs) throws DTraceException, argument
396 if (macroArgs != null) {
397 for (String macroArg : macroArgs) {
402 argv = new String[macroArgs
[all...]

Completed in 24 milliseconds