HomeSort by relevance Sort by last modified time
    Searched full:cis (Results 1 - 25 of 77) sorted by null

1 2 3 4

  /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/android/camera/
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.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-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/qemu/
d3des.h 19 * (GEnie : OUTER; CIS : [71755,204])
  /external/qemu/hw/
pcmcia.h 24 const uint8_t *cis; member in struct:PCMCIACardState
  /packages/apps/Mms/res/values-fr/
arrays.xml 34 <item msgid="4630490399784004880">"Indécis"</item>
  /external/clang/lib/Frontend/
ChainedIncludesSource.cpp 60 for (unsigned i = 0, e = CIs.size(); i != e; ++i)
61 delete CIs[i];
159 source->CIs.push_back(Clang.take());
224 for (unsigned i = 0, e = CIs.size(); i != e; ++i) {
226 CIs[i]->getASTContext().getExternalSource()) {
  /frameworks/base/core/java/android/os/
FileUtils.java 229 CheckedInputStream cis = null; local
232 cis = new CheckedInputStream( new FileInputStream(file), checkSummer);
234 while(cis.read(buf) >= 0) {
239 if (cis != null) {
241 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/webkit/Tools/android/flex-2.5.4a/MISC/MVS/
README 43 UUCP: osu-cis!chemabs!swl26
  /external/ppp/pppd/
ipv6cp.c 551 * ipv6cp_addci - Add our desired CIs to a packet.
595 * ipv6cp_ackci - Ack our CIs.
612 * CIs must be in exactly the same order that we sent...
652 * If there are any remaining CIs, then this packet is bad.
664 * ipv6cp_nakci - Peer has sent a NAK for some of our CIs.
690 * Any Nak'd CIs must be in exactly the same order that we sent.
753 * There may be remaining CIs, if the peer is requesting negotiation
808 * ipv6cp_rejci - Reject some of our CIs.
824 * Any Rejected CIs must be in exactly the same order that we sent.
861 * If there are any remaining CIs, then this packet is bad
    [all...]
lcp.c 681 * lcp_addci - Add our desired CIs to a packet.
764 * lcp_ackci - Ack our CIs.
783 * CIs must be in exactly the same order that we sent.
906 * If there are any remaining CIs, then this packet is bad.
918 * lcp_nakci - Peer has sent a NAK for some of our CIs.
947 * Any Nak'd CIs must be in exactly the same order that we sent.
1208 * There may be remaining CIs, if the peer is requesting negotiatio
    [all...]
ipcp.c 745 * ipcp_addci - Add our desired CIs to a packet.
831 * ipcp_ackci - Ack our CIs.
850 * CIs must be in exactly the same order that we sent...
942 * If there are any remaining CIs, then this packet is bad.
954 * ipcp_nakci - Peer has sent a NAK for some of our CIs.
982 * Any Nak'd CIs must be in exactly the same order that we sent.
1116 * There may be remaining CIs, if the peer is requesting negotiation
1182 * ipcp_rejci - Reject some of our CIs.
1199 * Any Rejected CIs must be in exactly the same order that we sent.
    [all...]
ipxcp.c 607 * ipxcp_addci - Add our desired CIs to a packet.
652 * ipxcp_ackci - Ack our CIs.
756 * ipxcp_nakci - Peer has sent a NAK for some of our CIs.
876 * ipxcp_rejci - Reject some of our CIs.
955 * Any Rejected CIs must be in exactly the same order that we sent.
983 * ipxcp_reqci - Check the peer's requested CIs and send appropriate response.
992 u_char *inp; /* Requested CIs */
993 int *len; /* Length of requested CIs */
996 u_char *cip, *next; /* Pointer to current and next CIs */
1236 if (rc == CONFACK) { /* Ack'd all prior CIs? *
    [all...]
  /external/bison/runtime-po/
lv.po 4 # Arvis L?cis <arvis.lacis@inbox.lv>, 2009.
  /frameworks/opt/vcard/java/com/android/vcard/
VCardParser_V21.java 61 "ATTMAIL", "CIS", "EWORLD", "INTERNET", "IBMMAIL",
  /packages/wallpapers/Basic/res/values-lv/
strings.xml 48 <string name="palette_white_c" msgid="3846812107437715188">"Pol?rl?cis (dinamisks)"</string>
  /external/tcpdump/
print-sctp.c 5 * John Fiore <jfiore@joda.cis.temple.edu>
6 * Armando L. Caro Jr. <acaro@cis.udel.edu>
  /external/clang/include/clang/Frontend/
ChainedIncludesSource.h 32 std::vector<CompilerInstance *> CIs;
  /external/kernel-headers/original/asm-mips/mips-boards/
msc01_pci.h 43 #define MSC01_PCI_HEAD10_OFS 0x2050 /* CardBus CIS Ptr */
  /packages/apps/VideoEditor/res/values-lv/
strings.xml 107 <string name="theme_surfing_subtitle" msgid="1393064778029517696">"S?rfinga l?cis"</string>

Completed in 6113 milliseconds

1 2 3 4