Searched refs:cis (Results 1 - 13 of 13) sorted by relevance

/openjdk10/jdk/test/sun/security/krb5/ccache/
H A DTimeInCCache.java84 CCacheInputStream cis = new CCacheInputStream(new ByteArrayInputStream(ccache));
85 cis.readVersion();
86 cis.readTag();
87 cis.readPrincipal(0x504);
90 Credentials c = (Credentials) m.invoke(cis, new Integer(0x504));
/openjdk10/jdk/test/com/sun/crypto/provider/Cipher/AEAD/
H A DReadWriteSkip.java263 private void doByteTest(int blockNum, CipherInputStream cis) argument
266 int len = cis.read(outputText, index, SAVE);
270 read = cis.read(outputText, index, SAVE - len);
276 private void doIntTest(int blockNum, CipherInputStream cis) argument
280 int b = cis.read();
290 try (CipherInputStream cis = new CipherInputStream(ciInput,
294 doByteTest(i, cis);
296 doIntTest(i, cis);
298 if (cis.available() >= DISCARD) {
299 cis
[all...]
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/loader/
H A DResource.java72 private InputStream cis; field in class:Resource
76 if (cis == null) {
77 cis = getInputStream();
79 return cis;
/openjdk10/jdk/test/com/oracle/security/ucrypto/
H A DTest8004873.java96 CipherInputStream cis = new CipherInputStream(bais, c);
97 ObjectInputStream ois = new ObjectInputStream(cis);
/openjdk10/langtools/test/tools/sjavac/
H A DCompileWithInvisibleSources.java43 CompileWithInvisibleSources cis = new CompileWithInvisibleSources();
44 cis.test();
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/ior/
H A DWireObjectKeyTemplate.java75 CDRInputStream cis = (CDRInputStream)is ;
76 int len = cis.getBufferLength() ;
78 cis.read_octet_array( result, 0, len ) ;
/openjdk10/jdk/src/java.security.jgss/windows/classes/sun/security/krb5/internal/tools/
H A DKinitOptions.java177 CCacheInputStream cis =
180 if ((version = cis.readVersion()) ==
182 cis.readTag();
186 cis.setNativeByteOrder();
189 PrincipalName p = cis.readPrincipal(version);
190 cis.close();
H A DKtab.java266 BufferedReader cis =
270 password = cis.readLine().toCharArray();
366 BufferedReader cis =
375 answer = cis.readLine();
/openjdk10/jdk/src/java.security.jgss/share/classes/sun/security/krb5/internal/ccache/
H A DFileCredentialsCache.java164 CCacheInputStream cis = new CCacheInputStream(fis)) {
165 version = cis.readVersion();
167 tag = cis.readTag();
171 cis.setNativeByteOrder();
174 p = cis.readPrincipal(version);
183 while (cis.available() > 0) {
184 Credentials cred = cis.readCred(version);
/openjdk10/jdk/test/javax/crypto/Cipher/
H A DCipherStreamClose.java122 CipherInputStream cis = new CipherInputStream(dis, decCipher)) {
124 try (ObjectInputStream ois = new ObjectInputStream(cis)) {
/openjdk10/jdk/src/java.base/share/classes/sun/util/locale/
H A DLocaleExtensions.java108 for (CaseInsensitiveString cis : uattributes) {
109 uaset.add(LocaleUtils.toLowerString(cis.value()));
/openjdk10/jdk/src/java.security.jgss/share/classes/sun/security/jgss/krb5/
H A DCipherHelper.java1032 CipherInputStream cis = new CipherInputStream(truncatedInputStream,
1038 temp = cis.read(token.confounder);
1060 temp = cis.read(dataOutBuf, dataOffset, blockSize);
1073 temp = cis.read(finalBlock);
/openjdk10/nashorn/test/script/basic/
H A DJDK-8017084.js2312 cis: 2281,

Completed in 197 milliseconds