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

  /external/bouncycastle/src/main/java/org/bouncycastle/util/io/
Streams.java 12 public static void drain(InputStream inStr)
16 while (inStr.read(bs, 0, bs.length) >= 0)
21 public static byte[] readAll(InputStream inStr)
25 pipeAll(inStr, buf);
29 public static byte[] readAllLimited(InputStream inStr, int limit)
33 pipeAllLimited(inStr, limit, buf);
37 public static int readFully(InputStream inStr, byte[] buf)
40 return readFully(inStr, buf, 0, buf.length);
43 public static int readFully(InputStream inStr, byte[] buf, int off, int len)
49 int numRead = inStr.read(buf, off + totalRead, len - totalRead)
    [all...]
  /external/chromium/third_party/icu/source/io/
sscanf.c 102 UFILE inStr;
104 inStr.fConverter = NULL;
105 inStr.fFile = NULL;
106 inStr.fOwnFile = FALSE;
108 inStr.fTranslit = NULL;
110 inStr.fUCBuffer[0] = 0;
111 inStr.str.fBuffer = (UChar *)buffer;
112 inStr.str.fPos = (UChar *)buffer;
113 inStr.str.fLimit = buffer + u_strlen(buffer);
115 if(u_locbund_init(&inStr.str.fBundle, "en_US_POSIX") == 0)
    [all...]
  /external/icu4c/io/
sscanf.c 102 UFILE inStr;
104 inStr.fConverter = NULL;
105 inStr.fFile = NULL;
106 inStr.fOwnFile = FALSE;
108 inStr.fTranslit = NULL;
110 inStr.fUCBuffer[0] = 0;
111 inStr.str.fBuffer = (UChar *)buffer;
112 inStr.str.fPos = (UChar *)buffer;
113 inStr.str.fLimit = buffer + u_strlen(buffer);
115 if(u_locbund_init(&inStr.str.fBundle, "en_US_POSIX") == 0)
    [all...]
  /external/chromium/third_party/icu/source/test/iotest/
stream.cpp 64 UnicodeString inStr = UNICODE_STRING_SIMPLE(" UTF-8 ");
110 inTestStream >> inStr >> inStr2;
111 if (inStr.compare(thisMu) != 0) {
112 u_austrncpy(inStrC, inStr.getBuffer(), inStr.length());
113 inStrC[inStr.length()] = 0;
117 u_austrncpy(inStrC, inStr.getBuffer(), inStr.length());
118 inStrC[inStr.length()] = 0;
  /external/icu4c/test/iotest/
stream.cpp 65 UnicodeString inStr = UNICODE_STRING_SIMPLE(" UTF-8 ");
111 inTestStream >> inStr >> inStr2;
112 if (inStr.compare(thisMu) != 0) {
113 u_austrncpy(inStrC, inStr.getBuffer(), inStr.length());
114 inStrC[inStr.length()] = 0;
118 u_austrncpy(inStrC, inStr.getBuffer(), inStr.length());
119 inStrC[inStr.length()] = 0;
  /external/bzip2/
bzip2.c 1135 FILE *inStr;
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/util/
PrivateKeyFactory.java 73 * @param inStr the stream to read the PrivateKeyInfo encoding from
78 InputStream inStr)
83 new ASN1InputStream(inStr).readObject()));
PublicKeyFactory.java 78 * @param inStr the stream to read the SubjectPublicKeyInfo encoding from
83 InputStream inStr)
88 new ASN1InputStream(inStr).readObject()));
  /external/svox/pico/lib/
picotrns.h 174 pico_status_t picotrns_stAddWithPlane(picotrns_SimpleTransducer this, picoos_char * inStr, picoos_uint8 plane);
picotrns.c 695 * Add chars from NULLC-terminated string \c inStr, shifted to plane \c plane, to internal input buffer of
699 * @param inStr NULLC-terminated byte sequence
703 pico_status_t picotrns_stAddWithPlane(picotrns_SimpleTransducer this, picoos_char * inStr, picoos_uint8 plane)
705 while ((*inStr) && (this->possymWritePos < PICOTRNS_MAX_NUM_POSSYM)) {
707 this->possymBuf[this->possymWritePos].sym = (plane << 8) + (*inStr);
713 inStr++;
715 if (!(*inStr)) {

Completed in 1291 milliseconds