Searched defs:eos (Results 1 - 25 of 28) sorted by relevance

12

/external/libbrillo/brillo/streams/
H A Dinput_stream_set_unittest.cc103 bool eos = false; local
110 EXPECT_TRUE(stream_->ReadNonBlocking(IntToPtr(1000), 100, &read, &eos,
113 EXPECT_FALSE(eos);
121 EXPECT_TRUE(stream_->ReadNonBlocking(IntToPtr(1000), 100, &read, &eos,
124 EXPECT_FALSE(eos);
128 EXPECT_TRUE(stream_->ReadNonBlocking(IntToPtr(1000), 100, &read, &eos,
131 EXPECT_TRUE(eos);
H A Dopenssl_stream_bio.cc36 bool eos = false; local
37 if (!stream->ReadNonBlocking(buf, size, &read, &eos, nullptr))
40 if (read == 0 && !eos) {
H A Dmemory_stream_unittest.cc145 bool eos = false; local
150 EXPECT_TRUE(stream_->ReadNonBlocking(test_read_buffer_, 10, &read, &eos,
154 EXPECT_FALSE(eos);
159 EXPECT_TRUE(stream_->ReadNonBlocking(test_read_buffer_, 100, &read, &eos,
163 EXPECT_FALSE(eos);
168 EXPECT_TRUE(stream_->ReadNonBlocking(test_read_buffer_, 10, &read, &eos,
172 EXPECT_TRUE(eos);
H A Dfake_stream_unittest.cc36 // false when an error occurs. |*eos| is set to true when end of stream is
38 bool ReadString(size_t size_to_read, std::string* out_buffer, bool* eos) { argument
43 eos, nullptr);
107 bool eos = false; local
108 EXPECT_TRUE(ReadString(100, &data, &eos));
109 EXPECT_TRUE(eos);
117 bool eos = false; local
118 EXPECT_TRUE(ReadString(100, &data, &eos));
119 EXPECT_FALSE(eos);
122 EXPECT_TRUE(ReadString(100, &data, &eos));
131 bool eos = false; local
151 bool eos = false; local
183 bool eos = false; local
211 bool eos = false; local
[all...]
H A Dinput_stream_set.cc119 bool eos = false; local
120 if (!stream->ReadNonBlocking(buffer, size_to_read, size_read, &eos, error))
123 if (*size_read > 0 || !eos) {
H A Dfile_stream_unittest.cc403 bool eos = false; local
406 EXPECT_TRUE(stream_->ReadNonBlocking(test_read_buffer_, 100, &size, &eos,
409 EXPECT_FALSE(eos);
411 EXPECT_TRUE(stream_->ReadNonBlocking(test_read_buffer_, 0, &size, &eos,
414 EXPECT_FALSE(eos);
417 EXPECT_TRUE(stream_->ReadNonBlocking(test_read_buffer_, 100, &size, &eos,
420 EXPECT_TRUE(eos);
424 EXPECT_TRUE(stream_->ReadNonBlocking(test_read_buffer_, 100, &size, &eos,
427 EXPECT_FALSE(eos);
970 bool eos local
[all...]
H A Dstream.cc70 bool eos = false; local
71 if (!ReadNonBlocking(buffer, size_to_read, size_read, &eos, error))
74 if (*size_read > 0 || eos)
190 bool /* eos */) {
208 bool eos = false; local
209 if (!ReadNonBlocking(buffer, size_to_read, &read, &eos, error))
212 if (read > 0 || eos) {
217 success_callback, read, eos));
220 success_callback.Run(read, eos);
236 bool eos) {
233 OnReadAsyncDone( const base::Callback<void(size_t, bool)>& success_callback, size_t bytes_read, bool eos) argument
321 ReadAllAsyncCallback(void* buffer, size_t size_to_read, const base::Closure& success_callback, const ErrorCallback& error_callback, size_t size_read, bool eos) argument
[all...]
/external/boringssl/src/crypto/asn1/
H A Da_d2i_fp.c146 int eos; /* end of sequence read for indefinite encoding */ member in struct:asn1_const_ctx_st
167 int eos = 0; local
219 eos++;
220 if (eos < 0) {
225 } else if (eos && (c.slen == 0) && (c.tag == V_ASN1_EOC)) {
226 /* eos value, so go back and read another header */
227 eos--;
228 if (eos <= 0)
279 if (eos <= 0) {
/external/mesa3d/src/gallium/state_trackers/omx/
H A Dvid_dec.c480 bool eos = !!(priv->in_buffers[0]->nFlags & OMX_BUFFERFLAG_EOS); local
481 unsigned min_bits_left = eos ? 32 : MAX2(buf->nFilledLen * 8, 32);
506 if (eos && priv->frame_started)
513 } else if (eos) {
614 bool eos = !!(input->nFlags & OMX_BUFFERFLAG_EOS); local
661 if (eos && input->pInputPortPrivate)
/external/deqp/executor/
H A DxeBatchExecutor.cpp246 deUint8 eos = 0; local
247 onTestLogData(&eos, 1);
/external/elfutils/libdwfl/
H A Dcore-file.c343 const void *eos = memchr (contents, '\0', size); local
344 if (unlikely (eos == NULL) || unlikely (eos == contents))
346 size = eos + 1 - contents;
388 const void *eos = memchr (into, '\0', nread); local
389 if (unlikely (eos == NULL) || unlikely (eos == into))
395 nread = eos + 1 - into;
/external/dhcpcd-6.8.2/
H A Ddhcp-common.c800 size_t e, i, n, eos, eol; local
886 while ((eod = dgetopt(ctx, &eos, &eoc, &eol, od, ol, &oopt))) {
905 od += eos + eol;
906 ol -= eos + eol;
/external/libmojo/third_party/jinja2/
H A Dlexer.py312 eos = property(lambda x: not x, doc="Are we at the end of the stream?") variable in class:TokenStream
/external/icu/icu4c/source/common/
H A Dmessagepattern.cpp784 UBool eos=index==msg.length(); local
785 if(eos || msg.charAt(index)==u_rightCurlyBrace) {
786 if(eos==inMessageFormatPattern(nestingLevel)) {
/external/libogg/src/
H A Dframing.c776 int eos=ogg_page_eos(og); local
884 if(eos){
961 int eos=os->lacing_vals[ptr]&0x200; /* last packet of the stream? */ local
967 if(val&0x200)eos=0x200;
972 op->e_o_s=eos;
1587 /* check eos flag */
1589 fprintf(stderr,"Multiple decoded packets with eos flag!\n");
/external/libpcap/
H A Dpcap-dlpi.c851 char *eos; local
869 unit = strtol(cp, &eos, 10);
870 if (*eos != '\0') {
/external/lzma/CPP/7zip/Bundles/LzmaCon/
H A DLzmaAlone.cpp65 " -eos : write end of stream marker\n"
621 bool eos = parser[NKey::kEOS].ThereIs || stdInMode; local
664 props[7].boolVal = eos ? VARIANT_TRUE : VARIANT_FALSE;
685 if (eos || stdInMode)
/external/webrtc/webrtc/base/
H A Dhttpclient.cc40 char* eos = NULL; local
41 *val = strtoul(str.c_str(), &eos, 10);
42 return (*eos == '\0');
/external/libevent/
H A Dhttp.c4432 /* Return true if the string starting at s and ending immediately before eos
4436 scheme_ok(const char *s, const char *eos) argument
4439 EVUTIL_ASSERT(eos >= s);
4440 if (s == eos)
4444 while (++s < eos) {
4454 /* Return true iff [s..eos) is a valid userinfo */
4456 userinfo_ok(const char *s, const char *eos) argument
4458 while (s < eos) {
4463 else if (*s == '%' && s+2 < eos &&
4474 regname_ok(const char *s, const char *eos) argument
4491 parse_port(const char *s, const char *eos) argument
4509 bracket_addr_ok(const char *s, const char *eos) argument
4553 parse_authority(struct evhttp_uri *uri, char *s, char *eos) argument
[all...]
/external/annotation-tools/asmx/test/lib/
H A Dsaxon7.jarMETA-INF/ META-INF/MANIFEST.MF net/sf/saxon/Compile.class Compile.java package ...
/external/robolectric/v3/libs/
H A Dvtd-xml-2.11.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/ximpleware/ com/ximpleware/extended/ com/ximpleware/extended/parser/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
/external/robolectric/v1/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 609 milliseconds

12