Searched refs:mesg (Results 1 - 18 of 18) sorted by relevance

/openjdk7/jdk/test/java/rmi/testlibrary/
H A DActivationLibrary.java57 private static void mesg(Object mesg) { argument
58 System.err.println("ACTIVATION_LIBRARY: " + mesg.toString());
72 mesg("inactive successful");
75 mesg("inactive trial failed. Sleeping " +
82 mesg("Thread interrupted while trying to deactivate activatable. Exiting deactivation");
87 mesg("Unexpected exception. Have to forcibly unexport the object." +
97 mesg("unable to inactivate after several attempts");
98 mesg("unexporting object forcibly instead");
125 mesg("Activatio
[all...]
H A DRMID.java51 private static void mesg(Object mesg) { argument
52 System.err.println("RMID: " + mesg.toString());
173 mesg("removing rmid's old log file...");
183 mesg("\t" + " unable to delete old log file.");
211 mesg("starting rmid on port #" + port + "...");
230 mesg("Thread interrupted while checking for start of Activation System. Giving up check.");
231 mesg("Activation System state unknown");
246 mesg("finished starting rmid.");
250 mesg("rmi
[all...]
H A DJavaVM.java47 private static void mesg(Object mesg) { argument
48 System.err.println("JAVAVM: " + mesg.toString());
157 mesg("command = " + Arrays.asList(javaCommand).toString());
H A DTestLibrary.java98 static void mesg(Object mesg) { argument
99 System.err.println("TEST_LIBRARY: " + mesg.toString());
246 mesg(srcFile);
247 mesg(dstFile);
267 mesg("Installed class \"" + className +
309 mesg("unexporting object...");
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DTargetLostException.java94 TargetLostException(InstructionHandle[] t, String mesg) { argument
95 super(mesg);
/openjdk7/jdk/test/java/io/Serializable/longString/
H A DLongString.java61 String mesg = "Message in golden file";
64 oout.writeObject(mesg);
68 mesgf = new File(System.getProperty("test.src", "."), "mesg.ser");
86 if (! mesg.equals(mesgcopy))
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DServerHandshaker.java276 private void clientHello(ClientHello mesg) throws IOException { argument
278 mesg.print(System.out);
285 CipherSuiteList cipherSuites = mesg.getCipherSuites();
304 mesg.extensions.get(ExtensionType.EXT_RENEGOTIATION_INFO);
417 clientRequestedVersion = mesg.protocolVersion;
445 clnt_random = mesg.clnt_random;
455 if (mesg.sessionId.length() != 0) {
460 .get(mesg.sessionId.getId());
544 (mesg.getCipherSuites().contains(suite) == false)) {
575 mesg
877 chooseCipherSuite(ClientHello mesg) argument
1333 clientKeyExchange(KerberosClientKeyExchange mesg) argument
1362 clientKeyExchange(DHClientKeyExchange mesg) argument
1371 clientKeyExchange(ECDHClientKeyExchange mesg) argument
1389 clientCertificateVerify(CertificateVerify mesg) argument
1441 clientFinished(Finished mesg) argument
1595 clientKeyExchange(RSAClientKeyExchange mesg) argument
1611 clientCertificate(CertificateMsg mesg) argument
[all...]
H A DClientHandshaker.java313 private void serverHelloRequest(HelloRequest mesg) throws IOException { argument
315 mesg.print(System.out);
373 private void serverHello(ServerHello mesg) throws IOException { argument
376 mesg.print(System.out);
380 ProtocolVersion mesgVersion = mesg.protocolVersion;
396 mesg.extensions.get(ExtensionType.EXT_RENEGOTIATION_INFO);
461 svr_random = mesg.svr_random;
463 if (isNegotiable(mesg.cipherSuite) == false) {
465 "Server selected improper ciphersuite " + mesg.cipherSuite);
468 setCipherSuite(mesg
596 serverKeyExchange(RSA_ServerKeyExchange mesg) argument
616 serverKeyExchange(DH_ServerKeyExchange mesg) argument
626 serverKeyExchange(ECDH_ServerKeyExchange mesg) argument
640 serverHelloDone(ServerHelloDone mesg) argument
1016 serverFinished(Finished mesg) argument
1300 serverCertificate(CertificateMsg mesg) argument
[all...]
H A DHandshaker.java938 void sendChangeCipherSpec(Finished mesg, boolean lastMessage) argument
969 mesg.print(System.out);
971 mesg.write(output);
981 mesg.print(System.out);
983 mesg.write(output);
/openjdk7/jdk/test/java/rmi/reliability/benchmark/bench/serial/
H A DMain.java89 static void die(String mesg) { argument
90 System.err.println(mesg);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/
H A DWindbgDebuggerLocal.java619 String mesg = null;
622 mesg = "dbgeng.dll and dbghelp.dll cannot be found. ";
624 mesg = "dbgeng.dll cannot be found (dbghelp.dll was found). ";
626 mesg = "dbghelp.dll cannot be found (dbgeng.dll was found). ";
628 throw new UnsatisfiedLinkError(mesg +
/openjdk7/jdk/test/java/rmi/reliability/benchmark/bench/rmi/
H A DMain.java142 static void die(String mesg) { argument
143 System.err.println(mesg);
/openjdk7/hotspot/src/share/vm/runtime/
H A Dos.hpp115 // vm_exit_out_of_memory() with the specified mesg.
117 bool executable, const char* mesg);
120 bool executable, const char* mesg);
279 // vm_exit_out_of_memory() with the specified mesg.
281 bool executable, const char* mesg);
284 bool executable, const char* mesg);
H A Dos.cpp1452 const char* mesg) {
1453 pd_commit_memory_or_exit(addr, bytes, executable, mesg);
1458 bool executable, const char* mesg) {
1459 os::pd_commit_memory_or_exit(addr, size, alignment_hint, executable, mesg);
1451 commit_memory_or_exit(char* addr, size_t bytes, bool executable, const char* mesg) argument
1457 commit_memory_or_exit(char* addr, size_t size, size_t alignment_hint, bool executable, const char* mesg) argument
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp2711 const char* mesg) {
2712 assert(mesg != NULL, "mesg must be specified");
2715 // the caller wants all commit errors to exit with the specified mesg:
2717 vm_exit_out_of_memory(size, mesg);
2775 const char* mesg) {
2776 assert(mesg != NULL, "mesg must be specified");
2779 // the caller wants all commit errors to exit with the specified mesg:
2781 vm_exit_out_of_memory(size, mesg);
2710 pd_commit_memory_or_exit(char* addr, size_t size, bool exec, const char* mesg) argument
2773 pd_commit_memory_or_exit(char* addr, size_t size, size_t alignment_hint, bool exec, const char* mesg) argument
[all...]
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp2955 const char* mesg) {
2956 assert(mesg != NULL, "mesg must be specified");
2960 vm_exit_out_of_memory(size, mesg);
2966 const char* mesg) {
2968 pd_commit_memory_or_exit(addr, size, exec, mesg);
2954 pd_commit_memory_or_exit(char* addr, size_t size, bool exec, const char* mesg) argument
2964 pd_commit_memory_or_exit(char* addr, size_t size, size_t alignment_hint, bool exec, const char* mesg) argument
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp3189 const char* mesg) {
3190 assert(mesg != NULL, "mesg must be specified");
3193 vm_exit_out_of_memory(size, mesg);
3199 const char* mesg) {
3201 pd_commit_memory_or_exit(addr, size, exec, mesg);
3188 pd_commit_memory_or_exit(char* addr, size_t size, bool exec, const char* mesg) argument
3197 pd_commit_memory_or_exit(char* addr, size_t size, size_t alignment_hint, bool exec, const char* mesg) argument
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp2872 const char* mesg) {
2873 assert(mesg != NULL, "mesg must be specified");
2876 // the caller wants all commit errors to exit with the specified mesg:
2878 vm_exit_out_of_memory(bytes, mesg);
2918 const char* mesg) {
2919 assert(mesg != NULL, "mesg must be specified");
2922 // the caller wants all commit errors to exit with the specified mesg:
2924 vm_exit_out_of_memory(bytes, mesg);
2871 pd_commit_memory_or_exit(char* addr, size_t bytes, bool exec, const char* mesg) argument
2916 pd_commit_memory_or_exit(char* addr, size_t bytes, size_t alignment_hint, bool exec, const char* mesg) argument
[all...]

Completed in 480 milliseconds