/third_party/libuv/src/win/ |
H A D | internal.h | 271 int* namelen,
|
/third_party/nghttp2/src/ |
H A D | h2load.h | 452 void on_header(int32_t stream_id, const uint8_t *name, size_t namelen,
|
H A D | shrpx_downstream_test.cc | 112 return HeaderRef(StringRef{nv.name, nv.namelen}, in test_downstream_crumble_request_cookie()
|
H A D | shrpx_http2_upstream.cc | 742 make_string_ref(promised_balloc, StringRef{nv.name, nv.namelen}); in on_frame_send_callback() 746 auto token = http2::lookup_token(nv.name, nv.namelen); in on_frame_send_callback() 2030 ss << TTY_HTTP_HD << StringRef{nv.name, nv.namelen} << TTY_RST << ": " in log_response_headers() 2239 ss << TTY_HTTP_HD << StringRef{nv.name, nv.namelen} << TTY_RST << ": " in submit_push_promise()
|
/third_party/node/deps/uv/src/unix/ |
H A D | internal.h | 334 int* namelen);
|
H A D | core.c | 1506 int* namelen) { in uv__getsockpeername() 1516 socklen = (socklen_t) *namelen; in uv__getsockpeername() 1521 *namelen = (int) socklen; in uv__getsockpeername() 1503 uv__getsockpeername(const uv_handle_t* handle, uv__peersockfunc func, struct sockaddr* name, int* namelen) uv__getsockpeername() argument
|
/third_party/node/deps/uv/src/win/ |
H A D | internal.h | 279 int* namelen,
|
/third_party/rust/crates/libc/src/unix/linux_like/linux/gnu/b32/ |
H A D | mod.rs | 323 namelen: ::c_int, in sysctl()
|
/third_party/node/deps/ngtcp2/nghttp3/lib/ |
H A D | nghttp3_http.c | 1461 if (!(nv->namelen == 7 && nv->name[6] == 'd' && in nghttp3_http_record_request_method() 1462 memcmp(":metho", nv->name, nv->namelen - 1) == 0)) { in nghttp3_http_record_request_method()
|
/third_party/node/deps/openssl/openssl/crypto/evp/ |
H A D | evp_lib.c | 1137 int EVP_PKEY_CTX_get_group_name(EVP_PKEY_CTX *ctx, char *name, size_t namelen) in EVP_PKEY_CTX_get_group_name() argument 1153 name, namelen); in EVP_PKEY_CTX_get_group_name()
|
/third_party/rust/crates/libc/src/windows/ |
H A D | mod.rs | 529 pub fn bind(s: SOCKET, name: *const ::sockaddr, namelen: ::c_int) -> ::c_int; in bind() 530 pub fn connect(s: SOCKET, name: *const ::sockaddr, namelen: ::c_int) -> ::c_int; in connect()
|
/third_party/python/Python/ |
H A D | traceback.c | 302 _Py_FindSourceFile(PyObject *filename, char* namebuf, size_t namelen, PyObject *io) in _Py_FindSourceFile() argument 354 if (len + 1 + (Py_ssize_t)taillen >= (Py_ssize_t)namelen - 1) { in _Py_FindSourceFile()
|
/third_party/openssl/crypto/evp/ |
H A D | evp_lib.c | 1137 int EVP_PKEY_CTX_get_group_name(EVP_PKEY_CTX *ctx, char *name, size_t namelen) in EVP_PKEY_CTX_get_group_name() argument 1153 name, namelen); in EVP_PKEY_CTX_get_group_name()
|
/third_party/libuv/src/unix/ |
H A D | linux.c | 2054 size_t namelen = strlen(ent->ifa_name); in uv_interface_addresses() local 2056 if (strncmp(address->name, ent->ifa_name, namelen) == 0 && in uv_interface_addresses() 2057 (address->name[namelen] == 0 || address->name[namelen] == ':')) { in uv_interface_addresses()
|
H A D | internal.h | 460 int* namelen);
|
/third_party/libuv/include/uv_ndk/ |
H A D | uv.h | 574 int* namelen); 577 int* namelen); 680 int* namelen); 683 int* namelen);
|
/third_party/lwip/src/core/ipv4/ |
H A D | dhcp.c | 1543 size_t namelen = strlen(netif->hostname); local 1544 if (namelen > 0) { 1550 LWIP_ASSERT("DHCP: hostname is too long!", namelen <= available); 1551 len = LWIP_MIN(namelen, available);
|
/third_party/mksh/ |
H A D | var.c | 744 size_t namelen = strlen(vp->name); in exportprep() local 748 vp->type = namelen + 1; in exportprep() 752 memcpy(vp->val.s, vp->name, namelen); in exportprep() 753 vp->val.s[namelen] = '='; in exportprep()
|
/third_party/node/deps/openssl/openssl/ssl/statem/ |
H A D | statem_lib.c | 2363 int namelen; in construct_ca_names() local 2366 || (namelen = i2d_X509_NAME(name, NULL)) < 0 in construct_ca_names() 2367 || !WPACKET_sub_allocate_bytes_u16(pkt, namelen, in construct_ca_names() 2369 || i2d_X509_NAME(name, &namebytes) != namelen) { in construct_ca_names()
|
/third_party/node/deps/uv/include/ |
H A D | uv.h | 586 int* namelen); 589 int* namelen); 692 int* namelen); 695 int* namelen);
|
/third_party/openssl/ssl/statem/ |
H A D | statem_lib.c | 2328 int namelen; in construct_ca_names() local 2331 || (namelen = i2d_X509_NAME(name, NULL)) < 0 in construct_ca_names() 2332 || !WPACKET_sub_allocate_bytes_u16(pkt, namelen, in construct_ca_names() 2334 || i2d_X509_NAME(name, &namebytes) != namelen) { in construct_ca_names()
|
/third_party/alsa-utils/aplay/ |
H A D | aplay.c | 3144 static int new_capture_file(char *name, char *namebuf, size_t namelen, argument 3159 if (mystrftime(namebuf, namelen, name, tmp, filecount+1) == 0) { 3182 snprintf(namebuf, namelen, "%s-01.%s", buf, s); 3184 snprintf(namebuf, namelen, "%s-01", buf); 3192 snprintf(namebuf, namelen, "%s-%02i.%s", buf, filecount, s); 3194 snprintf(namebuf, namelen, "%s-%02i", buf, filecount);
|
/third_party/libuv/include/uv/ |
H A D | win.h | 150 int namelen,
|
/third_party/libwebsockets/lib/tls/mbedtls/wrapper/include/openssl/ |
H A D | ssl.h | 1557 * @param namelen - the length of the hostname, or 0 if NUL terminated
1562 const char *name, size_t namelen);
|
/third_party/node/deps/ngtcp2/nghttp3/lib/includes/nghttp3/ |
H A D | nghttp3.h | 741 * :member:`namelen` is the length of the |name|, excluding 744 size_t namelen; member
|