/openjdk7/jdk/src/share/back/ |
H A D | debugDispatch.c | 91 debugDispatch_getHandler(int cmdSet, int cmd) argument 107 if (l2Array == NULL || cmd > (int)(intptr_t)(void*)l2Array[0]) { 111 return (CommandHandler)l2Array[cmd];
|
H A D | debugLoop.c | 52 lastCommand(jdwpCmdPacket *cmd) argument 54 if ((cmd->cmdSet == JDWP_COMMAND_SET(VirtualMachine)) && 55 ((cmd->cmd == JDWP_COMMAND(VirtualMachine, Dispose)) || 56 (cmd->cmd == JDWP_COMMAND(VirtualMachine, Exit)))) { 64 resumeCommand(jdwpCmdPacket *cmd) argument 66 if ( (cmd->cmdSet == JDWP_COMMAND_SET(VirtualMachine)) && 67 (cmd->cmd 127 jdwpCmdPacket *cmd = &p.type.cmd; local 218 jdwpCmdPacket *cmd; local [all...] |
/openjdk7/jdk/test/java/lang/Runtime/exec/ |
H A D | SetCwd.java | 37 public static void testExec(String cmd, String[] cmdarray, boolean flag) argument 50 p = Runtime.getRuntime().exec(cmd, null, f); 74 String cmd = cmdarray[0] + " " + cmdarray[1]; 76 testExec(cmd, null, true);
|
H A D | ExecCommand.java | 58 @Override public void checkExec(String cmd) { argument 59 String ncmd = (new File(unquote(cmd))).getPath(); 62 || ncmd.equals(".\\Program Files\\do.cmd") 63 || ncmd.equals(".\\Program.cmd") 64 || ncmd.equals("cmd")) 68 super.checkExec(cmd); 77 "cmd /C dir > dirOut.txt", 78 "cmd /C dir > \".\\Program Files\\dirOut.txt\"", 79 ".\\Program Files\\do.cmd", 80 "\".\\Program Files\\doNot.cmd\" ar [all...] |
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/ |
H A D | SnmpPdu.java | 98 * @param cmd The integer representation of the PDU type. 101 public static String pduTypeToString(int cmd) { argument 102 switch (cmd) { 122 return "Unknown Command = " + cmd ;
|
/openjdk7/jdk/test/com/sun/net/httpserver/bugs/ |
H A D | B6393710.java | 53 static String cmd = field in class:B6393710 83 os.write (cmd.getBytes());
|
H A D | B6433018.java | 45 static String cmd = field in class:B6433018 76 os.write (cmd.getBytes());
|
/openjdk7/jdk/test/sun/security/tools/jarsigner/ |
H A D | TimestampCheck.java | 236 String cmd = null; 241 cmd = System.getProperty("java.home") + "/../bin/jarsigner" + 247 cmd = System.getProperty("java.home") + "/bin/jarsigner" + 256 jarsigner(cmd, 0, true); // Success, normal call 257 jarsigner(cmd, 1, false); // These 4 should fail 258 jarsigner(cmd, 2, false); 259 jarsigner(cmd, 3, false); 260 jarsigner(cmd, 4, false); 261 jarsigner(cmd, 5, true); // Success, 6543440 solved. 262 jarsigner(cmd, 281 jarsigner(String cmd, int path, boolean expected) argument [all...] |
/openjdk7/jdk/src/share/classes/sun/net/ |
H A D | TransferProtocolClient.java | 116 /** Sends command <i>cmd</i> to the server. */ 117 public void sendServer(String cmd) { argument 118 serverOutput.print(cmd); 120 System.out.print("Sending: " + cmd);
|
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/ |
H A D | SolarisNativeDispatcher.java | 45 * int facl(int filedes, int cmd, int nentries, void aclbufp) 47 static native int facl(int fd, int cmd, int nentries, long aclbufp) argument
|
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/activation/ |
H A D | CommandHandler.java | 48 boolean processCommand(String[] cmd, ORB orb, PrintStream out); argument
|
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/ |
H A D | Packet.java | 39 // Note! flags, cmdSet, and cmd are all byte values. 45 short cmd; field in class:Packet 67 b[10] = (byte)cmd; 107 p.cmd = (short)(b[10] & 0xff);
|
/openjdk7/jdk/test/com/sun/jdi/ |
H A D | ShellScaffold.sh | 100 # The solution is to put a magic word in the cmd lines of background java 119 # cmd line. Thus, the magic keyword trick doesn't work. We 151 # keyword in their cmd line. 156 # Kill all processes with $2 in their cmd lines 165 # The cygwin ps command doesn't show the options passed to a cmd. 175 # Here is a way to kill using a win cmd and the win PID. 225 # This is used to tag each java and jdb cmd we issue so 516 # Send a cmd to jdb and wait for the jdb prompt to appear. 524 cmd() function 527 # if jdb got a cont cmd tha [all...] |
/openjdk7/jdk/test/sun/tools/jhat/ |
H A D | HatRun.java | 116 private void execute(String cmd[]) argument 123 for ( i = 0 ; i < cmd.length; i++ ) { 124 cmdLine += cmd[i]; 130 p = Runtime.getRuntime().exec(cmd); 191 String cmd[] = new String[1 + (d64?1:0) + 7 + nvm_options]; 195 cmd[i++] = java; 196 cmd[i++] = "-cp"; 197 cmd[i++] = cdir; 198 cmd[i++] = "-Dtest.classes=" + cdir; 200 cmd[ [all...] |
/openjdk7/jdk/src/share/demo/scripting/jconsole-plugin/src/com/sun/demo/scripting/jconsole/ |
H A D | ScriptJConsolePlugin.java | 118 public String executeCommand(String cmd) { argument 122 Object tmp = engine.eval(cmd);
|
H A D | ScriptShellPanel.java | 64 public String executeCommand(String cmd); argument 100 String cmd = getMarkedText(); 102 if ((cmd.length() == 0) || 103 (cmd.charAt(cmd.length() - 1) != '\\')) { 105 final String cmd1 = trimContinuations(cmd); 219 private String executeCommand(String cmd) { argument 220 return commandProcessor.executeCommand(cmd);
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/ |
H A D | Debugger.java | 101 public String consoleExecuteCommand(String cmd) throws DebuggerException; argument
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/ |
H A D | RemoteDebugger.java | 59 public String consoleExecuteCommand(String cmd) throws RemoteException; argument
|
/openjdk7/jdk/src/share/classes/java/rmi/activation/ |
H A D | ActivationGroupDesc.java | 106 * @param cmd the controlling options for executing the VM in 111 CommandEnvironment cmd) 113 this(null, null, null, overrides, cmd); 130 * @param cmd the controlling options for executing the VM in 138 CommandEnvironment cmd) 141 this.env = cmd; 110 ActivationGroupDesc(Properties overrides, CommandEnvironment cmd) argument 134 ActivationGroupDesc(String className, String location, MarshalledObject<?> data, Properties overrides, CommandEnvironment cmd) argument
|
/openjdk7/hotspot/src/share/vm/services/ |
H A D | diagnosticCommand.cpp | 87 DCmd* cmd = NULL; local 96 cmd = factory->create_resource_instance(output()); 97 if (cmd != NULL) { 98 DCmdMark mark(cmd); 99 cmd->print_help(factory->name());
|
/openjdk7/jdk/src/solaris/native/sun/nio/fs/ |
H A D | SolarisNativeDispatcher.c | 70 jint cmd, jint nentries, jlong address) 75 n = facl((int)fd, (int)cmd, (int)nentries, aclbufp); 69 Java_sun_nio_fs_SolarisNativeDispatcher_facl(JNIEnv* env, jclass this, jint fd, jint cmd, jint nentries, jlong address) argument
|
/openjdk7/jdk/src/windows/classes/sun/tools/attach/ |
H A D | WindowsVirtualMachine.java | 77 InputStream execute(String cmd, Object ... args) argument 96 enqueue(hProcess, stub, cmd, pipename, args); 109 if (cmd.equals("load")) { 182 String cmd, String pipename, Object ... args) throws IOException; 181 enqueue(long hProcess, byte[] stub, String cmd, String pipename, Object ... args) argument
|
/openjdk7/jdk/test/java/nio/channels/AsynchronousFileChannel/ |
H A D | Lock.java | 187 private void sendCommand(String cmd, String... params) argument 191 cmd += " " + s; 193 cmd += TERMINATOR; 195 ByteBuffer buf = Charset.defaultCharset().encode(cmd); 298 String cmd = (sp < 0) ? s.substring(0, s.length()-1) : 303 if (cmd.equals(OPEN_CMD)) { 308 if (cmd.equals(CLOSE_CMD)) { 315 if (cmd.equals(LOCK_CMD)) { 332 if (cmd.equals(UNLOCK_CMD)) {
|
/openjdk7/jdk/src/share/demo/jvmti/hprof/ |
H A D | hprof_listener.c | 242 /* The cmd socket has closed so the listener thread is done 304 unsigned short cmd = recv_u2(); local 305 if (cmd == 0x0001) { 308 } else if (cmd == 0x0002) { 311 } else if (cmd == 0x0003) { 315 } else if (cmd == 0x0004) { 319 } else if (cmd == 0x0005) { 323 } else if (cmd == 0x0006) { 328 } else if (cmd == 0x0007) { 339 "failed to recognize cmd [all...] |
/openjdk7/jdk/src/share/classes/sun/tools/attach/ |
H A D | HotSpotVirtualMachine.java | 209 abstract InputStream execute(String cmd, Object ... args) argument 215 private InputStream executeCommand(String cmd, Object ... args) throws IOException { argument 217 return execute(cmd, args);
|