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

/openjdk7/jdk/src/share/classes/sun/jvmstat/monitor/
H A DMonitoredVmUtil.java64 public static String commandLine(MonitoredVm vm) throws MonitorException { method in class:MonitoredVmUtil
80 String commandLine = commandLine(vm);
82 int firstSpace = commandLine.indexOf(' ');
84 return commandLine.substring(firstSpace + 1);
85 } else if (commandLine.compareTo("Unknown") == 0) {
86 return commandLine;
105 String commandLine = commandLine(vm);
106 String arg0 = commandLine;
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DLocalVirtualMachine.java50 private String commandLine; field in class:LocalVirtualMachine
55 public LocalVirtualMachine(int vmid, String commandLine, boolean canAttach, String connectorAddress) { argument
57 this.commandLine = commandLine;
60 this.displayName = getDisplayName(commandLine);
63 private static String getDisplayName(String commandLine) { argument
65 String[] res = commandLine.split(" ", 2);
74 return commandLine;
118 return commandLine;
151 name = MonitoredVmUtil.commandLine(mv
[all...]
/openjdk7/jdk/src/share/back/
H A Dtransport.c373 char *commandLine; local
377 commandLine = jvmtiAllocate((int)strlen(command) +
380 if (commandLine == NULL) {
383 (void)strcpy(commandLine, command);
384 (void)strcat(commandLine, " ");
385 (void)strcat(commandLine, name);
386 (void)strcat(commandLine, " ");
387 (void)strcat(commandLine, address);
389 /* Convert commandLine from UTF-8 to platform encoding */
390 len = (int)strlen(commandLine);
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/attach/
H A DHotSpotAttachProvider.java106 name = MonitoredVmUtil.commandLine(mvm);

Completed in 24 milliseconds