HomeSort by relevance Sort by last modified time
    Searched full:stream (Results 1101 - 1125 of 9695) sorted by null

<<41424344454647484950>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
BEROctetStringParser.java 38 throw new ASN1ParsingException("IOException converting stream to byte array: " + e.getMessage(), e);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/io/
CipherOutputStream.java 45 * Writes the specified byte to this output stream.
73 * to this output stream.
93 * starting at offset <code>off</code> to this output stream.
128 * Flushes this output stream by forcing any buffered output bytes
148 * Closes this output stream and releases any system resources
149 * associated with this stream.
154 * <code>flush</code> method of this output stream.
158 * stream.
181 throw new IOException("Error closing stream: " + e.toString());
  /external/chromium/net/base/
upload_data_stream.h 30 // Returns the stream's buffer and buffer length.
40 // Call to indicate that a portion of the stream's buffer was consumed. This
41 // call modifies the stream's buffer so that it contains the next segment of
50 // Returns the total size of the data stream and the current position.
51 // size() is not to be used to determine whether the stream has ended
52 // because it is possible for the stream to end before its size is reached,
64 // chunked data stream. This method returns true once the final chunk has been
101 // A stream to the currently open file, for next_element_ if the next element
113 // Size and current read position within the stream.
  /external/chromium_org/build/util/lib/common/
