HomeSort by relevance Sort by last modified time
    Searched defs:cis (Results 1 - 10 of 10) sorted by null

  /external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
CipherInputStreamTest.java 58 CipherInputStream cis = new CipherInputStream(tis); local
61 if ((byte) cis.read() != data[i]) {
66 if (cis.read() != -1) {
78 CipherInputStream cis = new CipherInputStream(tis, new NullCipher()); local
81 if ((res = (byte) cis.read()) != data[i]) {
86 if (cis.read() != -1) {
99 CipherInputStream cis = new CipherInputStream(tis, new NullCipher()); local
105 int got = cis.read(result); // the number of got bytes
119 got += cis.read(result);
122 if (cis.read(result) != -1)
137 CipherInputStream cis = new CipherInputStream(tis, new NullCipher()); local
175 CipherInputStream cis = new CipherInputStream(tis, new NullCipher()); local
213 CipherInputStream cis = new CipherInputStream(tis, new NullCipher()); local
225 CipherInputStream cis = new CipherInputStream(tis, new NullCipher()); local
237 CipherInputStream cis = new CipherInputStream(tis, new NullCipher()); local
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherInputStream1Test.java 67 CipherInputStream cis = new CipherInputStream(tis){}; local
70 if ((byte) cis.read() != data[i]) {
75 if (cis.read() != -1) {
87 CipherInputStream cis = new CipherInputStream(tis, new NullCipher()); local
90 if ((res = (byte) cis.read()) != data[i]) {
95 if (cis.read() != -1) {
108 CipherInputStream cis = new CipherInputStream(tis, new NullCipher()); local
114 int got = cis.read(result); // the number of got bytes
128 got += cis.read(result);
131 if (cis.read(result) != -1)
146 CipherInputStream cis = new CipherInputStream(tis, new NullCipher()); local
184 CipherInputStream cis = new CipherInputStream(tis, new NullCipher()); local
222 CipherInputStream cis = new CipherInputStream(tis, new NullCipher()); local
234 CipherInputStream cis = new CipherInputStream(tis, new NullCipher()); local
246 CipherInputStream cis = new CipherInputStream(tis, new NullCipher()); local
262 CipherInputStream cis = new CipherInputStream(bais, c); local
    [all...]
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/transport/
TransportConnection.java 34 CipherInputStream cis; field in class:TransportConnection
74 this.cis = new CipherInputStream(new NullCipher(), is);
81 cis.changeCipher(bc);
209 cis.read(recv_packet_header_buffer, 0, 5);
234 cis.read(recv_packet_header_buffer, 0, 5);
256 cis.read(buffer, off, payload_length);
257 cis.read(recv_padding_buffer, 0, padding_length);
261 cis.readPlain(recv_mac_buffer, 0, recv_mac_buffer.length);
  /external/qemu/hw/
pcmcia.h 24 const uint8_t *cis; member in struct:PCMCIACardState
  /frameworks/base/core/java/android/os/
FileUtils.java 306 CheckedInputStream cis = null; local
309 cis = new CheckedInputStream( new FileInputStream(file), checkSummer);
311 while(cis.read(buf) >= 0) {
316 if (cis != null) {
318 cis.close();
  /frameworks/volley/src/com/android/volley/toolbox/
DiskBasedCache.java 113 CountingInputStream cis = null; local
115 cis = new CountingInputStream(new FileInputStream(file));
116 CacheHeader.readHeader(cis); // eat header
117 byte[] data = streamToBytes(cis, (int) (file.length() - cis.bytesRead));
124 if (cis != null) {
126 cis.close();
  /external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/
LiteralByteStringTest.java 379 CodedInputStream cis = stringUnderTest.newCodedInput(); local
380 byte[] roundTripBytes = cis.readRawBytes(referenceBytes.length);
383 assertTrue(classUnderTest + " CodedInputStream must now be exhausted", cis.isAtEnd());
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.runtime.compatibility.auth_3.2.200.v20100517.jar 
com.ibm.icu_4.2.1.v20100412.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 

Completed in 370 milliseconds