Searched defs:is (Results 26 - 50 of 242) sorted by relevance

12345678910

/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/ior/
H A DIdentifiableFactoryFinder.java5 * This code is free software; you can redistribute it and/or modify it
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
38 /** If there is a registered factory for id, use it to
39 * read an Identifiable from is. Otherwise create an
41 * The type of generic container, or error behavior is
44 Identifiable create(int id, InputStream is); argument
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/servicecontext/
H A DCodeSetServiceContext.java5 * This code is free software; you can redistribute it and/or modify it
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 CodeSetServiceContext(InputStream is, GIOPVersion gv) argument
44 super(is, gv) ;
H A DORBVersionServiceContext.java5 * This code is free software; you can redistribute it and/or modify it
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
51 public ORBVersionServiceContext(InputStream is, GIOPVersion gv) argument
53 super(is, gv) ;
54 // pay particular attention to where the version is being read from!
55 // is contains an encapsulation, ServiceContext reads off the
H A DSendingContextServiceContext.java5 * This code is free software; you can redistribute it and/or modify it
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
43 public SendingContextServiceContext(InputStream is, GIOPVersion gv) argument
45 super(is, gv) ;
H A DUEInfoServiceContext.java5 * This code is free software; you can redistribute it and/or modify it
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
43 public UEInfoServiceContext(InputStream is, GIOPVersion gv) argument
45 super(is, gv) ;
/openjdk7/corba/src/share/classes/org/omg/CORBA/portable/
H A DBoxedValueHelper.java5 * This code is free software; you can redistribute it and/or modify it
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 Serializable read_value(InputStream is); argument
/openjdk7/corba/src/share/classes/org/omg/PortableServer/ServantLocatorPackage/
H A DCookieHolder.java5 * This code is free software; you can redistribute it and/or modify it
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
29 * The native type PortableServer::ServantLocator::Cookie is mapped
30 * to java.lang.Object. A CookieHolder class is provided for passing
46 public void _read( org.omg.CORBA.portable.InputStream is) { argument
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DXbmImageDecoder.java5 * This code is free software; you can redistribute it and/or modify it
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
54 public XbmImageDecoder(InputStreamImageSource src, InputStream is) { argument
55 super(src, is);
57 // If the topmost stream is a metered stream,
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/
H A DInit.java17 * software distributed under the License is distributed on an
52 * the mapping of Canonicalization and Transform algorithms. Initialization is
54 * of the files of this library. We ensure that this call is only executed once.
70 * @return true if the library is already initialized.
85 InputStream is =
97 if (is == null) {
100 fileInit(is);
111 // Load the Resource Bundle - the default is the English resource bundle.
164 private static void fileInit(InputStream is) { argument
174 Document doc = db.parse(is);
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/util/
H A DByteArrayOutputStreamEx.java5 * This code is free software; you can redistribute it and/or modify it
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
56 public void readFrom(InputStream is) throws IOException { argument
65 int sz = is.read(buf,count,buf.length-count);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/util/
H A DJAXMStreamSource.java5 * This code is free software; you can redistribute it and/or modify it
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
44 public JAXMStreamSource(InputStream is) throws IOException { argument
46 in = is;
47 } else if (is instanceof ByteInputStream) {
48 this.in = (ByteInputStream) is;
51 bout.write(is);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/staxex/
H A DByteArrayOutputStreamEx.java5 * This code is free software; you can redistribute it and/or modify it
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
56 public void readFrom(InputStream is) throws IOException { argument
65 int sz = is.read(buf,count,buf.length-count);
/openjdk7/jdk/test/com/sun/net/httpserver/bugs/
H A DB6393710.java5 * This code is free software; you can redistribute it and/or modify it
9 * 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
84 InputStream is = s.getInputStream ();
86 ok = readAndCheck (is, "401 Unauthorized") &&
87 readAndCheck (is, "200 OK");
107 static boolean readAndCheck (InputStream is, String expected) throws IOException { argument
113 while ((c=is.read()) != -1) {
136 InputStream is = t.getRequestBody();
139 while (is
[all...]
/openjdk7/jdk/test/java/net/Authenticator/
H A DB4921848.java5 * This code is free software; you can redistribute it and/or modify it
9 * 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
65 static void read (InputStream is) throws IOException { argument
68 while ((c=is.read()) != -1) {
80 InputStream is = urlc.getInputStream ();
81 read (is);
82 is.close();
H A DB4962064.java5 * This code is free software; you can redistribute it and/or modify it
9 * 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 static void read (InputStream is) throws IOException { argument
71 while ((c=is.read()) != -1) {
83 InputStream is = urlc.getInputStream ();
84 read (is);
85 is.close();
/openjdk7/jdk/test/java/net/URLConnection/
H A DRedirect307Test.java5 * This code is free software; you can redistribute it and/or modify it
9 * 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
64 void readOneRequest(InputStream is) throws IOException { argument
66 while ((r = is.read()) != -1) {
H A DRedirectLimit.java5 * This code is free software; you can redistribute it and/or modify it
9 * 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
69 void readOneRequest(InputStream is) throws IOException { argument
71 while ((r = is.read()) != -1) {
/openjdk7/jdk/test/java/nio/charset/coders/
H A DStreamTimeout.java5 * This code is free software; you can redistribute it and/or modify it
9 * 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
67 private static void gobble(InputStream is, Reader rd, argument
71 int a = is.available();
103 InputStream is = s.getInputStream();
104 Reader rd = new InputStreamReader(is, charset);
106 while (is.available() <= 0)
109 gobble(is, rd, 'a', false);
110 gobble(is, r
[all...]
/openjdk7/langtools/test/tools/apt/Compile/
H A DClassDeclApf.java5 * This code is free software; you can redistribute it and/or modify it
9 * 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 * This class is used to test the ability to store static state across
72 void drain(InputStream is, OutputStream os) { argument
74 while (is.available() > 0 )
75 os.write(is.read());
H A DClassDeclApf2.java5 * This code is free software; you can redistribute it and/or modify it
9 * 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 * This class is used to test the the interaction of -XclassesAsDecls
72 void drain(InputStream is, OutputStream os) { argument
74 while (is.available() > 0 )
75 os.write(is.read());
/openjdk7/jdk/src/share/classes/sun/security/jgss/krb5/
H A DAcceptSecContextToken.java5 * This code is free software; you can redistribute it and/or modify it
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
77 InputStream is)
80 int tokenId = ((is.read()<<8) | is.read());
87 new sun.security.util.DerValue(is).toByteArray();
99 System.out.println("\n\nSub-Session key from AP-REP is: " +
75 AcceptSecContextToken(Krb5Context context, Credentials serviceCreds, KrbApReq apReq, InputStream is) argument
H A DInitSecContextToken.java5 * This code is free software; you can redistribute it and/or modify it
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
46 * (When mutual auth is enabled the peer has an opportunity to
56 boolean useSubkey = true; // MIT Impl will crash if this is not set!
90 InputStream is)
93 int tokenId = ((is.read()<<8) | is.read());
101 new sun.security.util.DerValue(is).toByteArray();
114 System.out.println("\n\nSession key from service ticket is
89 InitSecContextToken(Krb5Context context, EncryptionKey[] keys, InputStream is) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/util/
H A DKrbDataInputStream.java5 * This code is free software; you can redistribute it and/or modify it
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
56 public KrbDataInputStream(InputStream is){ argument
57 super(is);
/openjdk7/jdk/test/java/security/cert/CertPathValidator/nameConstraintsRFC822/
H A DValidateCertPath.java5 * This code is free software; you can redistribute it and/or modify it
9 * 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
53 * where each argument is the path to a file that contains a
112 private static byte[] getTotalBytes(InputStream is) throws IOException { argument
117 while ((n = is.read(buffer, 0, buffer.length)) != -1) {
138 " is not a readable file.");
/openjdk7/jdk/test/java/security/cert/pkix/nameConstraintsMinMax/
H A DVerifyNameConstraints.java5 * This code is free software; you can redistribute it and/or modify it
9 * 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
85 private static byte[] getTotalBytes(InputStream is) throws IOException { argument
90 while ((n = is.read(buffer, 0, buffer.length)) != -1) {

Completed in 210 milliseconds

12345678910