unittest_util.py 13 """A test result class that can print formatted text results to a stream.
23 def __init__(self, stream, descriptions, verbosity):
24 unittest._TextTestResult.__init__(self, stream, descriptions, verbosity)
37 self.stream.writeln('[ RUN ] %s' % self.getDescription(test))
41 self.stream.writeln('[ OK ] %s' % self._GetTestURI(test))
45 self.stream.writeln('[ ERROR ] %s' % self._GetTestURI(test))
50 self.stream.writeln('[ FAILED ] %s' % self._GetTestURI(test))
64 unittest.TextTestRunner.__init__(self, stream=sys.stderr,
68 return _TextTestResult(self.stream, self.descriptions, self.verbosity)
  /external/chromium_org/chrome/test/chromedriver/chrome/
preferences.txt 23 "media-stream": {
  /external/chromium_org/chrome/test/chromedriver/test/
unittest_util.py 13 """A test result class that can print formatted text results to a stream.
23 def __init__(self, stream, descriptions, verbosity):
24 unittest._TextTestResult.__init__(self, stream, descriptions, verbosity)
37 self.stream.writeln('[ RUN ] %s' % self.getDescription(test))
41 self.stream.writeln('[ OK ] %s' % self._GetTestURI(test))
45 self.stream.writeln('[ ERROR ] %s' % self._GetTestURI(test))
50 self.stream.writeln('[ FAILED ] %s' % self._GetTestURI(test))
64 unittest.TextTestRunner.__init__(self, stream=sys.stderr,
68 return _TextTestResult(self.stream, self.descriptions, self.verbosity)
  /external/chromium_org/chrome/test/ext_auto/auto_provider/
server.js 7 // Stream encapsulates read/write operations over socket.
8 function Stream(delegate, socketId) {
13 Stream.prototype = {
80 this.handler_.readRequest_(new Stream(this.handler_,
  /external/chromium_org/content/browser/renderer_host/media/
audio_renderer_host.h 98 // Creates an audio output stream with the specified format whose data is
101 // opened for the stream. For clients that do not use unified IO,
110 // Play the audio stream referenced by |stream_id|.
113 // Pause the audio stream referenced by |stream_id|.
116 // Close the audio stream referenced by |stream_id|.
119 // Set the volume of the audio stream referenced by |stream_id|.
122 // Complete the process of creating an audio stream. This will set up the
137 // Send an error message to the renderer, then close the stream.
154 // A map of stream IDs to audio sources.
  /external/chromium_org/content/browser/streams/
stream_url_request_job.cc 8 #include "content/browser/streams/stream.h"
22 scoped_refptr<Stream> stream)
25 stream_(stream),
39 void StreamURLRequestJob::OnDataAvailable(Stream* stream) {
90 case Stream::STREAM_HAS_DATA:
91 case Stream::STREAM_COMPLETE:
94 case Stream::STREAM_EMPTY:
  /external/chromium_org/content/public/browser/
resource_dispatcher_host_delegate.h 111 // Returns true and sets |origin| and |target_id| if a Stream should be
113 // If true is returned, a new Stream will be created and OnStreamCreated()
116 // - a StreamHandle instance for the Stream. The handle contains the URL for
117 // reading the Stream etc.
118 // The Stream's origin will be set to |origin|.
126 // Informs the delegate that a Stream was created. |target_id| will be filled
128 // Stream can be read from the blob URL of the Stream, but can only be read
135 scoped_ptr<StreamHandle> stream,
  /external/chromium_org/content/renderer/media/
audio_input_message_filter.h 62 // Received when browser process has created an audio input stream.
73 // Notification of volume property of an audio input stream.
76 // Received when internal state of browser process' audio input stream has
81 // A map of stream ids to delegates.
  /external/chromium_org/content/test/plugin/
plugin_delete_plugin_in_stream_test.h 22 virtual NPError NewStream(NPMIMEType type, NPStream* stream,
  /external/chromium_org/gpu/command_buffer/common/
logging.cc 11 std::ostream& Logger::stream() { function in class:gpu::Logger
  /external/chromium_org/gpu/command_buffer/service/
stream_texture_manager.h 14 // Interface used by the cmd decoder to create and lookup stream textures.
  /external/chromium_org/media/audio/android/
audio_manager_android.cc 78 AudioOutputStream* stream = local
80 if (stream && output_stream_count() == 1) {
84 return stream;
89 AudioInputStream* stream = local
91 return stream;
94 void AudioManagerAndroid::ReleaseOutputStream(AudioOutputStream* stream) {
95 AudioManagerBase::ReleaseOutputStream(stream);
102 void AudioManagerAndroid::ReleaseInputStream(AudioInputStream* stream) {
103 AudioManagerBase::ReleaseInputStream(stream);
  /external/chromium_org/media/audio/linux/
alsa_input.h 25 // Provides an input stream for audio capture based on the ALSA PCM interface.
34 // Create a PCM Output stream for the ALSA device identified by
68 // The AudioManager indirectly holds on to stream objects, so we don't
69 // want circular references. Additionally, stream objects live on the audio
  /external/chromium_org/media/base/
demuxer_stream.h 29 // or the end of the stream.
35 // VideoDecoderConfig for the stream has changed.
52 // or the end of the stream if the first parameter is kOk. NULL otherwise.
65 // Returns the type of stream.
  /external/chromium_org/media/filters/
audio_decoder_selector_unittest.cc 49 scoped_ptr<DecryptingDemuxerStream> stream) {
50 OnDecoderSelected(decoder.get(), stream.get());
123 // The stream is not encrypted but we have no clear decoder. No decoder can be
134 // The stream is not encrypted and we have one clear decoder. The decoder
147 // The stream is not encrypted and we have multiple clear decoders. The first
148 // decoder that can decode the input stream will be selected.
162 // There is a decryptor but the stream is not encrypted. The decoder will be
175 // The stream is encrypted and there's no decryptor. No decoder can be selected.
210 // The first decoder that can decode the input stream will be selected and
video_decoder_selector_unittest.cc 62 scoped_ptr<DecryptingDemuxerStream> stream) {
63 OnDecoderSelected(decoder.get(), stream.get());
133 // The stream is not encrypted but we have no clear decoder. No decoder can be
144 // The stream is not encrypted and we have one clear decoder. The decoder
157 // The stream is not encrypted and we have multiple clear decoders. The first
158 // decoder that can decode the input stream will be selected.
172 // There is a decryptor but the stream is not encrypted. The decoder will be
185 // The stream is encrypted and there's no decryptor. No decoder can be selected.
220 // The first decoder that can decode the input stream will be selected and
  /external/chromium_org/media/mp4/
aac.h 31 // then it will parse the ElementaryStreamDescriptor to get audio stream
35 // Gets the output sample rate for the AAC stream.
42 // Gets the channel layout for the AAC stream.
84 // stream descriptor.
  /external/chromium_org/net/base/
file_stream_net_log_parameters.h 5 // File stream error reporting.
  /external/chromium_org/net/http/
http_pipelined_stream.h 84 // The SSLConfig used to establish this stream's pipeline.
87 // The ProxyInfo used to establish this this stream's pipeline.
90 // The BoundNetLog of this stream's pipelined connection.
93 // True if this stream's pipeline was NPN negotiated.
  /external/chromium_org/net/quic/
quic_session_test.cc 77 TestStream* stream = new TestStream(GetNextStreamId(), this); variable
78 ActivateStream(stream); variable
79 return stream;
113 EXPECT_FALSE(session_.IsClosedStream(i)) << " stream id: " << i;
115 EXPECT_TRUE(session_.IsClosedStream(i)) << " stream id: " << i;
168 // Create stream id 9, and implicitly 7
183 ReliableQuicStream* stream = session_.GetIncomingReliableStream(3); local
189 stream->ProcessRawData(data, arraysize(data));
214 session_.CreateOutgoingReliableStream(); // stream 6
  /external/chromium_org/net/spdy/
spdy_http_stream.h 29 // The SpdyHttpStream is a HTTP-specific type of stream known to a SpdySession.
37 SpdyStream* stream() { return stream_.get(); } function in class:net::SpdyHttpStream
39 // Cancels any callbacks from being invoked and deletes the stream.
92 // request body stream and sends it if there's any. The read and
97 // Called when data has just been read from the request body stream;
129 // when a SYN_REPLY comes in for the stream.
130 // It is not owned by this stream object, or point to |push_response_info_|.
139 // We buffer the response body as it arrives asynchronously from the stream.
158 // Is this spdy stream direct to the origin server (or to a proxy).
  /external/chromium_org/third_party/WebKit/Source/core/platform/mediastream/
MediaStreamComponent.cpp 51 PassRefPtr<MediaStreamComponent> MediaStreamComponent::create(MediaStreamDescriptor* stream, PassRefPtr<MediaStreamSource> source)
53 return adoptRef(new MediaStreamComponent(createCanonicalUUIDString(), stream, source));
56 MediaStreamComponent::MediaStreamComponent(const String& id, MediaStreamDescriptor* stream, PassRefPtr<MediaStreamSource> source)
57 : m_stream(stream)

Completed in 701 milliseconds

<<41424344454647484950>>