/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/android/camera/ |
camera-capture.h | 110 * cis - An allocated array where to store informaion about found camera 116 * Number of entries added to the 'cis' array on success, or < 0 on failure. 118 extern int enumerate_camera_devices(CameraInfo* cis, int max);
|
camera-capture-mac.m | 490 enumerate_camera_devices(CameraInfo* cis, int max) 533 cis[0].pixel_format = _QTtoFOURCC(qt_pix_format); 534 if (cis[0].pixel_format == 0) { 543 cis[0].frame_sizes = (CameraFrameDim*)malloc(sizeof(_emulate_dims)); 544 if (cis[0].frame_sizes != NULL) { 545 cis[0].frame_sizes_num = sizeof(_emulate_dims) / sizeof(*_emulate_dims); 546 memcpy(cis[0].frame_sizes, _emulate_dims, sizeof(_emulate_dims)); 547 cis[0].device_name = ASTRDUP("webcam0"); 548 cis[0].inp_channel = 0; 549 cis[0].display_name = ASTRDUP("webcam0") [all...] |
camera-capture-windows.c | 686 enumerate_camera_devices(CameraInfo* cis, int max) 718 cis[found].frame_sizes = (CameraFrameDim*)malloc(sizeof(_emulate_dims)); 719 if (cis[found].frame_sizes != NULL) { 722 cis[found].display_name = ASTRDUP(disp_name); 723 cis[found].device_name = ASTRDUP(name); 724 cis[found].direction = ASTRDUP("front"); 725 cis[found].inp_channel = inp_channel; 726 cis[found].frame_sizes_num = sizeof(_emulate_dims) / sizeof(*_emulate_dims); 727 memcpy(cis[found].frame_sizes, _emulate_dims, sizeof(_emulate_dims)); 728 cis[found].pixel_format = wcd->pixel_format [all...] |
camera-capture-linux.c | 750 * cis - Upon success contains information collected from the camera device. 755 _camera_device_get_info(LinuxCameraDevice* cd, CameraInfo* cis) 778 cis->device_name = ASTRDUP(cd->device_name); 779 cis->inp_channel = cd->input_channel; 780 cis->pixel_format = formats[chosen].format; 781 cis->frame_sizes_num = formats[chosen].dim_num; 783 cis->frame_sizes = formats[chosen].dims; 785 cis->in_use = 0; [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);
|
/frameworks/base/core/java/android/os/ |
FileUtils.java | 313 CheckedInputStream cis = null; local 316 cis = new CheckedInputStream( new FileInputStream(file), checkSummer); 318 while(cis.read(buf) >= 0) { 323 if (cis != null) { 325 cis.close();
|
/external/qemu/hw/ |
pcmcia.h | 24 const uint8_t *cis; member in struct:PCMCIACardState
|
/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 | |
/external/dropbear/libtomcrypt/ |
crypt.tex | [all...] |