Searched defs:in (Results 101 - 125 of 640) sorted by relevance

1234567891011>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/
H A DCodec.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
100 * null if the content-type can't be determined in short of
169 * the encoding work in the same way --- that is, if you
194 * @param in
208 * in more complex case, this could be something like
221 void decode( InputStream in, String contentType, Packet response ) throws IOException; argument
227 void decode( ReadableByteChannel in, String contentType, Packet response ); argument
236 XMLStreamReaderMessage decode( InputStream in, Strin
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DRootOnlyCodec.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
53 * @param in root part's data
57 * @param packet the new created {@link Message} is set in this packet
64 void decode(@NotNull InputStream in, @NotNull String contentType, @NotNull Packet packet, @NotNull AttachmentSet att) argument
71 void decode(@NotNull ReadableByteChannel in, @NotNull String contentType, @NotNull Packet packet, @NotNull AttachmentSet att); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/fastinfoset/
H A DFastInfosetStreamReaderRecyclable.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
42 public FastInfosetStreamReaderRecyclable(InputStream in) { argument
43 super(in);
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/soap/
H A DMessageFactory.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
36 * using the method <code>newInstance</code>, as shown in the following
53 * prepopulated with additional entries in the <code>SOAPHeader</code> object and the
82 * <LI> Use the properties file "lib/jaxm.properties" in the JRE directory. This configuration file is in standard
85 * <LI> Use the Services API (as detailed in the JAR specification), if available, to determine the classname. The Services API
86 * will look for a classname in the file META-INF/services/javax.xml.soap.MessageFactory in jar
196 createMessage(MimeHeaders headers, InputStream in) argument
[all...]
/openjdk7/jdk/test/com/sun/jdi/
H A DBadHandshakeTest.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
56 InputStream in; field in class:BadHandshakeTest.IOHandler
58 IOHandler(InputStream in) { argument
59 this.in = in;
62 static void handle(InputStream in) { argument
63 IOHandler handler = new IOHandler(in);
73 int n = in.read(b, 0, 100);
164 s.getOutputStream().write("Here's a poke in th
[all...]
H A DDoubleAgentTest.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
47 InputStream in; field in class:DoubleAgentTest.IOHandler
49 IOHandler(InputStream in) { argument
50 this.in = in;
53 static Thread handle(InputStream in) { argument
54 IOHandler handler = new IOHandler(in);
65 int n = in.read(b, 0, 100);
156 "Debuggee does not have ERROR in th
[all...]
H A DExclusiveBind.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
51 InputStream in; field in class:ExclusiveBind.IOHandler
53 IOHandler(InputStream in) { argument
54 this.in = in;
57 static void handle(InputStream in) { argument
58 IOHandler handler = new IOHandler(in);
68 int n = in.read(b);
95 * Launch (in serve
[all...]
H A DJITDebug.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
27 * use the wrapper script (JITDebug.sh) instead, which will in turn
31 * versus "SYSTEMROOT" environment variables in different win32 O/S
35 * Undefined SystemRoot in a win32 environment causes the O/S socket()
63 * bug in the test tools which do not allow quoted spaces
64 * in command lines. It launchs the debug target in
66 * it (in turn) will launch the trivial debugger.
112 InputStream in;
170 displayOutput(InputStream in) argument
[all...]
H A DRunToExit.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
55 private BufferedInputStream in; field in class:RunToExit.IOHandler
58 IOHandler(String name, InputStream in) { argument
60 this.in = new BufferedInputStream(in);
64 static void handle(String name, InputStream in) { argument
65 IOHandler handler = new IOHandler(name, in);
75 int n = in.read(b, 0, 100);
175 // The first event is always a VMStartEvent, and it is always in
[all...]
/openjdk7/jdk/test/java/io/Externalizable/compatibility/
H A DExternalizableBlockData.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
54 public void readExternal(ObjectInput in) argument
57 x = in.readInt();
58 y = in.readInt();
59 obj = in.readObject();
/openjdk7/jdk/test/java/io/Externalizable/definesWriteObject/
H A DDefinesWriteObject.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
68 public void readExternal(ObjectInput in) argument
71 intData = in.readInt();
72 objData = in.readObject();
/openjdk7/jdk/test/java/io/InputStream/
H A DReadParams.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
40 public static void doTest(InputStream in) throws Exception { argument
57 in.read(b , off[i] , len[i]);
62 " ) on " + in + "\nb.length = 32");
69 System.err.println("Error: OutOfMemoryError in read(b, " +
70 off[i] + " " + len[i] + " ) on " + in +
78 " ) on " + in + "\nb.length = 32");
86 throw new RuntimeException(in + " Failed " + numBad + " cases");
88 System.err.println("Successfully completed bounds tests on " + in);
93 doTest1(InputStream in) argument
[all...]
/openjdk7/jdk/test/java/io/InputStreamReader/
H A DOne.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
41 Test(byte[] in, String expect) throws Exception { argument
42 isr = new InputStreamReader(new ByteArrayInputStream(in), "UTF-8");
61 byte[] in = expect.getBytes("UTF-8");
63 new Test(in, expect) {
73 new Test(in, expect) {
83 new Test(in, expect) {
/openjdk7/jdk/test/java/io/Serializable/classDescHooks/
H A DLoopback.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
55 LoopbackInputStream(InputStream in, LinkedList descs) throws IOException { argument
56 super(in);
/openjdk7/jdk/test/java/io/Serializable/defaultDataEnd/
H A DDefaultDataEnd.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
26 * @summary Verify that a custom readObject() method reading in data written
37 private void readObject(ObjectInputStream in) argument
40 in.defaultReadObject();
41 if (in.read() != -1) {
45 in.readInt();
50 in.readObject();
58 in.readUnshared();
72 private void readObject(ObjectInputStream in) argument
104 readObject(ObjectInputStream in) argument
[all...]
/openjdk7/jdk/test/java/io/Serializable/defaultReadObjectCNFException/
H A DDefaultReadObjectCNFException.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
28 * reads in are tagged with ClassNotFoundExceptions.
36 private void readObject(ObjectInputStream in) argument
39 in.defaultReadObject();
50 TestObjectInputStream(InputStream in) throws IOException { super(in); } argument
/openjdk7/jdk/test/java/io/Serializable/defaulted/
H A DGetFieldRead.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
58 private void readObject(ObjectInputStream in) argument
61 ObjectInputStream.GetField pfields = in.readFields();
107 ObjectInputStream in = new ObjectInputStream(fis);
108 TestClass obj = (TestClass) in.readObject();
109 in.close();
/openjdk7/jdk/test/java/io/Serializable/enum/ignoreSerializationMethods/
H A DTest.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
39 private void readObject(ObjectInputStream in)
56 private void readObject(ObjectInputStream in) argument
/openjdk7/jdk/test/java/io/Serializable/enum/unshared/
H A DTest.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
37 abstract void read(ObjectInputStream in) throws Exception; argument
57 void read(ObjectInputStream in) throws Exception {
58 Object obj = in.readObject();
64 obj = in.readUnshared();
77 void read(ObjectInputStream in) throws Exception {
78 Object obj = in.readUnshared();
84 obj = in.readObject();
97 void read(ObjectInputStream in) throw
[all...]
/openjdk7/jdk/test/java/io/Serializable/explicitCNFException/
H A DExplicitCNFException.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
34 private void readObject(ObjectInputStream in) argument
46 public void readExternal(ObjectInput in) argument
/openjdk7/jdk/test/java/io/Serializable/packageAccess/
H A DTest.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
74 TestObjectInputStream(InputStream in) throws IOException { argument
75 super(in);
/openjdk7/jdk/test/java/io/Serializable/proxy/skipMissing/
H A DRead.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
42 private void readObject(ObjectInputStream in) argument
45 in.defaultReadObject();
52 FileInputStream in = new FileInputStream("tmp.ser");
54 ObjectInputStream oin = new ObjectInputStream(in);
69 in.close();
/openjdk7/jdk/test/java/io/Serializable/stopCustomDeserialization/
H A DRead.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
47 private void readObject(ObjectInputStream in) argument
56 FileInputStream in = new FileInputStream("tmp.ser");
58 ObjectInputStream oin = new ObjectInputStream(in);
69 in.close();
/openjdk7/jdk/test/java/io/Serializable/survivePrematureClose/
H A DSurvivePrematureClose.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
43 public void readExternal(ObjectInput in) argument
46 in.readInt();
47 in.close();
58 private void readObject(ObjectInputStream in) argument
61 in.defaultReadObject();
62 in.close();
/openjdk7/jdk/test/java/io/Serializable/validate/
H A DValidate.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
54 ObjectInputStream in = new ObjectInputStream(bais);
55 Class1 cc1 = (Class1) in.readObject();
56 Class1 cc2 = (Class1) in.readObject();
57 System.out.println("date: " + in.readObject());
58 System.out.println("date: " + in.readObject());
59 System.out.println("date: " + in.readObject());
60 System.out.println("date: " + in.readObject());
61 in
93 readObject(ObjectInputStream in) argument
[all...]

Completed in 455 milliseconds

1234567891011>>