Searched refs:inStr (Results 1 - 15 of 15) sorted by relevance

/external/libogg/macos/compat/
H A Dstrdup.c6 char *strdup(const char *inStr) argument
10 if (inStr == NULL) {
14 outStr = _ogg_malloc(strlen(inStr) + 1);
17 strcpy(outStr, inStr);
/external/libvorbis/macos/compat/
H A Dstrdup.c6 char *strdup(const char *inStr) argument
10 if (inStr == NULL) {
14 outStr = _ogg_malloc(strlen(inStr) + 1);
17 strcpy(outStr, inStr);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/
H A DStreams.java12 public static void drain(InputStream inStr) argument
16 while (inStr.read(bs, 0, bs.length) >= 0)
21 public static byte[] readAll(InputStream inStr) argument
25 pipeAll(inStr, buf);
29 public static byte[] readAllLimited(InputStream inStr, int limit) argument
33 pipeAllLimited(inStr, limit, buf);
37 public static int readFully(InputStream inStr, byte[] buf) argument
40 return readFully(inStr, buf, 0, buf.length);
43 public static int readFully(InputStream inStr, byte[] buf, int off, int len) argument
49 int numRead = inStr
59 pipeAll(InputStream inStr, OutputStream outStr) argument
70 pipeAllLimited(InputStream inStr, long limit, OutputStream outStr) argument
[all...]
/external/icu4c/io/
H A Dsscanf.c102 UFILE inStr; local
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
[all...]
/external/libogg/macos/compat/sys/
H A Dtypes.h21 #ifndef __SYS_TYPES_H__ #define __SYS_TYPES_H__ 1 #include <MacTypes.h> #include <alloca.h> #include <string.h> typedef short int16_t; typedef long int32_t; typedef long long int64_t; #define vorbis_size32_t long #if defined(__cplusplus) extern "C" { #endif #pragma options align=power char *strdup(const char *inStr); #pragma options align=reset #if defined(__cplusplus) } #endif #endif /* __SYS_TYPES_H__ */
/external/libvorbis/macos/compat/sys/
H A Dtypes.h21 #ifndef __SYS_TYPES_H__ #define __SYS_TYPES_H__ 1 #include <MacTypes.h> #include <alloca.h> #include <string.h> typedef short int16_t; typedef long int32_t; typedef long long int64_t; #define vorbis_size32_t long #if defined(__cplusplus) extern "C" { #endif #pragma options align=power char *strdup(const char *inStr); #pragma options align=reset #if defined(__cplusplus) } #endif #endif /* __SYS_TYPES_H__ */
/external/icu4c/test/iotest/
H A Dstream.cpp65 UnicodeString inStr = UNICODE_STRING_SIMPLE(" UTF-8 "); local
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/
H A Dbzip2.c1135 FILE *inStr; local
1228 inStr = stdin;
1242 inStr = fopen ( inName, "rb" );
1250 if ( inStr != NULL ) fclose ( inStr );
1254 if ( inStr == NULL ) {
1263 inStr = fopen ( inName, "rb" );
1268 if ( inStr != NULL ) fclose ( inStr );
1272 if ( inStr
1316 FILE *inStr; local
1514 FILE *inStr; local
[all...]
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DOutputGLSL.h22 void writeTriplet(Visit visit, const char* preStr, const char* inStr, const char* postStr);
H A DOutputGLSL.cpp76 void TOutputGLSL::writeTriplet(Visit visit, const char* preStr, const char* inStr, const char* postStr) argument
83 else if (visit == InVisit && inStr)
85 out << inStr; local
/external/svox/pico/lib/
H A Dpicotrns.h174 pico_status_t picotrns_stAddWithPlane(picotrns_SimpleTransducer this, picoos_char * inStr, picoos_uint8 plane);
H A Dpicotrns.c695 * 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) argument
705 while ((*inStr) && (this->possymWritePos < PICOTRNS_MAX_NUM_POSSYM)) {
707 this->possymBuf[this->possymWritePos].sym = (plane << 8) + (*inStr);
713 inStr++;
715 if (!(*inStr)) {
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/util/
H A DPrivateKeyFactory.java67 * @param inStr the stream to read the PrivateKeyInfo encoding from
71 public static AsymmetricKeyParameter createKey(InputStream inStr) throws IOException argument
73 return createKey(PrivateKeyInfo.getInstance(new ASN1InputStream(inStr).readObject()));
H A DPublicKeyFactory.java74 * @param inStr the stream to read the SubjectPublicKeyInfo encoding from
78 public static AsymmetricKeyParameter createKey(InputStream inStr) throws IOException argument
80 return createKey(SubjectPublicKeyInfo.getInstance(new ASN1InputStream(inStr).readObject()));
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...

Completed in 394 milliseconds