Searched refs:stream (Results 1 - 6 of 6) sorted by last modified time

/system/core/include/system/
H A Daudio_policy.h91 static inline bool audio_is_low_visibility(audio_stream_type_t stream) argument
93 switch (stream) {
/system/core/libcutils/
H A Dopen_memstream.c65 * Definition of a seekable, write-only memory stream.
86 static int ensureCapacity(MemStream* stream, int writeSize) argument
88 DBUG(("+++ ensureCap off=%d size=%d\n", stream->offset, writeSize));
90 size_t neededSize = stream->offset + writeSize + 1;
91 if (neededSize <= stream->allocSize)
96 if (stream->allocSize == 0) {
99 newSize = stream->allocSize;
106 stream->bufp, *stream->bufp, newSize));
107 char* newBuf = (char*) realloc(*stream
125 MemStream* stream = (MemStream*) cookie; local
166 MemStream* stream = (MemStream*) cookie; local
228 MemStream* stream; local
[all...]
/system/extras/tests/binder/benchmarks/
H A DbinderAddInts.cpp95 static ostream &operator<<(ostream &stream, const String16& str);
96 static ostream &operator<<(ostream &stream, const cpu_set_t& set);
361 static ostream &operator<<(ostream &stream, const String16& str) argument
365 stream << (char) str[n1];
367 stream << '~';
371 return stream;
374 static ostream &operator<<(ostream &stream, const cpu_set_t& set) argument
378 if (n1 != 0) { stream << ' '; }
379 stream << n1;
383 return stream;
[all...]
/system/extras/tests/include/
H A DtestUtil.h49 void testPrint(FILE *stream, const char *fmt, ...);
/system/extras/tests/lib/testUtil/
H A DtestUtil.c145 void testPrint(FILE *stream, const char *fmt, ...) argument
152 if (stream == stderr) {
157 vfprintf(stream, fmt, args);
158 fputc('\n', stream);
/system/media/wilhelm/src/desktop/
H A DSDL.c24 static void SDLCALL SDL_callback(void *context, Uint8 *stream, int len) argument
36 IOutputMixExt_FillBuffer(OutputMixExt, stream, (SLuint32) len);
38 memset(stream, 0, (size_t) len);

Completed in 120 milliseconds