Searched defs:stream (Results 176 - 200 of 1254) sorted by relevance

1234567891011>>

/external/chromium_org/net/quic/
H A Dquic_crypto_server_stream.h32 explicit ServerHelloNotifier(QuicCryptoServerStream* stream) argument
33 : server_stream_(stream) {}
130 // Number of handshake messages received by this stream.
133 // Number of server config update (SCUP) messages sent by this stream.
/external/chromium_org/net/tools/quic/
H A Dquic_client_session.cc43 DVLOG(1) << "Encryption not active so no outgoing stream created.";
47 DVLOG(1) << "Failed to create a new outgoing stream. "
52 DVLOG(1) << "Failed to create a new outgoing stream. "
56 QuicSpdyClientStream* stream local
58 ActivateStream(stream);
59 return stream;
/external/chromium_org/third_party/WebKit/Source/core/streams/
H A DStream.h51 RefPtrWillBeRawPtr<Stream> stream = adoptRefWillBeNoop(new Stream(context, mediaType)); local
52 stream->suspendIfNeeded();
53 return stream.release();
58 // Returns the internal URL referring to this stream.
60 // Returns the media type of this stream.
63 // Appends data to this stream.
65 // Mark this stream finalized so that a reader of this stream is notified
68 // Mark this stream finalized due to an error so that a reader of this
69 // stream i
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/
H A DFontCustomPlatformDataSkia.cpp100 RefPtr<SkMemoryStream> stream = adoptRef(new SkMemoryStream(buffer->getAsSkData().get())); local
102 RefPtr<SkTypeface> typeface = adoptRef(FontCache::fontCache()->fontManager()->createFromStream(stream.get()));
104 RefPtr<SkTypeface> typeface = adoptRef(SkTypeface::CreateFromStream(stream.get()));
/external/chromium_org/third_party/cython/src/Cython/Utility/
H A DPrinting.c76 static int __Pyx_Print(PyObject* stream, PyObject *arg_tuple, int newline) { argument
85 if (stream) {
89 if (unlikely(PyDict_SetItem(kwargs, PYIDENT("file"), stream) < 0))
134 static int __Pyx_PrintOne(PyObject* stream, PyObject *o); /*proto*/
166 static int __Pyx_PrintOne(PyObject* stream, PyObject *o) { argument
171 res = __Pyx_Print(stream, arg_tuple, 1);
/external/chromium_org/third_party/freetype/src/base/
H A Dftstream.c5 /* I/O stream support (body). */
35 FT_Stream_OpenMemory( FT_Stream stream, argument
39 stream->base = (FT_Byte*) base;
40 stream->size = size;
41 stream->pos = 0;
42 stream->cursor = 0;
43 stream->read = 0;
44 stream->close = 0;
49 FT_Stream_Close( FT_Stream stream )
51 if ( stream
215 FT_Stream_ReleaseFrame( FT_Stream stream, FT_Byte** pbytes ) argument
[all...]
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Drtpdump_unittest.cc78 rtc::MemoryStream stream; local
79 RtpDumpWriter writer(&stream);
82 // Write a RTP packet to the stream, which is a valid RTP dump. Next, we will
85 stream.Rewind();
86 reader.reset(new RtpDumpReader(&stream));
90 stream.Rewind();
93 stream.WriteAll(new_line, strlen(new_line), NULL, NULL));
94 stream.Rewind();
95 reader.reset(new RtpDumpReader(&stream));
99 stream
119 rtc::MemoryStream stream; local
157 rtc::MemoryStream stream; local
179 rtc::MemoryStream stream; local
208 rtc::MemoryStream stream; local
234 rtc::MemoryStream stream; local
245 rtc::MemoryStream stream; local
256 rtc::MemoryStream stream; local
278 rtc::MemoryStream stream; local
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkFontDescriptor.cpp27 static void read_string(SkStream* stream, SkString* string) { argument
28 const uint32_t length = SkToU32(stream->readPackedUInt());
31 stream->read(string->writable_str(), length);
35 static void write_string(SkWStream* stream, const SkString& string, argument
38 stream->writePackedUInt(id);
39 stream->writePackedUInt(string.size());
40 stream->write(string.c_str(), string.size());
44 static size_t read_uint(SkStream* stream) { argument
45 return stream->readPackedUInt();
48 static void write_uint(SkWStream* stream, size_ argument
53 SkFontDescriptor(SkStream* stream) argument
88 serialize(SkWStream* stream) argument
[all...]
/external/chromium_org/third_party/skia/src/pdf/
H A DSkPDFStream.cpp22 SkPDFStream::SkPDFStream(SkStream* stream) : fState(kUnused_State) { argument
23 this->setData(stream);
35 // Don't uncompress an already compressed stream, but we could.
48 void SkPDFStream::emitObject(SkWStream* stream, SkPDFCatalog* catalog, argument
51 return emitIndirectObject(stream, catalog);
55 return fSubstitute->emitObject(stream, catalog, indirect);
58 this->INHERITED::emitObject(stream, catalog, false);
59 stream->writeText(" stream\n");
60 stream
87 setData(SkStream* stream) argument
[all...]
H A DSkPDFStream.h22 A stream object in a PDF. Note, all streams must be indirect objects (via
28 /** Create a PDF stream. A Length entry is automatically added to the
29 * stream dictionary.
30 * @param data The data part of the stream. Will be ref()ed.
34 /** Create a PDF stream. A Length entry is automatically added to the
35 * stream dictionary.
36 * @param stream The data part of the stream. Will be duplicate()d.
38 explicit SkPDFStream(SkStream* stream);
44 virtual void emitObject(SkWStream* stream, SkPDFCatalo
70 setSubstitute(SkPDFStream* stream) argument
[all...]
/external/chromium_org/third_party/skia/src/xml/
H A DSkXMLPullParser.cpp25 SkXMLPullParser::SkXMLPullParser(SkStream* stream) : fStream(NULL) argument
30 this->setStream(stream);
38 SkStream* SkXMLPullParser::setStream(SkStream* stream) argument
40 if (fStream && !stream)
43 SkRefCnt_SafeAssign(fStream, stream);
/external/chromium_org/third_party/webrtc/base/
H A Dhttpserver_unittest.cc52 void OnConnectionClosed(HttpServer*, int, StreamInterface* stream) { argument
54 delete stream;
H A Dproxydetect_unittest.cc51 FileStream* stream = FakeFileSystem::OpenFile(name, mode); local
52 return stream;
/external/chromium_org/v8/src/arm64/
H A Ddisasm-arm64.h80 explicit PrintDisassembler(FILE* stream) : stream_(stream) { } argument
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLSecretKey.java124 private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { argument
125 stream.defaultReadObject();
130 private void writeObject(ObjectOutputStream stream) throws IOException { argument
135 stream.defaultWriteObject();
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DFingerPrint.java42 PrintStream stream; field in class:FingerPrint
47 this.stream = ps;
52 * Create and save fingerprints as image and print their reference in the current stream.
75 this.stream.print("The following fingerprints show results for the most representative tests of the ");
77 this.stream.print("current build.<br>\n");
79 this.stream.print(this.component);
80 this.stream.print(" component.<br>\n");
82 this.stream.print("<table border=\"0\">\n");
83 this.stream.print("<tr><td valign=\"top\">Select which kind of scale you want to use:</td>\n");
84 this.stream
[all...]
H A DScenarioStatusTable.java28 private PrintStream stream; field in class:ScenarioStatusTable
35 public ScenarioStatusTable(String name, PrintStream stream) { argument
37 this.stream = stream;
41 * Prints the HTML representation of scenario status table into the given stream.
51 this.stream.print("<table border=\"1\">\n");
52 this.stream.print("<tr>\n");
53 this.stream.print("<td><h4>All ");
54 this.stream.print(computeSize(scenarios));
55 this.stream
[all...]
/external/freetype/src/base/
H A Dftstream.c5 /* I/O stream support (body). */
35 FT_Stream_OpenMemory( FT_Stream stream, argument
39 stream->base = (FT_Byte*) base;
40 stream->size = size;
41 stream->pos = 0;
42 stream->cursor = 0;
43 stream->read = 0;
44 stream->close = 0;
49 FT_Stream_Close( FT_Stream stream )
51 if ( stream
215 FT_Stream_ReleaseFrame( FT_Stream stream, FT_Byte** pbytes ) argument
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DArrayListMultimap.java145 private void writeObject(ObjectOutputStream stream) throws IOException { argument
146 stream.defaultWriteObject();
147 stream.writeInt(expectedValuesPerKey);
148 Serialization.writeMultimap(this, stream);
152 private void readObject(ObjectInputStream stream) argument
154 stream.defaultReadObject();
155 expectedValuesPerKey = stream.readInt();
156 int distinctKeys = Serialization.readCount(stream);
159 Serialization.populateMultimap(this, stream, distinctKeys);
H A DHashBiMap.java97 private void writeObject(ObjectOutputStream stream) throws IOException { argument
98 stream.defaultWriteObject();
99 Serialization.writeMap(this, stream);
103 private void readObject(ObjectInputStream stream) argument
105 stream.defaultReadObject();
106 int size = Serialization.readCount(stream);
109 Serialization.populateMap(this, stream, size);
H A DTreeMultimap.java177 private void writeObject(ObjectOutputStream stream) throws IOException { argument
178 stream.defaultWriteObject();
179 stream.writeObject(keyComparator());
180 stream.writeObject(valueComparator());
181 Serialization.writeMultimap(this, stream);
186 private void readObject(ObjectInputStream stream) argument
188 stream.defaultReadObject();
189 keyComparator = checkNotNull((Comparator<? super K>) stream.readObject());
190 valueComparator = checkNotNull((Comparator<? super V>) stream.readObject());
192 Serialization.populateMultimap(this, stream);
[all...]
/external/lldb/source/Expression/
H A DASTDumper.cpp129 void ASTDumper::ToStream(lldb::StreamSP &stream) argument
131 stream->PutCString(m_dump.c_str());
/external/lldb/source/Interpreter/
H A DCommandHistory.cpp126 CommandHistory::Dump (Stream& stream, argument
139 stream.Indent();
140 stream.Printf ("%4zu: %s\n", counter, hist_item.c_str());
/external/lzma/CPP/7zip/Common/
H A DInOutTempBuffer.cpp77 HRESULT CInOutTempBuffer::WriteToStream(ISequentialOutStream *stream) argument
87 RINOK(WriteStream(stream, _buf, _bufPos));
103 RINOK(WriteStream(stream, _buf, processed));
/external/lzma/CS/7zip/Common/
H A DInBuffer.cs21 public void Init(System.IO.Stream stream) argument
23 m_Stream = stream;

Completed in 6975 milliseconds

1234567891011>>