HomeSort by relevance Sort by last modified time
    Searched defs:cis (Results 1 - 5 of 5) 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/qemu/hw/
pcmcia.h 24 const uint8_t *cis; member in struct:PCMCIACardState
  /frameworks/base/core/java/android/os/
FileUtils.java 257 CheckedInputStream cis = null; local
260 cis = new CheckedInputStream( new FileInputStream(file), checkSummer);
262 while(cis.read(buf) >= 0) {
267 if (cis != null) {
269 cis.close();
  /development/samples/GlobalTime/src/com/android/globaltime/
GlobalTime.java 410 InputStream cis = null; local
413 cis = am.open("cities_" + language + "_" + country + ".dat");
417 cis = am.open("cities_" + language + ".dat");
421 cis = am.open("cities_en.dat");
428 cis = cache(cis);
429 City.loadCities(cis);
    [all...]

Completed in 2764 milliseconds