Home
last modified time | relevance | path

Searched refs:is_eof (Results 1 – 25 of 25) sorted by relevance

/external/rust/crates/macaddr/src/parser/
Dmod.rs73 fn is_eof(&self) -> bool { in is_eof() method
78 if !self.is_eof() { in move_next()
84 if self.is_eof() { in peek_char()
92 if self.is_eof() { in read_char()
155 if self.is_eof() { in read_v6_addr()
179 if self.is_eof() { in read_v8_addr()
/external/llvm-project/clang/test/Analysis/Inputs/
Dno-store-suppression.h6 bool is_eof();
11 if (is.is_eof())
/external/perfetto/src/base/
Dfile_utils.cc92 const bool is_eof = res && bytes_read == 0; in ReadPlatformHandle() local
99 return is_eof || err == ERROR_BROKEN_PIPE; in ReadPlatformHandle()
/external/rust/crates/grpcio-sys/grpc/src/core/ext/transport/chttp2/transport/
Dframe_data.h73 uint32_t write_bytes, int is_eof,
Dhpack_encoder.h95 bool is_eof; member
Dhpack_parser.h94 uint8_t is_eof; member
Dframe_data.cc65 uint32_t write_bytes, int is_eof, in grpc_chttp2_encode_data() argument
79 *p++ = is_eof ? GRPC_CHTTP2_DATA_FLAG_END_STREAM : 0; in grpc_chttp2_encode_data()
Dparsing.cc326 t->hpack_parser.is_eof = static_cast<uint8_t>(is_eoh ? t->header_eof : 0); in init_skip_frame_parser()
673 t->hpack_parser.is_eof = static_cast<uint8_t>(is_eoh ? t->header_eof : 0); in init_header_frame_parser()
Dhpack_parser.cc1740 if (parser->is_eof) { in grpc_chttp2_header_parser_parse()
1757 parser->is_eof = 0xde; in grpc_chttp2_header_parser_parse()
Dhpack_encoder.cc856 st.is_end_of_stream = options->is_eof; in grpc_chttp2_encode_header()
/external/grpc-grpc/src/core/ext/transport/chttp2/transport/
Dframe_data.h75 uint32_t write_bytes, int is_eof,
Dhpack_encoder.h83 bool is_eof; member
Dhpack_parser.h87 uint8_t is_eof; member
Dframe_data.cc73 uint32_t write_bytes, int is_eof, in grpc_chttp2_encode_data() argument
87 *p++ = is_eof ? GRPC_CHTTP2_DATA_FLAG_END_STREAM : 0; in grpc_chttp2_encode_data()
Dparsing.cc331 t->hpack_parser.is_eof = static_cast<uint8_t>(is_eoh ? t->header_eof : 0); in init_skip_frame_parser()
639 t->hpack_parser.is_eof = static_cast<uint8_t>(is_eoh ? t->header_eof : 0); in init_header_frame_parser()
Dhpack_parser.cc1658 if (parser->is_eof) { in grpc_chttp2_header_parser_parse()
1676 parser->is_eof = 0xde; in grpc_chttp2_header_parser_parse()
Dhpack_encoder.cc713 finish_frame(&st, 1, options->is_eof); in grpc_chttp2_encode_header()
/external/rust/crates/serde_cbor/tests/
Dde.rs354 assert!(it.next().unwrap().unwrap_err().is_eof()); in stream_deserializer_eof()
367 assert!(it.next().unwrap().unwrap_err().is_eof()); in stream_deserializer_eof_in_indefinite()
371 assert!(it.next().unwrap().unwrap_err().is_eof()); in stream_deserializer_eof_in_indefinite()
376 assert!(it.next().unwrap().unwrap_err().is_eof()); in stream_deserializer_eof_in_indefinite()
/external/rust/crates/regex-syntax/src/ast/
Dparse.rs473 if self.is_eof() { in bump()
529 !self.is_eof() in bump_and_bump_space()
545 while !self.is_eof() { in bump_space()
552 while !self.is_eof() { in bump_space()
575 if self.is_eof() { in peek()
587 if self.is_eof() { in peek_space()
608 fn is_eof(&self) -> bool { in is_eof() method
975 if self.is_eof() { in parse_with_comments()
1124 if self.is_eof() { in parse_counted_repetition()
1148 if self.is_eof() || self.char() != '}' { in parse_counted_repetition()
[all …]
/external/brotli/c/tools/
Dbrotli.c944 BROTLI_BOOL is_eof = BROTLI_FALSE; in CompressFile() local
947 if (context->available_in == 0 && !is_eof) { in CompressFile()
949 is_eof = !HasMoreInput(context); in CompressFile()
953 is_eof ? BROTLI_OPERATION_FINISH : BROTLI_OPERATION_PROCESS, in CompressFile()
/external/rust/crates/flate2/src/gz/
Dbufread.rs487 let is_eof = reader in read() localVariable
500 if is_eof { in read()
/external/rust/crates/regex/src/
Ddfa.rs919 if b.is_eof() { in exec_byte()
988 let cache = if b.is_eof() && self.prog.matches.len() > 1 { in exec_byte()
1732 fn is_eof(&self) -> bool { in is_eof() method
1748 if self.is_eof() { in as_byte()
/external/rust/crates/serde_cbor/src/
Derror.rs177 pub fn is_eof(&self) -> bool { in is_eof() method
/external/rust/crates/serde_json/src/
Derror.rs99 pub fn is_eof(&self) -> bool { in is_eof() method
/external/grpc-grpc/test/core/end2end/fuzzers/
Dapi_fuzzer.cc318 static bool is_eof(input_stream* inp) { return inp->cur == inp->end; } in is_eof() function
722 while (!is_eof(&inp) || g_channel != nullptr || g_server != nullptr || in LLVMFuzzerTestOneInput()
725 if (is_eof(&inp)) { in LLVMFuzzerTestOneInput()