/cts/apps/CtsVerifier/src/com/android/cts/verifier/streamquality/ |
StreamingVideoActivity.java | 39 * Simple storage class for stream information. 41 static class Stream implements Serializable { 43 * Human-readable name for the stream. 53 * URI of the stream 57 public Stream(String name, String code, String uri) { 67 } else if (o == null || !(o instanceof Stream)) { 70 Stream stream = (Stream) o; local 71 return name.equals(stream.name [all...] |
/dalvik/vm/compiler/codegen/x86/libenc/ |
encoder.h | 465 ENCODER_DECLARE_EXPORT char * prefix(char * stream, InstrPrefix p); 468 ENCODER_DECLARE_EXPORT char * push(char * stream, const RM_Opnd & rm, Opnd_Size sz = size_platf); 469 ENCODER_DECLARE_EXPORT char * push(char * stream, const Imm_Opnd & imm); 470 ENCODER_DECLARE_EXPORT char * pop(char * stream, const RM_Opnd & rm, Opnd_Size sz = size_platf); 473 ENCODER_DECLARE_EXPORT char * cmpxchg(char * stream, const RM_Opnd & rm, const R_Opnd & r, Opnd_Size sz = size_platf); 474 ENCODER_DECLARE_EXPORT char * xchg(char * stream, const RM_Opnd & rm, const R_Opnd & r, Opnd_Size sz = size_platf); 477 ENCODER_DECLARE_EXPORT char * inc(char * stream, const RM_Opnd & rm, Opnd_Size sz = size_platf); 478 ENCODER_DECLARE_EXPORT char * dec(char * stream, const RM_Opnd & rm, Opnd_Size sz = size_platf); 479 ENCODER_DECLARE_EXPORT char * _not(char * stream, const RM_Opnd & rm, Opnd_Size sz = size_platf); 480 ENCODER_DECLARE_EXPORT char * neg(char * stream, const RM_Opnd & rm, Opnd_Size sz = size_platf) [all...] |
enc_wrapper.cpp | 159 extern "C" ENCODER_DECLARE_EXPORT char * encoder_imm(Mnemonic m, OpndSize size, int imm, char * stream) { 163 char* stream_start = stream; 164 stream = (char *)EncoderBase::encode(stream, m, args); 169 return stream; 171 extern "C" ENCODER_DECLARE_EXPORT unsigned encoder_get_inst_size(char * stream) { 173 unsigned numBytes = DecoderBase::decode(stream, &decInst); 182 extern "C" ENCODER_DECLARE_EXPORT char * encoder_update_imm(int imm, char * stream) { 184 unsigned numBytes = DecoderBase::decode(stream, &decInst); 188 char* stream_next = (char *)EncoderBase::encode(stream, decInst.mn, args) [all...] |
/device/generic/goldfish/opengl/system/renderControl_enc/ |
renderControl_enc.cpp | 21 IOStream *stream = ctx->m_stream; local 25 ptr = stream->alloc(packetSize); 31 stream->readback(&retval, 4); 39 IOStream *stream = ctx->m_stream; local 45 ptr = stream->alloc(packetSize); 51 stream->readback(major, __size_major); 52 stream->readback(minor, __size_minor); 55 stream->readback(&retval, 4); 63 IOStream *stream = ctx->m_stream; local 68 ptr = stream->alloc(packetSize) 86 IOStream *stream = ctx->m_stream; local 109 IOStream *stream = ctx->m_stream; local 130 IOStream *stream = ctx->m_stream; local 152 IOStream *stream = ctx->m_stream; local 178 IOStream *stream = ctx->m_stream; local 197 IOStream *stream = ctx->m_stream; local 218 IOStream *stream = ctx->m_stream; local 233 IOStream *stream = ctx->m_stream; local 254 IOStream *stream = ctx->m_stream; local 269 IOStream *stream = ctx->m_stream; local 290 IOStream *stream = ctx->m_stream; local 305 IOStream *stream = ctx->m_stream; local 322 IOStream *stream = ctx->m_stream; local 338 IOStream *stream = ctx->m_stream; local 357 IOStream *stream = ctx->m_stream; local 378 IOStream *stream = ctx->m_stream; local 393 IOStream *stream = ctx->m_stream; local 408 IOStream *stream = ctx->m_stream; local 423 IOStream *stream = ctx->m_stream; local 438 IOStream *stream = ctx->m_stream; local 459 IOStream *stream = ctx->m_stream; local 483 IOStream *stream = ctx->m_stream; local [all...] |
/external/chromium_org/content/browser/loader/ |
stream_resource_handler.h | 22 // Redirect this resource to a stream. 26 // |origin| will be used to construct the URL for the Stream. See 58 // A read was completed, forward the data to the Stream. 69 Stream* stream() { return stream_.get(); } function in class:content::StreamResourceHandler 72 virtual void OnSpaceAvailable(Stream* stream) OVERRIDE; 73 virtual void OnClose(Stream* stream) OVERRIDE; 76 scoped_refptr<Stream> stream_ [all...] |
/external/chromium_org/content/renderer/media/ |
peer_connection_handler_base.cc | 20 const WebKit::WebMediaStream& stream) { 22 static_cast<MediaStreamExtraData*>(stream.extraData()); 24 return extra_data->stream().get(); 38 const WebKit::WebMediaStream& stream, 40 webrtc::MediaStreamInterface* native_stream = GetNativeMediaStream(stream); 47 const WebKit::WebMediaStream& stream) { 48 webrtc::MediaStreamInterface* native_stream = GetNativeMediaStream(stream); 56 const WebKit::WebMediaStream& stream, 59 webrtc::MediaStreamInterface* native_stream = GetNativeMediaStream(stream); 69 NOTIMPLEMENTED(); // We have an unknown type of media stream track [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/ |
htmlembedded.js | 11 function htmlDispatch(stream, state) { 12 if (stream.match(scriptStartRegex, false)) { 14 return scriptingMode.token(stream, state.scriptState); 17 return htmlMixedMode.token(stream, state.htmlState); 21 function scriptingDispatch(stream, state) { 22 if (stream.match(scriptEndRegex, false)) { 24 return htmlMixedMode.token(stream, state.htmlState); 27 return scriptingMode.token(stream, state.scriptState); 42 token: function(stream, state) { 43 return state.token(stream, state) [all...] |
/external/chromium_org/third_party/skia/src/images/ |
SkImageDecoder_FactoryRegistrar.cpp | 25 SkImageDecoder* image_decoder_from_stream(SkStream* stream) { 29 codec = curr->factory()(stream); 31 // the stream will be at its beginning. 32 bool rewindSuceeded = stream->rewind(); 35 // if we are given a stream that does not support rewinding. 37 SkDEBUGF(("Unable to rewind the image stream.")); 54 SkImageDecoder::Format SkImageDecoder::GetStreamFormat(SkStream* stream) { 57 Format format = curr->factory()(stream); 58 if (!stream->rewind()) { 60 "Unable to rewind the image stream\n") [all...] |
/external/skia/include/utils/ |
SkFrontBufferedStream.h | 12 * Specialized stream that only buffers the first X bytes of a stream, 14 * stream APIs, once more than those bytes are read, no more buffering 15 * is done. This stream is designed for a use case where the caller 17 * and the wrapped stream is not necessarily able to rewind at all. 22 * Creates a new stream that wraps and buffers SkStream. 23 * @param stream SkStream to buffer. If NULL, NULL is returned. After 24 * this call, unref stream and do not refer to it. 29 static SkFrontBufferedStream* Create(SkStream* stream, size_t bufferSize); 49 // Current offset into the stream. Always >= 0 [all...] |
/external/skia/src/images/ |
SkImageDecoder_FactoryRegistrar.cpp | 25 SkImageDecoder* image_decoder_from_stream(SkStream* stream) { 29 codec = curr->factory()(stream); 31 // the stream will be at its beginning. 32 bool rewindSuceeded = stream->rewind(); 35 // if we are given a stream that does not support rewinding. 37 SkDEBUGF(("Unable to rewind the image stream.")); 54 SkImageDecoder::Format SkImageDecoder::GetStreamFormat(SkStream* stream) { 57 Format format = curr->factory()(stream); 58 if (!stream->rewind()) { 60 "Unable to rewind the image stream\n") [all...] |
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
vop.cpp | 84 BitstreamDecVideo *stream; local 97 stream = currVol->bitstream; 101 status = BitstreamShowBits32HC(stream, &startCode); 107 (void) BitstreamReadBits32HC(stream); 108 tmpvar = (uint32) BitstreamReadBits16(stream, 8); /* profile */ 138 status = BitstreamShowBits32HC(stream, &tmpvar); 142 status = DecodeUserData(stream); 146 BitstreamShowBits32HC(stream, &tmpvar); 152 status = PVSearchNextM4VFrame(stream); /* search 0x00 0x00 0x01 */ 154 BitstreamShowBits32(stream, VOL_START_CODE_LENGTH, &tmpvar) 806 BitstreamDecVideo *stream = currVol->bitstream; local 1016 BitstreamDecVideo *stream = currVol->bitstream; local [all...] |
/hardware/ti/omap3/dspbridge/inc/ |
DSPStream.h | 22 * This is the header for the DSP/BIOS Bridge stream module. 66 * Allocate data buffers for use with a specific stream. 68 * hStream: The stream handle. 74 * DSP_EHANDLE: Invalid Stream handle. 77 * DSP_EALIGNMENT: Stream's alignment value not supported. 89 * Close a stream and free the underlying stream object. 91 * hStream: The stream handle. 94 * DSP_EHANDLE: Invalid Stream handle. 95 * DSP_EPENDING: Not all stream buffers have been reclaime [all...] |
/hardware/ti/omap3/dspbridge/libbridge/inc/ |
DSPStream.h | 22 * This is the header for the DSP/BIOS Bridge stream module. 68 * Allocate data buffers for use with a specific stream. 70 * hStream: The stream handle. 76 * DSP_EHANDLE: Invalid Stream handle. 79 * DSP_EALIGNMENT: Stream's alignment value not supported. 91 * Close a stream and free the underlying stream object. 93 * hStream: The stream handle. 96 * DSP_EHANDLE: Invalid Stream handle. 97 * DSP_EPENDING: Not all stream buffers have been reclaime [all...] |
/external/v8/src/ |
hydrogen-instructions.cc | 436 void HValue::PrintTypeTo(StringStream* stream) { 438 stream->Add(" type[%s]", type().ToString()); 442 void HValue::PrintRangeTo(StringStream* stream) { 444 stream->Add(" range[%d,%d,m0=%d]", 451 void HValue::PrintChangesTo(StringStream* stream) { 454 stream->Add(" changes["); 456 stream->Add("*"); 461 if (add_comma) stream->Add(","); \ 463 stream->Add(#type); \ 468 stream->Add("]") [all...] |
/external/chromium_org/third_party/skia/src/core/ |
SkFontStream.cpp | 39 static bool read(SkStream* stream, void* buffer, size_t amount) { 40 return stream->read(buffer, amount) == amount; 43 static bool skip(SkStream* stream, size_t amount) { 44 return stream->skip(amount) == amount; 50 table headers (SkSFNTDirEntry), relative to the start of the stream. 54 static int count_tables(SkStream* stream, int ttcIndex, size_t* offsetToDir) { 60 if (!read(stream, header, sizeof(SkSharedTTHeader))) { 64 // by default, SkSFNTHeader is at the start of the stream 76 stream->rewind(); 79 if (!read(stream, header, amount)) [all...] |
/external/skia/src/core/ |
SkFontStream.cpp | 39 static bool read(SkStream* stream, void* buffer, size_t amount) { 40 return stream->read(buffer, amount) == amount; 43 static bool skip(SkStream* stream, size_t amount) { 44 return stream->skip(amount) == amount; 50 table headers (SkSFNTDirEntry), relative to the start of the stream. 54 static int count_tables(SkStream* stream, int ttcIndex, size_t* offsetToDir) { 60 if (!read(stream, header, sizeof(SkSharedTTHeader))) { 64 // by default, SkSFNTHeader is at the start of the stream 76 stream->rewind(); 79 if (!read(stream, header, amount)) [all...] |
/external/zlib/src/contrib/minizip/ |
ioapi.c | 20 #define FTELLO_FUNC(stream) ftello(stream) 21 #define FSEEKO_FUNC(stream, offset, origin) fseeko(stream, offset, origin) 24 #define FTELLO_FUNC(stream) ftello64(stream) 25 #define FSEEKO_FUNC(stream, offset, origin) fseeko64(stream, offset, origin) 88 static uLong ZCALLBACK fread_file_func OF((voidpf opaque, voidpf stream, void* buf, uLong size)); 89 static uLong ZCALLBACK fwrite_file_func OF((voidpf opaque, voidpf stream, const void* buf,uLong size)) [all...] |
/packages/apps/UnifiedEmail/src/org/apache/commons/io/input/ |
AutoCloseInputStream.java | 23 * Proxy stream that closes and discards the underlying stream as soon as the
24 * end of input has been reached or when the stream is explicitly closed.
25 * Not even a reference to the underlying stream is kept after it has been
27 * client application still keeps a reference to the proxy stream.
30 * stream as soon as possible even if the client application (by not explicitly
31 * closing the stream when no longer needed) or the underlying stream (by not
40 * Creates an automatically closing proxy for the given input stream.
42 * @param in underlying input stream
[all...] |
/hardware/libhardware/modules/usbaudio/ |
audio_hw.c | 54 struct audio_stream_out stream; member in struct:stream_out 65 * following order: hw device > out stream 70 /* must be called with hw device and output stream mutexes locked */ 92 static uint32_t out_get_sample_rate(const struct audio_stream *stream) 97 static int out_set_sample_rate(struct audio_stream *stream, uint32_t rate) 102 static size_t out_get_buffer_size(const struct audio_stream *stream) 105 audio_stream_frame_size((struct audio_stream *)stream); 108 static uint32_t out_get_channels(const struct audio_stream *stream) 113 static audio_format_t out_get_format(const struct audio_stream *stream) 118 static int out_set_format(struct audio_stream *stream, audio_format_t format [all...] |
/external/chromium/net/base/ |
upload_data_stream_unittest.cc | 41 scoped_ptr<UploadDataStream> stream( 43 ASSERT_TRUE(stream.get()); 44 EXPECT_TRUE(stream->eof()); 49 scoped_ptr<UploadDataStream> stream( 51 ASSERT_TRUE(stream.get()); 52 while (!stream->eof()) { 53 stream->MarkConsumedAndFillBuffer(stream->buf_len()); 72 scoped_ptr<UploadDataStream> stream( 74 ASSERT_TRUE(stream.get()) [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_dump.h | 94 util_dump_template(FILE *stream, 98 util_dump_rasterizer_state(FILE *stream, 102 util_dump_poly_stipple(FILE *stream, 106 util_dump_viewport_state(FILE *stream, 110 util_dump_scissor_state(FILE *stream, 114 util_dump_clip_state(FILE *stream, 118 util_dump_shader_state(FILE *stream, 122 util_dump_depth_stencil_alpha_state(FILE *stream, 126 util_dump_rt_blend_state(FILE *stream, 130 util_dump_blend_state(FILE *stream, [all...] |
/external/mesa3d/src/gallium/auxiliary/util/ |
u_dump.h | 94 util_dump_template(FILE *stream, 98 util_dump_rasterizer_state(FILE *stream, 102 util_dump_poly_stipple(FILE *stream, 106 util_dump_viewport_state(FILE *stream, 110 util_dump_scissor_state(FILE *stream, 114 util_dump_clip_state(FILE *stream, 118 util_dump_shader_state(FILE *stream, 122 util_dump_depth_stencil_alpha_state(FILE *stream, 126 util_dump_rt_blend_state(FILE *stream, 130 util_dump_blend_state(FILE *stream, [all...] |
/external/chromium_org/third_party/freetype/include/freetype/ |
ftgzip.h | 5 /* Gzip-compressed stream support. */ 57 * Open a new stream to parse gzip-compressed font files. This is 62 * stream :: 63 * The target embedding stream. 66 * The source stream. 72 * The source stream must be opened _before_ calling this function. 74 * Calling the internal function `FT_Stream_Close' on the new stream will 75 * *not* call `FT_Stream_Close' on the source stream. None of the stream 78 * The stream implementation is very basic and resets the decompressio [all...] |
ftlzw.h | 5 /* LZW-compressed stream support. */ 56 * Open a new stream to parse LZW-compressed font files. This is 61 * stream :: The target embedding stream. 63 * source :: The source stream. 69 * The source stream must be opened _before_ calling this function. 71 * Calling the internal function `FT_Stream_Close' on the new stream will 72 * *not* call `FT_Stream_Close' on the source stream. None of the stream 75 * The stream implementation is very basic and resets the decompressio [all...] |
/external/freetype/include/freetype/ |
ftgzip.h | 5 /* Gzip-compressed stream support. */ 57 * Open a new stream to parse gzip-compressed font files. This is 62 * stream :: 63 * The target embedding stream. 66 * The source stream. 72 * The source stream must be opened _before_ calling this function. 74 * Calling the internal function `FT_Stream_Close' on the new stream will 75 * *not* call `FT_Stream_Close' on the source stream. None of the stream 78 * The stream implementation is very basic and resets the decompressio [all...] |