Home
last modified time | relevance | path

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

/titanic_44/usr/src/lib/libdtrace_jni/java/docs/examples/
H A DTestAPI.java42 String[] macroArgs = new String[args.length - 1]; in main() local
43 System.arraycopy(args, 1, macroArgs, 0, (args.length - 1)); in main()
54 consumer.compile(file, macroArgs); in main()
H A DTestAPI2.java43 String[] macroArgs = new String[args.length - 1]; in main() local
44 System.arraycopy(args, 1, macroArgs, 0, (args.length - 1)); in main()
63 consumer.compile(file, macroArgs); in main()
/titanic_44/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DLocalConsumer.java339 compile(String program, String ... macroArgs) throws DTraceException in compile() argument
348 if (macroArgs != null) { in compile()
349 for (String macroArg : macroArgs) { in compile()
354 argv = new String[macroArgs.length + 1]; in compile()
362 System.arraycopy(macroArgs, 0, argv, 1, macroArgs.length); in compile()
380 compile(File program, String ... macroArgs) throws DTraceException, in compile() argument
394 if (macroArgs != null) { in compile()
395 for (String macroArg : macroArgs) { in compile()
400 argv = new String[macroArgs.length + 1]; in compile()
402 System.arraycopy(macroArgs, 0, argv, 1, macroArgs.length); in compile()
[all …]
H A DConsumer.java117 public Program compile(String program, String ... macroArgs) in compile() argument
152 public Program compile(File program, String ... macroArgs) in compile() argument