/external/linux-tools-perf/Documentation/ |
perf-inject.txt | 6 perf-inject - Filter to augment the events stream with additional information 15 perf-inject reads a perf-record event stream and repipes it to stdout. At any 16 point the processing code can inject other events into the event stream - in 18 stream. 21 needs userspace processing to augment the events stream with additional 28 Inject build-ids into the output stream
|
/external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/ |
IncomingStreamHandler.java | 21 /** Listener to be notified when a connected peer creates a new stream. */ 24 @Override public void receive(SpdyStream stream) throws IOException { 25 stream.close(SpdyStream.RST_REFUSED_STREAM); 30 * Handle a new stream from this connection's peer. Implementations should 31 * respond by either {@link SpdyStream#reply replying to the stream} or 35 void receive(SpdyStream stream) throws IOException;
|
/external/skia/src/core/ |
SkFontStream.h | 19 * if the stream is a normal sfnt (ttf). If there is an error or 22 * Note: the stream is rewound initially, but is returned at an arbitrary 30 * Note: the stream is rewound initially, but is returned at an arbitrary 38 * Note: the stream is rewound initially, but is returned at an arbitrary 44 static size_t GetTableSize(SkStream* stream, int ttcIndex, SkFontTableTag tag) { 45 return GetTableData(stream, ttcIndex, tag, 0, ~0U, NULL);
|
/external/zlib/src/contrib/ada/ |
zlib-streams.ads | 21 (Stream : in out Stream_Type; 26 (Stream : in out Stream_Type; 30 (Stream : in out Stream_Type; 32 -- Flush the written data to the back stream, 33 -- all data placed to the compressor is flushing to the Back stream. 37 function Read_Total_In (Stream : in Stream_Type) return Count; 39 -- Return total number of bytes read from back stream so far. 41 function Read_Total_Out (Stream : in Stream_Type) return Count; 45 function Write_Total_In (Stream : in Stream_Type) return Count; 49 function Write_Total_Out (Stream : in Stream_Type) return Count [all...] |
/frameworks/base/core/jni/android/graphics/ |
CreateJavaOutputStreamAdaptor.h | 16 * @param stream Pointer to Java InputStream. 24 SkStream* CreateJavaInputStreamAdaptor(JNIEnv* env, jobject stream, 30 * @param stream Pointer to Java InputStream. 33 * @return SkStreamRewindable The data in stream will be copied 36 SkStreamRewindable* CopyJavaInputStream(JNIEnv* env, jobject stream, 39 SkWStream* CreateJavaOutputStreamAdaptor(JNIEnv* env, jobject stream,
|
/libcore/luni/src/main/java/java/io/ |
FilterInputStream.java | 24 * decompression of the underlying stream. Input streams that wrap another input 25 * stream and provide some additional functionality on top of it usually inherit 33 * The source input stream that is filtered. 39 * stream as source. 45 * @param in the input stream to filter reads on. 57 * Closes this stream. This implementation closes the filtered stream. 60 * if an error occurs while closing this stream. 68 * Sets a mark position in this stream. The parameter {@code readlimit} 70 * Sending {@code reset()} will reposition this stream back to the marke [all...] |
/libcore/luni/src/test/java/tests/api/org/xml/sax/support/ |
BrokenInputStream.java | 29 private InputStream stream; field in class:BrokenInputStream 33 public BrokenInputStream(InputStream stream, int offset) { 36 this.stream = stream; 47 return stream.read(); 52 stream.close();
|
/external/antlr/antlr-3.4/runtime/C/include/ |
antlr3intstream.h | 4 * Certain functionality (such as DFAs for instance) abstract the stream of tokens 6 * in any stream that is able to provide the output as a stream of integers (which is anything 12 * the base stream provides a pointer to this interface, within which it installs its 14 * and can treat any input as an int stream. 66 /** Type indicator for a character stream 67 * \remark if a custom stream is created but it can be treated as 68 * a char stream, then you may OR in this value to your type indicator 72 /** Type indicator for a Token stream 73 * \remark if a custom stream is created but it can be treated a [all...] |
/device/asus/grouper/audio/ |
audio_hw.c | 114 struct audio_stream_out stream; member in struct:stream_out 134 struct audio_stream_in stream; member in struct:stream_in 159 static uint32_t out_get_sample_rate(const struct audio_stream *stream); 160 static size_t out_get_buffer_size(const struct audio_stream *stream); 161 static audio_format_t out_get_format(const struct audio_stream *stream); 162 static uint32_t in_get_sample_rate(const struct audio_stream *stream); 163 static size_t in_get_buffer_size(const struct audio_stream *stream); 164 static audio_format_t in_get_format(const struct audio_stream *stream); 212 /* must be called with hw device and output stream mutexes locked */ 233 /* must be called with hw device and input stream mutexes locked * [all...] |
/external/chromium_org/third_party/freetype/src/psaux/ |
afmparse.c | 71 ( ( (stream)->cursor < (stream)->limit ) ? *(stream)->cursor++ \ 74 #define AFM_STREAM_KEY_BEGIN( stream ) \ 75 (char*)( (stream)->cursor - 1 ) 77 #define AFM_STREAM_KEY_LEN( stream, key ) \ 78 ( (char*)(stream)->cursor - key - 1 ) 80 #define AFM_STATUS_EOC( stream ) \ 81 ( (stream)->status >= AFM_STREAM_STATUS_EOC ) 83 #define AFM_STATUS_EOL( stream ) \ 371 AFM_Stream stream = parser->stream; local 445 AFM_Stream stream = parser->stream; local 530 AFM_Stream stream = NULL; local [all...] |
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/ |
fakemediastreamsignaling.h | 88 virtual void OnAddRemoteStream(webrtc::MediaStreamInterface* stream) { 90 virtual void OnRemoveRemoteStream(webrtc::MediaStreamInterface* stream) { 94 virtual void OnAddLocalAudioTrack(webrtc::MediaStreamInterface* stream, 98 virtual void OnAddLocalVideoTrack(webrtc::MediaStreamInterface* stream, 102 virtual void OnAddRemoteAudioTrack(webrtc::MediaStreamInterface* stream, 107 virtual void OnAddRemoteVideoTrack(webrtc::MediaStreamInterface* stream, 113 webrtc::MediaStreamInterface* stream, 118 webrtc::MediaStreamInterface* stream, 123 webrtc::MediaStreamInterface* stream, 127 webrtc::MediaStreamInterface* stream, [all...] |
/external/chromium_org/third_party/zlib/ |
compress.c | 29 z_stream stream; local 32 stream.next_in = (Bytef*)source; 33 stream.avail_in = (uInt)sourceLen; 36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR; 38 stream.next_out = dest; 39 stream.avail_out = (uInt)*destLen; 40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR; 42 stream.zalloc = (alloc_func)0; 43 stream.zfree = (free_func)0; 44 stream.opaque = (voidpf)0 [all...] |
/external/freetype/src/psaux/ |
afmparse.c | 72 ( ( (stream)->cursor < (stream)->limit ) ? *(stream)->cursor++ \ 75 #define AFM_STREAM_KEY_BEGIN( stream ) \ 76 (char*)( (stream)->cursor - 1 ) 78 #define AFM_STREAM_KEY_LEN( stream, key ) \ 79 ( (char*)(stream)->cursor - key - 1 ) 81 #define AFM_STATUS_EOC( stream ) \ 82 ( (stream)->status >= AFM_STREAM_STATUS_EOC ) 84 #define AFM_STATUS_EOL( stream ) \ 374 AFM_Stream stream = parser->stream; local 448 AFM_Stream stream = parser->stream; local 533 AFM_Stream stream = NULL; local [all...] |
/external/qemu/distrib/zlib-1.2.3/ |
compress.c | 29 z_stream stream; local 32 stream.next_in = (Bytef*)source; 33 stream.avail_in = (uInt)sourceLen; 36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR; 38 stream.next_out = dest; 39 stream.avail_out = (uInt)*destLen; 40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR; 42 stream.zalloc = (alloc_func)0; 43 stream.zfree = (free_func)0; 44 stream.opaque = (voidpf)0 [all...] |
/external/zlib/src/ |
compress.c | 29 z_stream stream; local 32 stream.next_in = (z_const Bytef *)source; 33 stream.avail_in = (uInt)sourceLen; 36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR; 38 stream.next_out = dest; 39 stream.avail_out = (uInt)*destLen; 40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR; 42 stream.zalloc = (alloc_func)0; 43 stream.zfree = (free_func)0; 44 stream.opaque = (voidpf)0 [all...] |
/libcore/luni/src/main/java/java/security/ |
DigestInputStream.java | 31 * The message digest for this stream. 40 * given {@code stream} and the {@code digest}. 43 * {@code DigestInputStream}. All operations on such a stream will fail. 45 * @param stream 46 * the input stream. 50 public DigestInputStream(InputStream stream, MessageDigest digest) { 51 super(stream); 56 * Returns the message digest for this stream. 58 * @return the message digest for this stream. 65 * Sets the message digest which this stream will use [all...] |
/external/bluetooth/bluedroid/audio_a2dp_hw/ |
audio_a2dp_hw.c | 93 /* move ctrl_fd outside output stream and keep open until HAL unloaded ? */ 96 struct audio_stream_out stream; member in struct:a2dp_stream_out 106 struct audio_stream_in stream; member in struct:a2dp_stream_in 117 static size_t out_get_buffer_size(const struct audio_stream *stream); 372 /* prevent any stray output writes from autostarting the stream 437 static ssize_t out_write(struct audio_stream_out *stream, const void* buffer, 440 struct a2dp_stream_out *out = (struct a2dp_stream_out *)stream; 447 DEBUG("stream suspended"); 475 ERROR("stream not in stopped or standby"); 493 static uint32_t out_get_sample_rate(const struct audio_stream *stream) [all...] |
/external/chromium_org/net/base/ |
file_stream_unittest.cc | 63 FileStream stream(NULL); 64 int rv = stream.OpenSync(temp_file_path(), 67 EXPECT_TRUE(stream.IsOpen()); 68 file = stream.GetPlatformFileForTesting(); 136 FileStream stream(NULL); 138 EXPECT_FALSE(stream.IsOpen()); 141 int64 new_offset = stream.SeekSync(FROM_BEGIN, 5); 145 int64 avail = stream.Available(); 150 int rv = stream.ReadSync(buf, arraysize(buf)); 159 FileStream stream(NULL) [all...] |
/device/asus/flo/camera/QCamera2/stack/mm-camera-test/src/ |
mm_qcamera_video.c | 63 mm_camera_stream_t *stream = NULL; local 66 stream = mm_app_add_stream(test_obj, channel); 67 if (NULL == stream) { 68 CDBG_ERROR("%s: add stream failed\n", __func__); 72 stream->s_config.mem_vtbl.get_bufs = mm_app_stream_initbuf; 73 stream->s_config.mem_vtbl.put_bufs = mm_app_stream_deinitbuf; 74 stream->s_config.mem_vtbl.clean_invalidate_buf = 76 stream->s_config.mem_vtbl.invalidate_buf = mm_app_stream_invalidate_buf; 77 stream->s_config.mem_vtbl.user_data = (void *)stream; 103 mm_camera_stream_t *stream = NULL; local [all...] |
/external/speex/include/speex/ |
speex_bits.h | 38 /** @defgroup SpeexBits SpeexBits: Bit-stream manipulations 39 * This is the structure that holds the bit-stream when encoding or decoding 48 /** Bit-packing data structure representing (part of) a bit-stream. */ 51 int nbBits; /**< Total number of bits stored in the stream*/ 76 /** Rewind the bit-stream to the beginning (ready for read) without erasing the content */ 79 /** Initializes the bit-stream from the data in an area of memory */ 82 /** Append bytes to the bit-stream 84 * @param bits Bit-stream to operate on 90 /** Write the content of a bit-stream to an area of memory 92 * @param bits Bit-stream to operate o [all...] |
/hardware/qcom/camera/QCamera2/stack/mm-camera-test/src/ |
mm_qcamera_video.c | 63 mm_camera_stream_t *stream = NULL; local 66 stream = mm_app_add_stream(test_obj, channel); 67 if (NULL == stream) { 68 CDBG_ERROR("%s: add stream failed\n", __func__); 72 stream->s_config.mem_vtbl.get_bufs = mm_app_stream_initbuf; 73 stream->s_config.mem_vtbl.put_bufs = mm_app_stream_deinitbuf; 74 stream->s_config.mem_vtbl.clean_invalidate_buf = 76 stream->s_config.mem_vtbl.invalidate_buf = mm_app_stream_invalidate_buf; 77 stream->s_config.mem_vtbl.user_data = (void *)stream; 103 mm_camera_stream_t *stream = NULL; local [all...] |
/hardware/libhardware/modules/audio_remote_submix/ |
audio_hw.cpp | 83 struct audio_stream_out stream; member in struct:android::submix_stream_out 88 struct audio_stream_in stream; member in struct:android::submix_stream_in 101 static uint32_t out_get_sample_rate(const struct audio_stream *stream) 104 reinterpret_cast<const struct submix_stream_out *>(stream); 110 static int out_set_sample_rate(struct audio_stream *stream, uint32_t rate) 116 struct submix_stream_out *out = reinterpret_cast<struct submix_stream_out *>(stream); 122 static size_t out_get_buffer_size(const struct audio_stream *stream) 125 reinterpret_cast<const struct submix_stream_out *>(stream); 134 static audio_channel_mask_t out_get_channels(const struct audio_stream *stream) 137 reinterpret_cast<const struct submix_stream_out *>(stream); [all...] |
/external/chromium_org/content/common/gpu/media/ |
h264_bit_reader.h | 5 // This file contains an implementation of an H264 Annex-B video stream parser. 19 // H.264 stream-specific constraints, such as skipping emulation-prevention 28 // Return false on insufficient size of stream.. 33 // Read |num_bits| next bits from stream and return in |*out|, first bit 34 // from the stream starting at |num_bits| position in |*out|. 37 // bits in the stream), true otherwise. 40 // Return the number of bits left in the stream. 48 // Return false on end of stream. 51 // Pointer to the next unread (not in curr_byte_) byte in the stream. 54 // Bytes left in the stream (without the curr_byte_) [all...] |
/external/chromium_org/media/base/ |
bit_reader.h | 24 // Read |num_bits| next bits from stream and return in |*out|, first bit 25 // from the stream starting at |num_bits| position in |*out|. 28 // bits in the stream), true otherwise. When return false, the stream will 40 // Skip |num_bits| next bits from stream. Return false if the given number of 41 // bits cannot be skipped (not enough bits in the stream), true otherwise. 42 // When return false, the stream will enter a state where further ReadBits/ 55 // the stream has reached the end. 58 // Pointer to the next unread (not in curr_byte_) byte in the stream. 61 // Bytes left in the stream (without the curr_byte_) [all...] |
/external/chromium_org/media/audio/pulse/ |
pulse_util.cc | 114 int GetHardwareLatencyInBytes(pa_stream* stream, 117 DCHECK(stream); 120 if (pa_stream_get_latency(stream, &latency_micros, &negative) != 0) 141 pa_stream** stream, 156 // Get channel mapping and open recording stream. 162 // Create a new recording stream. 163 *stream = pa_stream_new(context, "RecordStream", &sample_specifications, map); 164 RETURN_ON_FAILURE(*stream, "failed to create PA recording stream"); 166 pa_stream_set_state_callback(*stream, stream_callback, user_data) [all...] |