Searched refs:macroArgs (Results 1 – 4 of 4) sorted by relevance
/titanic_50/usr/src/lib/libdtrace_jni/java/docs/examples/ |
H A D | TestAPI.java | 42 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 D | TestAPI2.java | 43 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_50/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/ |
H A D | LocalConsumer.java | 339 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 D | Consumer.java | 117 public Program compile(String program, String ... macroArgs) in compile() argument 152 public Program compile(File program, String ... macroArgs) in compile() argument
|