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

<<11121314151617181920>>

  /external/chromium_org/third_party/freetype/include/freetype/
ftsystem.h 193 * A handle to an input stream.
206 * to store a file descriptor or a `FILE*' in an input stream.
223 * A function used to seek and read data from a given input stream.
226 * stream ::
227 * A handle to the source stream.
230 * The offset of read in stream (always from start).
236 * The number of bytes to read from the stream.
239 * The number of bytes effectively read by the stream.
248 (*FT_Stream_IoFunc)( FT_Stream stream,
260 * A function used to close a given input stream
    [all...]
  /external/chromium_org/third_party/zlib/contrib/minizip/
ioapi.c 76 static uLong ZCALLBACK fread_file_func OF((voidpf opaque, voidpf stream, void* buf, uLong size));
77 static uLong ZCALLBACK fwrite_file_func OF((voidpf opaque, voidpf stream, const void* buf,uLong size));
78 static ZPOS64_T ZCALLBACK ftell64_file_func OF((voidpf opaque, voidpf stream));
79 static long ZCALLBACK fseek64_file_func OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int origin));
80 static int ZCALLBACK fclose_file_func OF((voidpf opaque, voidpf stream));
81 static int ZCALLBACK ferror_file_func OF((voidpf opaque, voidpf stream));
120 static uLong ZCALLBACK fread_file_func (voidpf opaque, voidpf stream, void* buf, uLong size)
123 ret = (uLong)fread(buf, 1, (size_t)size, (FILE *)stream);
127 static uLong ZCALLBACK fwrite_file_func (voidpf opaque, voidpf stream, const void* buf, uLong size)
130 ret = (uLong)fwrite(buf, 1, (size_t)size, (FILE *)stream);
    [all...]
  /external/freetype/include/freetype/
ftsystem.h 193 * A handle to an input stream.
206 * to store a file descriptor or a `FILE*' in an input stream.
223 * A function used to seek and read data from a given input stream.
226 * stream ::
227 * A handle to the source stream.
230 * The offset of read in stream (always from start).
236 * The number of bytes to read from the stream.
239 * The number of bytes effectively read by the stream.
248 (*FT_Stream_IoFunc)( FT_Stream stream,
260 * A function used to close a given input stream
    [all...]
  /external/skia/tests/
StreamTest.cpp 21 static void test_loop_stream(skiatest::Reporter* reporter, SkStream* stream,
27 size_t bytes = stream->read(tmp, len);
33 size_t bytes = stream->read(tmp, 1);
36 REPORTER_ASSERT(reporter, stream->isAtEnd());
59 SkFILEStream stream(path.c_str());
60 REPORTER_ASSERT(reporter, stream.isValid());
61 test_loop_stream(reporter, &stream, s, 26, 100);
63 SkAutoTUnref<SkStreamAsset> stream2(stream.duplicate());
69 SkFILEStream stream(file, SkFILEStream::kCallerPasses_Ownership);
70 REPORTER_ASSERT(reporter, stream.isValid())
    [all...]
  /external/chromium_org/net/quic/
quic_session.cc 25 // To avoid deleting a stream in mid-operation, we have a simple shim between
26 // us and the stream, so we can delete any streams when we return from
113 // TODO(rch) deal with the error case of stream id 0
115 // If we get additional frames for a stream where we didn't process
127 ReliableQuicStream* stream = GetStream(frames[i].stream_id); local
128 if (stream == NULL) return false;
129 if (!stream->WillAcceptStreamFrame(frames[i])) return false;
136 ReliableQuicStream* stream = GetStream(frames[i].stream_id); local
137 if (stream) {
138 stream->OnStreamFrame(frames[i])
149 ReliableQuicStream* stream = GetStream(stream_id); local
161 ReliableQuicStream* stream = GetStream(frame.stream_id); local
198 ReliableQuicStream* stream = local
237 ReliableQuicStream* stream = it->second; local
355 ReliableQuicStream* stream = CreateIncomingReliableStream(stream_id); local
    [all...]
  /external/v8/src/
code-stubs.cc 69 StringStream stream(&allocator);
70 PrintName(&stream);
71 return stream.ToCString();
166 void CodeStub::PrintName(StringStream* stream) {
167 stream->Add("%s", MajorName(MajorKey(), false));
232 void InstanceofStub::PrintName(StringStream* stream) {
248 stream->Add("InstanceofStub%s%s%s",
329 void ArgumentsAccessStub::PrintName(StringStream* stream) {
330 stream->Add("ArgumentsAccessStub_");
332 case READ_ELEMENT: stream->Add("ReadElement"); break
    [all...]
  /external/bison/lib/
close-stream.c 1 /* Close a stream, with nicer error checking than fclose's.
20 #include "close-stream.h"
31 /* Close STREAM. Return 0 if successful, EOF (setting errno)
39 If a program writes *anything* to STREAM, that program should close
40 STREAM and make sure that it succeeds before exiting. Otherwise,
42 of every function that does an explicit write to STREAM. The last
43 printf can succeed in writing to the internal stream buffer, and yet
44 the fclose(STREAM) could still fail (due e.g., to a disk full error)
52 that writes to STREAM -- just let the internal stream state recor
    [all...]
  /libcore/luni/src/main/java/java/security/
DigestOutputStream.java 31 * The message digest for this stream.
40 * given {@code stream} and the {@code digest}.
42 * @param stream
43 * the output stream.
47 public DigestOutputStream(OutputStream stream, MessageDigest digest) {
48 super(stream);
53 * Returns the message digest for this stream.
55 * @return the message digest for this stream.
62 * Sets the message digest which this stream will use.
65 * the message digest which this stream will use
    [all...]
  /device/generic/goldfish/opengl/system/GLESv1_enc/
gl_enc.cpp 21 IOStream *stream = ctx->m_stream; local
25 ptr = stream->alloc(packetSize);
37 IOStream *stream = ctx->m_stream; local
41 ptr = stream->alloc(packetSize);
55 IOStream *stream = ctx->m_stream; local
59 ptr = stream->alloc(packetSize);
70 IOStream *stream = ctx->m_stream; local
75 ptr = stream->alloc(packetSize);
88 IOStream *stream = ctx->m_stream; local
92 ptr = stream->alloc(packetSize)
106 IOStream *stream = ctx->m_stream; local
122 IOStream *stream = ctx->m_stream; local
138 IOStream *stream = ctx->m_stream; local
156 IOStream *stream = ctx->m_stream; local
176 IOStream *stream = ctx->m_stream; local
194 IOStream *stream = ctx->m_stream; local
212 IOStream *stream = ctx->m_stream; local
231 IOStream *stream = ctx->m_stream; local
250 IOStream *stream = ctx->m_stream; local
269 IOStream *stream = ctx->m_stream; local
288 IOStream *stream = ctx->m_stream; local
304 IOStream *stream = ctx->m_stream; local
322 IOStream *stream = ctx->m_stream; local
339 IOStream *stream = ctx->m_stream; local
358 IOStream *stream = ctx->m_stream; local
373 IOStream *stream = ctx->m_stream; local
390 IOStream *stream = ctx->m_stream; local
407 IOStream *stream = ctx->m_stream; local
426 IOStream *stream = ctx->m_stream; local
443 IOStream *stream = ctx->m_stream; local
462 IOStream *stream = ctx->m_stream; local
479 IOStream *stream = ctx->m_stream; local
499 IOStream *stream = ctx->m_stream; local
515 IOStream *stream = ctx->m_stream; local
533 IOStream *stream = ctx->m_stream; local
548 IOStream *stream = ctx->m_stream; local
564 IOStream *stream = ctx->m_stream; local
582 IOStream *stream = ctx->m_stream; local
599 IOStream *stream = ctx->m_stream; local
616 IOStream *stream = ctx->m_stream; local
635 IOStream *stream = ctx->m_stream; local
652 IOStream *stream = ctx->m_stream; local
671 IOStream *stream = ctx->m_stream; local
688 IOStream *stream = ctx->m_stream; local
703 IOStream *stream = ctx->m_stream; local
719 IOStream *stream = ctx->m_stream; local
735 IOStream *stream = ctx->m_stream; local
751 IOStream *stream = ctx->m_stream; local
767 IOStream *stream = ctx->m_stream; local
787 IOStream *stream = ctx->m_stream; local
807 IOStream *stream = ctx->m_stream; local
822 IOStream *stream = ctx->m_stream; local
840 IOStream *stream = ctx->m_stream; local
855 IOStream *stream = ctx->m_stream; local
870 IOStream *stream = ctx->m_stream; local
885 IOStream *stream = ctx->m_stream; local
903 IOStream *stream = ctx->m_stream; local
921 IOStream *stream = ctx->m_stream; local
939 IOStream *stream = ctx->m_stream; local
963 IOStream *stream = ctx->m_stream; local
988 IOStream *stream = ctx->m_stream; local
1010 IOStream *stream = ctx->m_stream; local
1032 IOStream *stream = ctx->m_stream; local
1047 IOStream *stream = ctx->m_stream; local
1065 IOStream *stream = ctx->m_stream; local
1083 IOStream *stream = ctx->m_stream; local
1098 IOStream *stream = ctx->m_stream; local
1113 IOStream *stream = ctx->m_stream; local
1129 IOStream *stream = ctx->m_stream; local
1144 IOStream *stream = ctx->m_stream; local
1159 IOStream *stream = ctx->m_stream; local
1176 IOStream *stream = ctx->m_stream; local
1191 IOStream *stream = ctx->m_stream; local
1206 IOStream *stream = ctx->m_stream; local
1220 IOStream *stream = ctx->m_stream; local
1234 IOStream *stream = ctx->m_stream; local
1250 IOStream *stream = ctx->m_stream; local
1268 IOStream *stream = ctx->m_stream; local
1283 IOStream *stream = ctx->m_stream; local
1303 IOStream *stream = ctx->m_stream; local
1321 IOStream *stream = ctx->m_stream; local
1340 IOStream *stream = ctx->m_stream; local
1358 IOStream *stream = ctx->m_stream; local
1376 IOStream *stream = ctx->m_stream; local
1394 IOStream *stream = ctx->m_stream; local
1412 IOStream *stream = ctx->m_stream; local
1430 IOStream *stream = ctx->m_stream; local
1448 IOStream *stream = ctx->m_stream; local
1467 IOStream *stream = ctx->m_stream; local
1486 IOStream *stream = ctx->m_stream; local
1505 IOStream *stream = ctx->m_stream; local
1524 IOStream *stream = ctx->m_stream; local
1543 IOStream *stream = ctx->m_stream; local
1562 IOStream *stream = ctx->m_stream; local
1578 IOStream *stream = ctx->m_stream; local
1597 IOStream *stream = ctx->m_stream; local
1616 IOStream *stream = ctx->m_stream; local
1635 IOStream *stream = ctx->m_stream; local
1651 IOStream *stream = ctx->m_stream; local
1669 IOStream *stream = ctx->m_stream; local
1686 IOStream *stream = ctx->m_stream; local
1705 IOStream *stream = ctx->m_stream; local
1720 IOStream *stream = ctx->m_stream; local
1734 IOStream *stream = ctx->m_stream; local
1751 IOStream *stream = ctx->m_stream; local
1766 IOStream *stream = ctx->m_stream; local
1783 IOStream *stream = ctx->m_stream; local
1802 IOStream *stream = ctx->m_stream; local
1817 IOStream *stream = ctx->m_stream; local
1834 IOStream *stream = ctx->m_stream; local
1853 IOStream *stream = ctx->m_stream; local
1870 IOStream *stream = ctx->m_stream; local
1890 IOStream *stream = ctx->m_stream; local
1906 IOStream *stream = ctx->m_stream; local
1922 IOStream *stream = ctx->m_stream; local
1940 IOStream *stream = ctx->m_stream; local
1955 IOStream *stream = ctx->m_stream; local
1971 IOStream *stream = ctx->m_stream; local
1985 IOStream *stream = ctx->m_stream; local
1999 IOStream *stream = ctx->m_stream; local
2022 IOStream *stream = ctx->m_stream; local
2040 IOStream *stream = ctx->m_stream; local
2056 IOStream *stream = ctx->m_stream; local
2072 IOStream *stream = ctx->m_stream; local
2089 IOStream *stream = ctx->m_stream; local
2107 IOStream *stream = ctx->m_stream; local
2122 IOStream *stream = ctx->m_stream; local
2139 IOStream *stream = ctx->m_stream; local
2154 IOStream *stream = ctx->m_stream; local
2171 IOStream *stream = ctx->m_stream; local
2188 IOStream *stream = ctx->m_stream; local
2205 IOStream *stream = ctx->m_stream; local
2224 IOStream *stream = ctx->m_stream; local
2243 IOStream *stream = ctx->m_stream; local
2269 IOStream *stream = ctx->m_stream; local
2286 IOStream *stream = ctx->m_stream; local
2303 IOStream *stream = ctx->m_stream; local
2322 IOStream *stream = ctx->m_stream; local
2341 IOStream *stream = ctx->m_stream; local
2367 IOStream *stream = ctx->m_stream; local
2384 IOStream *stream = ctx->m_stream; local
2402 IOStream *stream = ctx->m_stream; local
2420 IOStream *stream = ctx->m_stream; local
2438 IOStream *stream = ctx->m_stream; local
2455 IOStream *stream = ctx->m_stream; local
2472 IOStream *stream = ctx->m_stream; local
2490 IOStream *stream = ctx->m_stream; local
2508 IOStream *stream = ctx->m_stream; local
2526 IOStream *stream = ctx->m_stream; local
2547 IOStream *stream = ctx->m_stream; local
2568 IOStream *stream = ctx->m_stream; local
2588 IOStream *stream = ctx->m_stream; local
2610 IOStream *stream = ctx->m_stream; local
2630 IOStream *stream = ctx->m_stream; local
2651 IOStream *stream = ctx->m_stream; local
2672 IOStream *stream = ctx->m_stream; local
2690 IOStream *stream = ctx->m_stream; local
2711 IOStream *stream = ctx->m_stream; local
2729 IOStream *stream = ctx->m_stream; local
2747 IOStream *stream = ctx->m_stream; local
2763 IOStream *stream = ctx->m_stream; local
2781 IOStream *stream = ctx->m_stream; local
2796 IOStream *stream = ctx->m_stream; local
2815 IOStream *stream = ctx->m_stream; local
2834 IOStream *stream = ctx->m_stream; local
2853 IOStream *stream = ctx->m_stream; local
2870 IOStream *stream = ctx->m_stream; local
2887 IOStream *stream = ctx->m_stream; local
2904 IOStream *stream = ctx->m_stream; local
2923 IOStream *stream = ctx->m_stream; local
2940 IOStream *stream = ctx->m_stream; local
2956 IOStream *stream = ctx->m_stream; local
2972 IOStream *stream = ctx->m_stream; local
2988 IOStream *stream = ctx->m_stream; local
3006 IOStream *stream = ctx->m_stream; local
3021 IOStream *stream = ctx->m_stream; local
3039 IOStream *stream = ctx->m_stream; local
3057 IOStream *stream = ctx->m_stream; local
3075 IOStream *stream = ctx->m_stream; local
3091 IOStream *stream = ctx->m_stream; local
3107 IOStream *stream = ctx->m_stream; local
3125 IOStream *stream = ctx->m_stream; local
3145 IOStream *stream = ctx->m_stream; local
3163 IOStream *stream = ctx->m_stream; local
3181 IOStream *stream = ctx->m_stream; local
3199 IOStream *stream = ctx->m_stream; local
3218 IOStream *stream = ctx->m_stream; local
3237 IOStream *stream = ctx->m_stream; local
3256 IOStream *stream = ctx->m_stream; local
3275 IOStream *stream = ctx->m_stream; local
3291 IOStream *stream = ctx->m_stream; local
3309 IOStream *stream = ctx->m_stream; local
3326 IOStream *stream = ctx->m_stream; local
3345 IOStream *stream = ctx->m_stream; local
3360 IOStream *stream = ctx->m_stream; local
3377 IOStream *stream = ctx->m_stream; local
3394 IOStream *stream = ctx->m_stream; local
3413 IOStream *stream = ctx->m_stream; local
3430 IOStream *stream = ctx->m_stream; local
3449 IOStream *stream = ctx->m_stream; local
3466 IOStream *stream = ctx->m_stream; local
3486 IOStream *stream = ctx->m_stream; local
3502 IOStream *stream = ctx->m_stream; local
3520 IOStream *stream = ctx->m_stream; local
3535 IOStream *stream = ctx->m_stream; local
3551 IOStream *stream = ctx->m_stream; local
3569 IOStream *stream = ctx->m_stream; local
3585 IOStream *stream = ctx->m_stream; local
3602 IOStream *stream = ctx->m_stream; local
3619 IOStream *stream = ctx->m_stream; local
3638 IOStream *stream = ctx->m_stream; local
3655 IOStream *stream = ctx->m_stream; local
3674 IOStream *stream = ctx->m_stream; local
3691 IOStream *stream = ctx->m_stream; local
3710 IOStream *stream = ctx->m_stream; local
3726 IOStream *stream = ctx->m_stream; local
3744 IOStream *stream = ctx->m_stream; local
3762 IOStream *stream = ctx->m_stream; local
3780 IOStream *stream = ctx->m_stream; local
3799 IOStream *stream = ctx->m_stream; local
3818 IOStream *stream = ctx->m_stream; local
3834 IOStream *stream = ctx->m_stream; local
3852 IOStream *stream = ctx->m_stream; local
3870 IOStream *stream = ctx->m_stream; local
3889 IOStream *stream = ctx->m_stream; local
3907 IOStream *stream = ctx->m_stream; local
3926 IOStream *stream = ctx->m_stream; local
3946 IOStream *stream = ctx->m_stream; local
3961 IOStream *stream = ctx->m_stream; local
3980 IOStream *stream = ctx->m_stream; local
3995 IOStream *stream = ctx->m_stream; local
4009 IOStream *stream = ctx->m_stream; local
4033 IOStream *stream = ctx->m_stream; local
4049 IOStream *stream = ctx->m_stream; local
4069 IOStream *stream = ctx->m_stream; local
4089 IOStream *stream = ctx->m_stream; local
4107 IOStream *stream = ctx->m_stream; local
4125 IOStream *stream = ctx->m_stream; local
4143 IOStream *stream = ctx->m_stream; local
4158 IOStream *stream = ctx->m_stream; local
4175 IOStream *stream = ctx->m_stream; local
4194 IOStream *stream = ctx->m_stream; local
4211 IOStream *stream = ctx->m_stream; local
4230 IOStream *stream = ctx->m_stream; local
4247 IOStream *stream = ctx->m_stream; local
4266 IOStream *stream = ctx->m_stream; local
4285 IOStream *stream = ctx->m_stream; local
4304 IOStream *stream = ctx->m_stream; local
4323 IOStream *stream = ctx->m_stream; local
4338 IOStream *stream = ctx->m_stream; local
4356 IOStream *stream = ctx->m_stream; local
4374 IOStream *stream = ctx->m_stream; local
4393 IOStream *stream = ctx->m_stream; local
4412 IOStream *stream = ctx->m_stream; local
4431 IOStream *stream = ctx->m_stream; local
4451 IOStream *stream = ctx->m_stream; local
4469 IOStream *stream = ctx->m_stream; local
4487 IOStream *stream = ctx->m_stream; local
4506 IOStream *stream = ctx->m_stream; local
4525 IOStream *stream = ctx->m_stream; local
4544 IOStream *stream = ctx->m_stream; local
4559 IOStream *stream = ctx->m_stream; local
4575 IOStream *stream = ctx->m_stream; local
4596 IOStream *stream = ctx->m_stream; local
4618 IOStream *stream = ctx->m_stream; local
4633 IOStream *stream = ctx->m_stream; local
4648 IOStream *stream = ctx->m_stream; local
4669 IOStream *stream = ctx->m_stream; local
4690 IOStream *stream = ctx->m_stream; local
4711 IOStream *stream = ctx->m_stream; local
4732 IOStream *stream = ctx->m_stream; local
4753 IOStream *stream = ctx->m_stream; local
4770 IOStream *stream = ctx->m_stream; local
4797 IOStream *stream = ctx->m_stream; local
4818 IOStream *stream = ctx->m_stream; local
4839 IOStream *stream = ctx->m_stream; local
4858 IOStream *stream = ctx->m_stream; local
4877 IOStream *stream = ctx->m_stream; local
    [all...]
  /external/srtp/srtp/
srtp.c 84 * This function allocates the stream context, rtp and rtcp ciphers
91 /* allocate srtp stream and set str_ptr */
142 /* allocate ekt data associated with stream */
166 srtp_stream_dealloc(srtp_stream_ctx_t *stream,
177 if (!stream_template || stream->rtp_cipher != stream_template->rtp_cipher) {
178 status = cipher_dealloc(stream->rtp_cipher);
184 if (!stream_template || stream->rtp_auth != stream_template->rtp_auth) {
185 status = auth_dealloc(stream->rtp_auth);
191 if (!stream_template || stream->limit != stream_template->limit) {
192 crypto_free(stream->limit)
607 srtp_stream_ctx_t *stream; local
850 srtp_stream_ctx_t *stream; local
1161 srtp_stream_ctx_t *stream; local
1177 srtp_stream_ctx_t *stream; local
1309 srtp_stream_ctx_t *stream, *last_stream; local
1455 srtp_stream_ctx_t *stream; local
1641 srtp_stream_ctx_t *stream; local
    [all...]
  /device/generic/goldfish/camera/
JpegStub.cpp 46 SkDynamicMemoryWStream* stream = local
48 if (encoder->encode(stream, pY, width, height, offsets, quality)) {
51 width, height, stream->getOffset());
60 SkDynamicMemoryWStream* stream = local
62 stream->copyTo(buff);
66 SkDynamicMemoryWStream* stream = local
68 return stream->getOffset();
  /external/chromium/third_party/libjingle/source/talk/base/
socketpool.cc 70 LOG_F(LS_VERBOSE) << "Providing cached stream";
74 if (StreamInterface* stream = pool_->RequestConnectedStream(remote, err)) {
76 active_.push_front(ConnectedStream(remote, stream));
77 LOG_F(LS_VERBOSE) << "Providing new stream";
83 void StreamCache::ReturnConnectedStream(StreamInterface* stream) {
86 if (stream == it->second) {
88 if (stream->GetState() == SS_CLOSED) {
90 LOG_F(LS_VERBOSE) << "Returning closed stream";
94 stream->SignalEvent.connect(this, &StreamCache::OnStreamEvent);
95 LOG_F(LS_VERBOSE) << "Caching stream";
    [all...]
  /external/chromium_org/components/autofill/core/browser/
autofill_scanner.h 17 // A helper class for parsing a stream of |AutofillField|'s with lookahead.
26 // Returns the current field in the stream, or |NULL| if there are no more
27 // fields in the stream.
30 // Returns |true| if the cursor has reached the end of the stream.
44 // Indicates the current position in the stream, represented as a vector.
50 // The beginning pointer for the stream.
53 // The past-the-end pointer for the stream.
  /external/chromium_org/third_party/libjingle/source/talk/base/
socketpool.cc 70 LOG_F(LS_VERBOSE) << "Providing cached stream";
74 if (StreamInterface* stream = pool_->RequestConnectedStream(remote, err)) {
76 active_.push_front(ConnectedStream(remote, stream));
77 LOG_F(LS_VERBOSE) << "Providing new stream";
83 void StreamCache::ReturnConnectedStream(StreamInterface* stream) {
86 if (stream == it->second) {
88 if (stream->GetState() == SS_CLOSED) {
90 LOG_F(LS_VERBOSE) << "Returning closed stream";
94 stream->SignalEvent.connect(this, &StreamCache::OnStreamEvent);
95 LOG_F(LS_VERBOSE) << "Caching stream";
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
parser.ml 28 | [< 'Token.Ident id; stream >] ->
30 | [< e=parse_expr; stream >] ->
34 end stream
47 parse_ident id stream
60 stream >] ->
66 stream >] ->
71 end stream
77 raise (Stream.Error "expected 'in' after for")
78 end stream
80 raise (Stream.Error "expected '=' after for"
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
parser.ml 29 | [< 'Token.Ident id; stream >] ->
31 | [< e=parse_expr; stream >] ->
35 end stream
48 parse_ident id stream
61 stream >] ->
67 stream >] ->
72 end stream
78 raise (Stream.Error "expected 'in' after for")
79 end stream
81 raise (Stream.Error "expected '=' after for"
    [all...]
  /frameworks/base/core/java/android/content/pm/
LimitedLengthInputStream.java 10 * the specified length is reached, the stream returns an EOF even if the
11 * underlying stream still has more data.
17 * The end of the stream where we don't want to allow more data to be read.
22 * Current offset in the stream.
27 * @param in underlying stream to wrap
28 * @param offset offset into stream where data starts
30 * @throws IOException if an error occurred with the underlying stream
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
ClosedOutputStream.java 23 * Closed output stream. This stream throws an exception on all attempts to
24 * write something to the stream.
27 * that accept an output stream and acting as a sentinel value instead of
28 * a <code>null</code> output stream.
41 * Throws an {@link IOException} to indicate that the stream is closed.
47 throw new IOException("write(" + b + ") failed: stream is closed");
  /external/apache-http/src/org/apache/http/conn/
EofSensorInputStream.java 38 * A stream wrapper that triggers actions on {@link #close close()} and EOF.
46 * different kinds of event, and does not always close the underlying stream
69 * The wrapped input stream, while accessible.
70 * The value changes to <code>null</code> when the wrapped stream
77 * Indicates whether this stream itself is closed.
81 * the underlying stream. After closing this stream, read
94 * If no watcher is passed, the underlying stream will simply be
96 * Otherwise, the watcher decides whether the underlying stream
99 * @param in the wrapped stream
    [all...]
  /libcore/luni/src/main/java/java/sql/
SQLOutput.java 26 * The interface for an output stream used to write attributes of an SQL <i>User
34 * passed. The driver then creates an {@code SQLOutput} stream and passes it to
37 * object into the stream according to the defined mapping.
44 * Write a {@code String} value into the output stream.
54 * Write a {@code boolean} value into the output stream.
64 * Write a {@code byte} value into the output stream.
74 * Write a {@code short} value into the output stream.
84 * Write an {@code int} value into the output stream.
94 * Write a {@code long} value into the output stream.
104 * Write a {@code float} value into the output stream
    [all...]
  /external/chromium_org/media/filters/
ffmpeg_demuxer_unittest.cc 39 std::string(negation ? "isn't" : "is") + " end of stream") {
149 DemuxerStream* stream = demuxer_->GetStream(type); local
150 CHECK(stream);
151 return !static_cast<FFmpegDemuxerStream*>(stream)->demuxer_;
165 // We should expect an end of stream buffer.
235 // Video stream should be present.
236 DemuxerStream* stream = demuxer_->GetStream(DemuxerStream::VIDEO); local
237 ASSERT_TRUE(stream);
238 EXPECT_EQ(DemuxerStream::VIDEO, stream->type());
240 const VideoDecoderConfig& video_config = stream->video_decoder_config()
285 DemuxerStream* stream = demuxer_->GetStream(DemuxerStream::VIDEO); local
    [all...]
  /external/chromium/net/spdy/
spdy_stream_unittest.cc 34 TestSpdyStreamDelegate(SpdyStream* stream,
37 : stream_(stream),
213 scoped_refptr<SpdyStream> stream; local
216 session->CreateStream(url, LOWEST, &stream, BoundNetLog(), NULL));
222 new TestSpdyStreamDelegate(stream.get(), buf.get(), &callback));
223 stream->SetDelegate(delegate.get());
225 EXPECT_FALSE(stream->HasUrl());
233 stream->set_spdy_headers(headers);
234 EXPECT_TRUE(stream->HasUrl());
235 EXPECT_EQ(kStreamUrl, stream->GetUrl().spec())
259 scoped_refptr<SpdyStream> stream = new SpdyStream(spdy_session, local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcpassthroughrender.cc 36 << "" << func << " - Failed to find stream: " << id
86 PassthroughStream* stream = stream_render_map_.begin()->second; local
88 delete stream;
98 // Stream already exist.
100 LOG(LS_ERROR) << "AddIncomingRenderStream - Stream already exists: "
105 PassthroughStream* stream = new PassthroughStream(stream_id); local
106 // Store the stream
107 stream_render_map_[stream_id] = stream;
108 return stream;
114 PassthroughStream* stream = FindStream(stream_id) local
128 PassthroughStream* stream = FindStream(stream_id); local
147 PassthroughStream* stream = FindStream(stream_id); local
157 PassthroughStream* stream = FindStream(stream_id); local
    [all...]
  /external/llvm/include/llvm/Support/
circular_raw_ostream.h 24 /// underlying stream if specified with a buffer of zero.
28 /// TAKE_OWNERSHIP - Tell this stream that it owns the underlying
29 /// stream and is responsible for cleanup, memory management
34 /// REFERENCE_ONLY - Tell this stream it should not manage the
35 /// held stream.
40 /// TheStream - The real stream we output to. We set it to be
46 /// stream?
72 /// flushBuffer - Dump the contents of the buffer to Stream.
86 /// current_pos - Return the current position within the stream,
97 /// circular-buffered stream, handing it an underlying stream t
    [all...]
  /libcore/luni/src/main/java/java/io/
DataOutputStream.java 27 * Typically, this stream can be read in by DataInputStream. Types that can be
43 * {@code out}. Note that data written by this stream is not in a human
48 * the target stream for writing.
55 * Flushes this stream to ensure all pending data is sent out to the target
56 * stream. This implementation then also flushes the target stream.
59 * if an error occurs attempting to flush this stream.
67 * Returns the total number of bytes written to the target stream so far.
69 * @return the number of bytes written to the target stream.
80 * {@code offset} to the target stream
    [all...]

Completed in 849 milliseconds

<<11121314151617181920>>