/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/quic/ |
H A D | mod.rs | 157 self.close(false, 0x1, b"verify server cert failed") 173 self.close(false, 0x1, b"fail").ok();
|
/commonlibrary/rust/ylong_http/ylong_http/src/h2/ |
H A D | decoder.rs | 1444 stream_id: 0x1, in ut_decode_priority_payload() 1446 let priority_payload = &[0x80, 0x0, 0x0, 0x1, 0x20]; in ut_decode_priority_payload() 1495 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x2, b'd', b'e', b'b', b'u', b'g', in ut_decode_goaway_payload() 1537 stream_id: 0x1, in ut_decode_window_update_payload() 1539 let window_update_payload = &[0x0, 0x0, 0x0, 0x1]; in ut_decode_window_update_payload() 1581 stream_id: 0x1, in ut_decode_reset_payload() 1583 let reset_payload = &[0x0, 0x0, 0x0, 0x1]; in ut_decode_reset_payload() 1657 // For this, we should set the ACK flag (0x1) and the payload length should be in ut_decode_settings_payload() 1662 flags: 0x1, in ut_decode_settings_payload() 1713 stream_id: 0x1, in ut_decode_push_promise_payload() [all...] |
H A D | frame.rs | 48 pub(crate) const ACK_MASK: u8 = 0x1; 66 Headers = 0x1, 396 FrameFlags::new(0x1), in ack() 594 Frame::new(0, FrameFlags::new(0x1), Payload::Ping(ping)) in ack()
|
H A D | encoder.rs | 981 Setting::HeaderTableSize(v) => (0x1, *v), in iterate_settings_payload() 1400 assert_eq!(buf[3], 0x1); in ut_headers_frame_encoding() 1453 Setting::HeaderTableSize(v) => (0x1, *v), in ut_settings_frame_encoding() 1957 assert_eq!(result[4], 0x1); in encode_small_frame() 2004 assert_eq!(result[4 + 10 * (9 + 100)], 0x1); in ut_encode_large_data_frame()
|
/commonlibrary/rust/ylong_http/ylong_http/src/h3/ |
H A D | frame.rs | 19 pub const HEADERS_FRAME_TYPE: u64 = 0x1; 31 pub const SETTING_QPACK_MAX_TABLE_CAPACITY: u64 = 0x1;
|
H A D | stream.rs | 21 pub const PUSH_STREAM_TYPE: u8 = 0x1;
|
H A D | decoder.rs | 762 0x1 => StreamType::Push, in decode_type() 786 0x0, 0x4, 0x15, 0x6, 0x80, 0x1, 0x0, 0x0, 0xF5, 0xEF, 0x9, 0x12, 0x8C, 0xC, 0x8E, 0x72, in ut_decode_stream_control_with_setting() 817 0x1, 0x40, 0x72, 0x0, 0x0, 0xD9, 0x56, 0x96, 0xC3, 0x61, 0xBE, 0x94, 0xB, 0xCA, 0x6A, in ut_decode_stream_request_with_header() 832 assert_eq!(*frame.frame_type(), 0x1); in ut_decode_stream_request_with_header()
|
/commonlibrary/rust/ylong_http/ylong_http/src/huffman/ |
H A D | mod.rs | 138 // `Flags` contains three bits: `MAYBE_EOS`(0x1), `DECODED`(0x2), `ERROR`(0x4). 163 if state != 0 && (flags & 0x1) == 0 { 233 if self.state != 0 && (self.flags & 0x1) == 0 {
|
/commonlibrary/c_utils/base/test/unittest/common/ |
H A D | utils_parcel_test.cpp | 377 bool x1 = true; in ReadvecTestTwoFunc01() local 378 val1.push_back(x1); in ReadvecTestTwoFunc01() 412 int64_t x1 = 1; in ReadvecTestTwoFunc02() local 413 val1.push_back(x1); in ReadvecTestTwoFunc02() 447 uint64_t x1 = 1; in ReadvecTestTwoFunc03() local 448 val1.push_back(x1); in ReadvecTestTwoFunc03() 501 bool x1 = true; in ReadvecTestThreeFunc01() local 502 val1.push_back(x1); in ReadvecTestThreeFunc01() 536 int64_t x1 = 1; in ReadvecTestThreeFunc02() local 537 val1.push_back(x1); in ReadvecTestThreeFunc02() 571 uint64_t x1 = 1; ReadvecTestThreeFunc03() local 627 bool x1 = true; WritevecTestOneFunc01() local 666 int64_t x1 = 1; WritevecTestOneFunc02() local 705 uint64_t x1 = 1; WritevecTestOneFunc03() local [all...] |
/commonlibrary/ets_utils/js_util_module/util/ |
H A D | js_uuid.h | 42 HEX_ONE_FLG = 0x1,
|
H A D | js_textdecoder.h | 43 FLUSH_FLG = 0x1,
|
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/util/ |
H A D | bit.rs | 288 mask: 0x1, in ut_mask_new_bit32() 481 mask: 0x1, in ut_mask_new_bit64() 895 assert_eq!(bit.get_by_mask(Mask::new(1, 0)), 0x1); in ut_bit_get_by_mask_bit32() 943 assert_eq!(bit.get_by_mask(Mask::new(1, 0)), 0x1); in ut_bit_get_by_mask_bit64()
|
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/h2/ |
H A D | manager.rs | 363 FrameFlags::new(0x1), in recv_settings_frame()
|