Home
last modified time | relevance | path

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

1234567

/dports/www/libnghttp2/nghttp2-1.46.0/doc/
H A Dnghttp2_submit_altsvc.rst10 …ssion, uint8_t flags, int32_t stream_id, const uint8_t *origin, size_t origin_len, const uint8_t *…
22 associated with. The *origin_len* is the length of the origin. If
24 not zero, the origin must be empty (in other words, *origin_len*
39 The sum of *origin_len* and *field_value_len* is larger than
40 16382; or *origin_len* is 0 while *stream_id* is 0; or
41 *origin_len* is not 0 while *stream_id* is not 0.
/dports/www/nghttp2/nghttp2-1.46.0/doc/
H A Dnghttp2_submit_altsvc.rst10 …ssion, uint8_t flags, int32_t stream_id, const uint8_t *origin, size_t origin_len, const uint8_t *…
22 associated with. The *origin_len* is the length of the origin. If
24 not zero, the origin must be empty (in other words, *origin_len*
39 The sum of *origin_len* and *field_value_len* is larger than
40 16382; or *origin_len* is 0 while *stream_id* is 0; or
41 *origin_len* is not 0 while *stream_id* is not 0.
/dports/dns/mydns-ng/mydns-1.2.8.31/src/mydns/
H A Ddata.c63 register int origin_len = strlen(soa->origin); in find_soa() local
64 register int len = strlen(fqdn) - origin_len - 1; in find_soa()
66 if (origin_len == 1) in find_soa()
109 register int origin_len = strlen(soa->origin); in find_soa2() local
110 register int len = strlen(fqdn) - origin_len - 1; in find_soa2()
112 if (origin_len == 1) in find_soa2()
/dports/databases/sqlitebrowser/sqlitebrowser-3.12.1/libs/qscintilla/Qt4Qt5/
H A Dqsciapis.cpp334 origin_len = 0; in positionOrigin()
340 if (origin_len > 0) in positionOrigin()
350 origin_len = path.length(); in positionOrigin()
355 fixed.truncate(origin_len); in positionOrigin()
391 origin_len = 0; in positionOrigin()
394 if (origin_len == 0) in positionOrigin()
428 if (origin_len > 0) in updateAutoCompletionList()
581 origin_len = 0; in autoCompletionSelected()
595 origin_len = 0; in autoCompletionSelected()
611 origin_len = owords.length(); in autoCompletionSelected()
[all …]
/dports/devel/qscintilla2-qt5/QScintilla_src-2.13.0/src/
H A Dqsciapis.cpp336 origin_len = 0; in positionOrigin()
342 if (origin_len > 0) in positionOrigin()
352 origin_len = path.length(); in positionOrigin()
357 fixed.truncate(origin_len); in positionOrigin()
393 origin_len = 0; in positionOrigin()
396 if (origin_len == 0) in positionOrigin()
430 if (origin_len > 0) in updateAutoCompletionList()
583 origin_len = 0; in autoCompletionSelected()
597 origin_len = 0; in autoCompletionSelected()
607 origin_len = owords.length(); in autoCompletionSelected()
[all …]
/dports/devel/qscintilla2-designerplugin-qt5/QScintilla_src-2.13.0/src/
H A Dqsciapis.cpp336 origin_len = 0; in positionOrigin()
342 if (origin_len > 0) in positionOrigin()
352 origin_len = path.length(); in positionOrigin()
357 fixed.truncate(origin_len); in positionOrigin()
393 origin_len = 0; in positionOrigin()
396 if (origin_len == 0) in positionOrigin()
430 if (origin_len > 0) in updateAutoCompletionList()
583 origin_len = 0; in autoCompletionSelected()
597 origin_len = 0; in autoCompletionSelected()
607 origin_len = owords.length(); in autoCompletionSelected()
[all …]
/dports/devel/py-qt5-qscintilla2/QScintilla_src-2.13.0/src/
H A Dqsciapis.cpp336 origin_len = 0; in positionOrigin()
342 if (origin_len > 0) in positionOrigin()
352 origin_len = path.length(); in positionOrigin()
357 fixed.truncate(origin_len); in positionOrigin()
393 origin_len = 0; in positionOrigin()
396 if (origin_len == 0) in positionOrigin()
430 if (origin_len > 0) in updateAutoCompletionList()
583 origin_len = 0; in autoCompletionSelected()
597 origin_len = 0; in autoCompletionSelected()
607 origin_len = owords.length(); in autoCompletionSelected()
[all …]
/dports/devel/cargo-c/cargo-c-0.9.6+cargo-0.58/cargo-crates/libnghttp2-sys-0.1.7+1.45.0/nghttp2/lib/
H A Dnghttp2_submit.c501 size_t origin_len, const uint8_t *field_value, in nghttp2_submit_altsvc() argument
519 if (2 + origin_len + field_value_len > NGHTTP2_MAX_PAYLOADLEN) { in nghttp2_submit_altsvc()
524 if (origin_len == 0) { in nghttp2_submit_altsvc()
527 } else if (origin_len != 0) { in nghttp2_submit_altsvc()
531 buf = nghttp2_mem_malloc(mem, origin_len + field_value_len + 2); in nghttp2_submit_altsvc()
539 if (origin_len) { in nghttp2_submit_altsvc()
540 p = nghttp2_cpymem(p, origin, origin_len); in nghttp2_submit_altsvc()
565 nghttp2_frame_altsvc_init(&frame->ext, stream_id, origin_copy, origin_len, in nghttp2_submit_altsvc()
605 len += ov[i].origin_len; in nghttp2_submit_origin()
623 ov_copy[i].origin_len = ov[i].origin_len; in nghttp2_submit_origin()
[all …]
H A Dnghttp2_frame.c200 uint8_t *origin, size_t origin_len, in nghttp2_frame_altsvc_init() argument
209 altsvc->origin_len = origin_len; in nghttp2_frame_altsvc_init()
233 payloadlen += 2 + ov[i].origin_len; in nghttp2_frame_origin_init()
716 2 + altsvc->origin_len + altsvc->field_value_len); in nghttp2_frame_pack_altsvc()
722 nghttp2_put_uint16be(buf->last, (uint16_t)altsvc->origin_len); in nghttp2_frame_pack_altsvc()
747 p += origin_len; in nghttp2_frame_unpack_altsvc_payload()
749 altsvc->origin_len = origin_len; in nghttp2_frame_unpack_altsvc_payload()
759 size_t origin_len; in nghttp2_frame_unpack_altsvc_payload2() local
765 origin_len = nghttp2_get_uint16(payload); in nghttp2_frame_unpack_altsvc_payload2()
799 nghttp2_put_uint16be(buf->last, (uint16_t)orig->origin_len); in nghttp2_frame_pack_origin()
[all …]
/dports/devel/cmake-gui/cmake-3.22.1/Utilities/cmnghttp2/lib/
H A Dnghttp2_submit.c491 size_t origin_len, const uint8_t *field_value, in nghttp2_submit_altsvc() argument
509 if (2 + origin_len + field_value_len > NGHTTP2_MAX_PAYLOADLEN) { in nghttp2_submit_altsvc()
514 if (origin_len == 0) { in nghttp2_submit_altsvc()
517 } else if (origin_len != 0) { in nghttp2_submit_altsvc()
521 buf = nghttp2_mem_malloc(mem, origin_len + field_value_len + 2); in nghttp2_submit_altsvc()
529 if (origin_len) { in nghttp2_submit_altsvc()
530 p = nghttp2_cpymem(p, origin, origin_len); in nghttp2_submit_altsvc()
555 nghttp2_frame_altsvc_init(&frame->ext, stream_id, origin_copy, origin_len, in nghttp2_submit_altsvc()
595 len += ov[i].origin_len; in nghttp2_submit_origin()
613 ov_copy[i].origin_len = ov[i].origin_len; in nghttp2_submit_origin()
[all …]
H A Dnghttp2_frame.c200 uint8_t *origin, size_t origin_len, in nghttp2_frame_altsvc_init() argument
209 altsvc->origin_len = origin_len; in nghttp2_frame_altsvc_init()
233 payloadlen += 2 + ov[i].origin_len; in nghttp2_frame_origin_init()
716 2 + altsvc->origin_len + altsvc->field_value_len); in nghttp2_frame_pack_altsvc()
722 nghttp2_put_uint16be(buf->last, (uint16_t)altsvc->origin_len); in nghttp2_frame_pack_altsvc()
747 p += origin_len; in nghttp2_frame_unpack_altsvc_payload()
749 altsvc->origin_len = origin_len; in nghttp2_frame_unpack_altsvc_payload()
759 size_t origin_len; in nghttp2_frame_unpack_altsvc_payload2() local
765 origin_len = nghttp2_get_uint16(payload); in nghttp2_frame_unpack_altsvc_payload2()
799 nghttp2_put_uint16be(buf->last, (uint16_t)orig->origin_len); in nghttp2_frame_pack_origin()
[all …]
/dports/devel/cmake-doc/cmake-3.22.1/Utilities/cmnghttp2/lib/
H A Dnghttp2_submit.c491 size_t origin_len, const uint8_t *field_value, in nghttp2_submit_altsvc() argument
509 if (2 + origin_len + field_value_len > NGHTTP2_MAX_PAYLOADLEN) { in nghttp2_submit_altsvc()
514 if (origin_len == 0) { in nghttp2_submit_altsvc()
517 } else if (origin_len != 0) { in nghttp2_submit_altsvc()
521 buf = nghttp2_mem_malloc(mem, origin_len + field_value_len + 2); in nghttp2_submit_altsvc()
529 if (origin_len) { in nghttp2_submit_altsvc()
530 p = nghttp2_cpymem(p, origin, origin_len); in nghttp2_submit_altsvc()
555 nghttp2_frame_altsvc_init(&frame->ext, stream_id, origin_copy, origin_len, in nghttp2_submit_altsvc()
595 len += ov[i].origin_len; in nghttp2_submit_origin()
613 ov_copy[i].origin_len = ov[i].origin_len; in nghttp2_submit_origin()
[all …]
H A Dnghttp2_frame.c200 uint8_t *origin, size_t origin_len, in nghttp2_frame_altsvc_init() argument
209 altsvc->origin_len = origin_len; in nghttp2_frame_altsvc_init()
233 payloadlen += 2 + ov[i].origin_len; in nghttp2_frame_origin_init()
716 2 + altsvc->origin_len + altsvc->field_value_len); in nghttp2_frame_pack_altsvc()
722 nghttp2_put_uint16be(buf->last, (uint16_t)altsvc->origin_len); in nghttp2_frame_pack_altsvc()
747 p += origin_len; in nghttp2_frame_unpack_altsvc_payload()
749 altsvc->origin_len = origin_len; in nghttp2_frame_unpack_altsvc_payload()
759 size_t origin_len; in nghttp2_frame_unpack_altsvc_payload2() local
765 origin_len = nghttp2_get_uint16(payload); in nghttp2_frame_unpack_altsvc_payload2()
799 nghttp2_put_uint16be(buf->last, (uint16_t)orig->origin_len); in nghttp2_frame_pack_origin()
[all …]
/dports/net/proby/proby-1.0.2/cargo-crates/libnghttp2-sys-0.1.4+1.41.0/nghttp2/lib/
H A Dnghttp2_submit.c501 size_t origin_len, const uint8_t *field_value, in nghttp2_submit_altsvc() argument
519 if (2 + origin_len + field_value_len > NGHTTP2_MAX_PAYLOADLEN) { in nghttp2_submit_altsvc()
524 if (origin_len == 0) { in nghttp2_submit_altsvc()
527 } else if (origin_len != 0) { in nghttp2_submit_altsvc()
531 buf = nghttp2_mem_malloc(mem, origin_len + field_value_len + 2); in nghttp2_submit_altsvc()
539 if (origin_len) { in nghttp2_submit_altsvc()
540 p = nghttp2_cpymem(p, origin, origin_len); in nghttp2_submit_altsvc()
565 nghttp2_frame_altsvc_init(&frame->ext, stream_id, origin_copy, origin_len, in nghttp2_submit_altsvc()
605 len += ov[i].origin_len; in nghttp2_submit_origin()
623 ov_copy[i].origin_len = ov[i].origin_len; in nghttp2_submit_origin()
[all …]
H A Dnghttp2_frame.c200 uint8_t *origin, size_t origin_len, in nghttp2_frame_altsvc_init() argument
209 altsvc->origin_len = origin_len; in nghttp2_frame_altsvc_init()
233 payloadlen += 2 + ov[i].origin_len; in nghttp2_frame_origin_init()
716 2 + altsvc->origin_len + altsvc->field_value_len); in nghttp2_frame_pack_altsvc()
722 nghttp2_put_uint16be(buf->last, (uint16_t)altsvc->origin_len); in nghttp2_frame_pack_altsvc()
747 p += origin_len; in nghttp2_frame_unpack_altsvc_payload()
749 altsvc->origin_len = origin_len; in nghttp2_frame_unpack_altsvc_payload()
759 size_t origin_len; in nghttp2_frame_unpack_altsvc_payload2() local
765 origin_len = nghttp2_get_uint16(payload); in nghttp2_frame_unpack_altsvc_payload2()
799 nghttp2_put_uint16be(buf->last, (uint16_t)orig->origin_len); in nghttp2_frame_pack_origin()
[all …]
/dports/devel/cargo-generate/cargo-generate-0.9.0/cargo-crates/libnghttp2-sys-0.1.6+1.43.0/nghttp2/lib/
H A Dnghttp2_submit.c501 size_t origin_len, const uint8_t *field_value, in nghttp2_submit_altsvc() argument
519 if (2 + origin_len + field_value_len > NGHTTP2_MAX_PAYLOADLEN) { in nghttp2_submit_altsvc()
524 if (origin_len == 0) { in nghttp2_submit_altsvc()
527 } else if (origin_len != 0) { in nghttp2_submit_altsvc()
531 buf = nghttp2_mem_malloc(mem, origin_len + field_value_len + 2); in nghttp2_submit_altsvc()
539 if (origin_len) { in nghttp2_submit_altsvc()
540 p = nghttp2_cpymem(p, origin, origin_len); in nghttp2_submit_altsvc()
565 nghttp2_frame_altsvc_init(&frame->ext, stream_id, origin_copy, origin_len, in nghttp2_submit_altsvc()
605 len += ov[i].origin_len; in nghttp2_submit_origin()
623 ov_copy[i].origin_len = ov[i].origin_len; in nghttp2_submit_origin()
[all …]
H A Dnghttp2_frame.c200 uint8_t *origin, size_t origin_len, in nghttp2_frame_altsvc_init() argument
209 altsvc->origin_len = origin_len; in nghttp2_frame_altsvc_init()
233 payloadlen += 2 + ov[i].origin_len; in nghttp2_frame_origin_init()
716 2 + altsvc->origin_len + altsvc->field_value_len); in nghttp2_frame_pack_altsvc()
722 nghttp2_put_uint16be(buf->last, (uint16_t)altsvc->origin_len); in nghttp2_frame_pack_altsvc()
747 p += origin_len; in nghttp2_frame_unpack_altsvc_payload()
749 altsvc->origin_len = origin_len; in nghttp2_frame_unpack_altsvc_payload()
759 size_t origin_len; in nghttp2_frame_unpack_altsvc_payload2() local
765 origin_len = nghttp2_get_uint16(payload); in nghttp2_frame_unpack_altsvc_payload2()
799 nghttp2_put_uint16be(buf->last, (uint16_t)orig->origin_len); in nghttp2_frame_pack_origin()
[all …]
/dports/devel/cmake/cmake-3.22.1/Utilities/cmnghttp2/lib/
H A Dnghttp2_submit.c491 size_t origin_len, const uint8_t *field_value, in nghttp2_submit_altsvc() argument
509 if (2 + origin_len + field_value_len > NGHTTP2_MAX_PAYLOADLEN) { in nghttp2_submit_altsvc()
514 if (origin_len == 0) { in nghttp2_submit_altsvc()
517 } else if (origin_len != 0) { in nghttp2_submit_altsvc()
521 buf = nghttp2_mem_malloc(mem, origin_len + field_value_len + 2); in nghttp2_submit_altsvc()
529 if (origin_len) { in nghttp2_submit_altsvc()
530 p = nghttp2_cpymem(p, origin, origin_len); in nghttp2_submit_altsvc()
555 nghttp2_frame_altsvc_init(&frame->ext, stream_id, origin_copy, origin_len, in nghttp2_submit_altsvc()
595 len += ov[i].origin_len; in nghttp2_submit_origin()
613 ov_copy[i].origin_len = ov[i].origin_len; in nghttp2_submit_origin()
[all …]
H A Dnghttp2_frame.c200 uint8_t *origin, size_t origin_len, in nghttp2_frame_altsvc_init() argument
209 altsvc->origin_len = origin_len; in nghttp2_frame_altsvc_init()
233 payloadlen += 2 + ov[i].origin_len; in nghttp2_frame_origin_init()
716 2 + altsvc->origin_len + altsvc->field_value_len); in nghttp2_frame_pack_altsvc()
722 nghttp2_put_uint16be(buf->last, (uint16_t)altsvc->origin_len); in nghttp2_frame_pack_altsvc()
747 p += origin_len; in nghttp2_frame_unpack_altsvc_payload()
749 altsvc->origin_len = origin_len; in nghttp2_frame_unpack_altsvc_payload()
759 size_t origin_len; in nghttp2_frame_unpack_altsvc_payload2() local
765 origin_len = nghttp2_get_uint16(payload); in nghttp2_frame_unpack_altsvc_payload2()
799 nghttp2_put_uint16be(buf->last, (uint16_t)orig->origin_len); in nghttp2_frame_pack_origin()
[all …]
/dports/www/libnghttp2/nghttp2-1.46.0/lib/
H A Dnghttp2_submit.c501 size_t origin_len, const uint8_t *field_value, in nghttp2_submit_altsvc() argument
519 if (2 + origin_len + field_value_len > NGHTTP2_MAX_PAYLOADLEN) { in nghttp2_submit_altsvc()
524 if (origin_len == 0) { in nghttp2_submit_altsvc()
527 } else if (origin_len != 0) { in nghttp2_submit_altsvc()
531 buf = nghttp2_mem_malloc(mem, origin_len + field_value_len + 2); in nghttp2_submit_altsvc()
539 if (origin_len) { in nghttp2_submit_altsvc()
540 p = nghttp2_cpymem(p, origin, origin_len); in nghttp2_submit_altsvc()
565 nghttp2_frame_altsvc_init(&frame->ext, stream_id, origin_copy, origin_len, in nghttp2_submit_altsvc()
605 len += ov[i].origin_len; in nghttp2_submit_origin()
623 ov_copy[i].origin_len = ov[i].origin_len; in nghttp2_submit_origin()
[all …]
/dports/lang/rust/rustc-1.58.1-src/vendor/libnghttp2-sys/nghttp2/lib/
H A Dnghttp2_submit.c501 size_t origin_len, const uint8_t *field_value, in nghttp2_submit_altsvc() argument
519 if (2 + origin_len + field_value_len > NGHTTP2_MAX_PAYLOADLEN) { in nghttp2_submit_altsvc()
524 if (origin_len == 0) { in nghttp2_submit_altsvc()
527 } else if (origin_len != 0) { in nghttp2_submit_altsvc()
531 buf = nghttp2_mem_malloc(mem, origin_len + field_value_len + 2); in nghttp2_submit_altsvc()
539 if (origin_len) { in nghttp2_submit_altsvc()
540 p = nghttp2_cpymem(p, origin, origin_len); in nghttp2_submit_altsvc()
565 nghttp2_frame_altsvc_init(&frame->ext, stream_id, origin_copy, origin_len, in nghttp2_submit_altsvc()
605 len += ov[i].origin_len; in nghttp2_submit_origin()
623 ov_copy[i].origin_len = ov[i].origin_len; in nghttp2_submit_origin()
[all …]
/dports/www/nghttp2/nghttp2-1.46.0/lib/
H A Dnghttp2_submit.c501 size_t origin_len, const uint8_t *field_value, in nghttp2_submit_altsvc() argument
519 if (2 + origin_len + field_value_len > NGHTTP2_MAX_PAYLOADLEN) { in nghttp2_submit_altsvc()
524 if (origin_len == 0) { in nghttp2_submit_altsvc()
527 } else if (origin_len != 0) { in nghttp2_submit_altsvc()
531 buf = nghttp2_mem_malloc(mem, origin_len + field_value_len + 2); in nghttp2_submit_altsvc()
539 if (origin_len) { in nghttp2_submit_altsvc()
540 p = nghttp2_cpymem(p, origin, origin_len); in nghttp2_submit_altsvc()
565 nghttp2_frame_altsvc_init(&frame->ext, stream_id, origin_copy, origin_len, in nghttp2_submit_altsvc()
605 len += ov[i].origin_len; in nghttp2_submit_origin()
623 ov_copy[i].origin_len = ov[i].origin_len; in nghttp2_submit_origin()
[all …]
/dports/www/node10/node-v10.24.1/deps/nghttp2/lib/
H A Dnghttp2_submit.c501 size_t origin_len, const uint8_t *field_value, in nghttp2_submit_altsvc() argument
519 if (2 + origin_len + field_value_len > NGHTTP2_MAX_PAYLOADLEN) { in nghttp2_submit_altsvc()
524 if (origin_len == 0) { in nghttp2_submit_altsvc()
527 } else if (origin_len != 0) { in nghttp2_submit_altsvc()
531 buf = nghttp2_mem_malloc(mem, origin_len + field_value_len + 2); in nghttp2_submit_altsvc()
539 if (origin_len) { in nghttp2_submit_altsvc()
540 p = nghttp2_cpymem(p, origin, origin_len); in nghttp2_submit_altsvc()
565 nghttp2_frame_altsvc_init(&frame->ext, stream_id, origin_copy, origin_len, in nghttp2_submit_altsvc()
605 len += ov[i].origin_len; in nghttp2_submit_origin()
623 ov_copy[i].origin_len = ov[i].origin_len; in nghttp2_submit_origin()
[all …]
/dports/ports-mgmt/parfetch-overlay/parfetch-0.1.0/libias/
H A Ddiffutil.c160 size_t origin_len = 0; in diff_to_patch() local
168 origin_len++; in diff_to_patch()
172 origin_len++; in diff_to_patch()
182 if (origin_len > 1) { in diff_to_patch()
183 buf = str_printf(pool, "%s@@ -%zu,%zu", color_context, origin_start, origin_len); in diff_to_patch()
/dports/ports-mgmt/portfmt/portfmt-1.1.0/libias/
H A Ddiffutil.c159 size_t origin_len = 0; in diff_to_patch() local
167 origin_len++; in diff_to_patch()
171 origin_len++; in diff_to_patch()
181 if (origin_len > 1) { in diff_to_patch()
182 buf = str_printf(pool, "%s@@ -%zu,%zu", color_context, origin_start, origin_len); in diff_to_patch()

1234567