Searched defs:cmdLine (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/windows/back/
H A Dexec_md.c32 dbgsysExec(char *cmdLine) argument
38 if (cmdLine == 0) {
46 cmdLine, /* command line */
/openjdk7/hotspot/test/serviceability/
H A DParserTest.java177 String cmdLine, DiagnosticCommand[] argumentTypes) throws Exception {
180 Object[] res = wb.parseCommandLine(cmdLine, argumentTypes);
188 throw new Exception("Parsing of cmdline '" + cmdLine + "' failed!\n"
176 parse(String searchName, String expectedValue, String cmdLine, DiagnosticCommand[] argumentTypes) argument
/openjdk7/jdk/src/solaris/back/
H A Dexec_md.c56 dbgsysExec(char *cmdLine) argument
67 cmdLine = skipWhitespace(cmdLine);
70 args = jvmtiAllocate((jint)strlen(cmdLine)+1);
74 (void)strcpy(args, cmdLine);
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DChildSession.java60 String userVMArgs, String cmdLine,
65 this(runtime, getVM(diagnostics, userVMArgs, cmdLine),
188 String cmdLine) {
193 arguments.get("main").setValue(cmdLine);
59 ChildSession(ExecutionManager runtime, String userVMArgs, String cmdLine, InputListener input, OutputListener output, OutputListener error, OutputListener diagnostics) argument
186 getVM(OutputListener diagnostics, String userVMArgs, String cmdLine) argument
/openjdk7/jdk/test/com/sun/jdi/
H A DVMConnection.java113 static public String[] insertDebuggeeVMOptions(String[] cmdLine) { argument
116 return cmdLine;
120 String[] retVal = new String[cmdLine.length + v1.length];
121 retVal[0] = cmdLine[0];
123 System.arraycopy(cmdLine, 1, retVal, v1.length + 1, cmdLine.length - 1);
/openjdk7/hotspot/agent/src/os/solaris/proc/
H A Dsaproc.cpp732 static void attach_internal(JNIEnv* env, jobject this_obj, jstring cmdLine, jboolean isProcess) { argument
735 const char* cmdLine_cstr = env->GetStringUTFChars(cmdLine, &isCopy);
761 env->ReleaseStringUTFChars(cmdLine, cmdLine_cstr);

Completed in 143 milliseconds