Searched refs:output (Results 276 - 300 of 1016) sorted by relevance

<<11121314151617181920>>

/openjdk10/hotspot/test/runtime/MemberName/
H A DMemberNameLeak.java61 OutputAnalyzer output = new OutputAnalyzer(pb.start());
62 output.shouldContain("ResolvedMethod entry added for MemberNameLeak$Leak.callMe()V");
63 output.shouldContain("ResolvedMethod entry found for MemberNameLeak$Leak.callMe()V");
64 output.shouldContain("ResolvedMethod entry removed for MemberNameLeak$Leak.callMe()V");
65 output.shouldHaveExitValue(0);
/openjdk10/hotspot/test/runtime/NMT/
H A DThreadedMallocTestType.java47 OutputAnalyzer output;
68 output = new OutputAnalyzer(pb.start());
69 output.shouldContain("Test (reserved=896KB, committed=896KB)");
83 output = new OutputAnalyzer(pb.start());
84 output.shouldNotContain("Test (reserved=");
H A DMallocTrackingVerify.java55 OutputAnalyzer output;
77 output = new OutputAnalyzer(pb.start());
78 output.shouldContain("Test (reserved=4KB, committed=4KB)");
85 // Run 'jcmd <pid> VM.native_memory summary', check for expected output
88 output = new OutputAnalyzer(pb.start());
89 output.shouldNotContain("Test (reserved=");
H A DMallocSiteHashOverflow.java49 OutputAnalyzer output;
59 output = new OutputAnalyzer(pb.start());
60 output.shouldContain("Native Memory Tracking Statistics");
76 output = new OutputAnalyzer(pb.start());
77 output.shouldContain("Tracking level has been downgraded due to lack of resources");
H A DMallocRoundingReportTest.java47 OutputAnalyzer output;
65 // Run 'jcmd <pid> VM.native_memory summary', check for expected output
70 output = new OutputAnalyzer(pb.start());
71 output.shouldContain(expectedOut);
74 // Run 'jcmd <pid> VM.native_memory summary', check for expected output
76 output = new OutputAnalyzer(pb.start());
77 output.shouldNotContain("Test (reserved=");
/openjdk10/hotspot/test/runtime/CommandLine/OptionsValidation/
H A DTestJcmdOutput.java28 * jcmd does not print an error message to the target process output.
50 OutputAnalyzer output;
52 System.out.println("Verify jcmd error message and that jcmd does not write errors to the target process output");
53 output = new OutputAnalyzer((ProcessTools.createJavaProcessBuilder(
57 output.shouldHaveExitValue(0);
58 /* Verify that jcmd not print error message to the target process output */
59 output.shouldNotContain(JCMD_OUT_OF_RANGE_MESSAGE);
60 output.shouldNotContain(JCMD_CONSTRAINT_MESSAGE);
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DIntArrayData.java30 import com.sun.xml.internal.bind.v2.runtime.output.Pcdata;
31 import com.sun.xml.internal.bind.v2.runtime.output.UTF8XmlOutput;
114 public void writeTo(UTF8XmlOutput output) throws IOException { argument
118 output.write(' ');
119 output.text(data[p++]);
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/
H A DConsoleErrorReporter.java42 * Errors, warnings are sent to this output.
44 private PrintStream output; field in class:ConsoleErrorReporter
49 this.output = out;
79 output.println(Messages.format(resource,e.getMessage()));
80 output.println(getLocationString(e));
81 output.println();
/openjdk10/langtools/test/tools/javap/
H A DT6622216.java41 String output = javap(classFile);
42 verify(output);
73 void verify(String output) { argument
74 System.out.println(output);
75 if (output.indexOf("InnerClasses") == -1)
76 throw new Error("InnerClasses not found in output");
/openjdk10/langtools/test/tools/javap/4870651/
H A DT4870651.java65 String output = sw.toString();
67 System.out.println(output);
68 return output;
72 String output = javap(className);
74 if (output.indexOf(expect)< 0)
/openjdk10/jdk/src/java.base/share/classes/javax/crypto/
H A DCipherSpi.java61 * output. A transformation always includes the name of a cryptographic
263 * Returns the length in bytes that an output buffer would
271 * <p>The actual output length of the next <code>update</code> or
277 * @return the required output buffer size (in bytes)
498 * and the result is stored in the <code>output</code> buffer, starting at
501 * <p>If the <code>output</code> buffer is too small to hold the result,
508 * @param output the buffer for the result
509 * @param outputOffset the offset in <code>output</code> where the result
512 * @return the number of bytes stored in <code>output</code>
514 * @exception ShortBufferException if the given output buffe
517 engineUpdate(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
552 engineUpdate(ByteBuffer input, ByteBuffer output) argument
666 engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
727 engineDoFinal(ByteBuffer input, ByteBuffer output) argument
744 bufferCrypt(ByteBuffer input, ByteBuffer output, boolean isUpdate) argument
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/threads/
H A DThreadLocal03.java46 sum += t.output;
54 int output; field in class:ThreadLocal03.TThread
59 output = local.get();
/openjdk10/hotspot/test/runtime/CommandLine/
H A DVMDeprecatedOptions.java68 OutputAnalyzer output = CommandLineOptionTest.startVMWithOptions(optionNames, expectedValues);
71 output.shouldHaveExitValue(0);
74 output.shouldMatch(match);
79 testDeprecated(DEPRECATED_OPTIONS); // Make sure that each deprecated option is mentioned in the output.
/openjdk10/hotspot/test/runtime/logging/
H A DVMOperationTest.java27 * @summary vmoperation=debug should have logging output
44 OutputAnalyzer output = new OutputAnalyzer(pb.start());
45 output.shouldContain("VM_Operation (");
46 output.shouldHaveExitValue(0);
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/messaging/saaj/packaging/mime/util/
H A DQEncoderStream.java52 * @param out the output stream
68 * Encodes the specified <code>byte</code> to this output stream.
76 output('_', false);
79 output(c, true);
81 output(c, false);
/openjdk10/jdk/src/java.desktop/share/classes/com/sun/imageio/spi/
H A DFileImageOutputStreamSpi.java50 public ImageOutputStream createOutputStreamInstance(Object output, argument
53 if (output instanceof File) {
55 return new FileImageOutputStream((File)output);
H A DOutputStreamImageOutputStreamSpi.java61 public ImageOutputStream createOutputStreamInstance(Object output, argument
65 if (output instanceof OutputStream) {
66 OutputStream os = (OutputStream)output;
H A DRAFImageOutputStreamSpi.java51 public ImageOutputStream createOutputStreamInstance(Object output, argument
54 if (output instanceof RandomAccessFile) {
56 return new FileImageOutputStream((RandomAccessFile)output);
/openjdk10/jdk/src/java.security.jgss/share/classes/sun/security/krb5/internal/crypto/
H A DCrc32CksumType.java81 byte[] output = new byte[4];
83 output[i] = (byte)((input >>> (i * 8)) & 0xff);
85 return output;
/openjdk10/jdk/test/sun/security/krb5/canonicalize/
H A DTest.java60 static void check(String input, String output) throws Exception { argument
61 System.out.println(input + " -> " + output);
64 if (!pn.getNameStrings()[1].equals(output)) {
/openjdk10/jdk/test/tools/jlink/bindservices/
H A DBindServices.java97 JLink.run("--output", dir.toString(),
99 "--add-modules", "m1").output();
114 JLink.run("--output", dir.toString(),
129 List<String> output =
130 JLink.run("--output", dir.toString(),
135 "--limit-modules", "m1,m2,m3").output();
149 assertTrue(output.containsAll(expected));
160 List<String> output =
161 JLink.run("--output", dir.toString(),
164 "--add-modules", "m1").output();
197 final List<String> output = new ArrayList<>(); field in class:BindServices.JLink
216 List<String> output() { method in class:BindServices.JLink
[all...]
/openjdk10/test/lib/jdk/test/lib/dcmd/
H A DJcmdExecutor.java49 OutputAnalyzer output = ProcessTools.executeProcess(new ProcessBuilder(commandLine));
50 System.out.printf("Command returned with exit code %d%n", output.getExitValue());
52 return output;
/openjdk10/hotspot/test/serviceability/logging/
H A DTestQuotedLogOutputs.java26 * @summary Ensure proper parsing of quoted output names for -Xlog arguments.
64 // Test a few variations with valid log output specifiers
76 OutputAnalyzer output = new OutputAnalyzer(pb.start());
77 output.shouldHaveExitValue(0);
80 output.shouldMatch("\\[logging *\\].*" + baseName); // Expect to see the log output listed
83 // Test a bunch of invalid output specifications and ensure the VM fails with these
101 OutputAnalyzer output = new OutputAnalyzer(pb.start());
102 output.shouldHaveExitValue(1);
104 output
[all...]
/openjdk10/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/processor/modeler/wsdl/
H A DConsoleErrorReporter.java39 private PrintStream output; field in class:ConsoleErrorReporter
43 this.output = stream;
47 this.output = new PrintStream(outputStream);
92 output.println(message);
93 output.println(getLocationString(e));
94 output.println();
/openjdk10/jdk/test/java/lang/instrument/
H A DRedefineBigClass.sh76 > output.log 2>&1
79 cat output.log
89 grep "$MESG" output.log
92 echo "FAIL: found '$MESG' in the test output"
95 echo "PASS: did NOT find '$MESG' in the test output"

Completed in 140 milliseconds

<<11121314151617181920>>