/third_party/ltp/testcases/kernel/syscalls/sendto/ |
H A D | sendto01.c | 62 int tolen; /* length of "to" buffer */ member 88 .tolen = sizeof(sin1), 102 .tolen = sizeof(sin1), 118 .tolen = sizeof(sin1), 133 .tolen = sizeof(sin2), 147 .tolen = sizeof(sin1), 161 .tolen = -1, 177 .tolen = sizeof(sin1), 192 .tolen = sizeof(sin1), 206 .tolen [all...] |
/third_party/ltp/testcases/kernel/syscalls/sendmsg/ |
H A D | sendmsg01.c | 96 int tolen; /* length of "to" buffer */ member 115 .tolen = sizeof(sin1), 132 .tolen = sizeof(sin1), 149 .tolen = sizeof(sin1), 166 .tolen = sizeof(sin2), 183 .tolen = sizeof(sin1), 200 .tolen = 1, 216 .tolen = sizeof(struct sockaddr), 232 .tolen = sizeof(sin1), 249 .tolen [all...] |
/third_party/node/deps/openssl/openssl/crypto/bn/ |
H A D | bn_lib.c | 482 int bn2binpad(const BIGNUM *a, unsigned char *to, int tolen, endianess_t endianess) in bn2binpad() argument 494 if (tolen == -1) { in bn2binpad() 495 tolen = n; in bn2binpad() 496 } else if (tolen < n) { /* uncommon/unlike case */ in bn2binpad() 501 if (tolen < n) in bn2binpad() 508 if (tolen != 0) in bn2binpad() 509 memset(to, '\0', tolen); in bn2binpad() 510 return tolen; in bn2binpad() 516 to += tolen; /* start from the end of the buffer */ in bn2binpad() 517 for (i = 0, j = 0; j < (size_t)tolen; in bn2binpad() 532 BN_bn2binpad(const BIGNUM *a, unsigned char *to, int tolen) BN_bn2binpad() argument 591 BN_bn2lebinpad(const BIGNUM *a, unsigned char *to, int tolen) BN_bn2lebinpad() argument 607 BN_bn2nativepad(const BIGNUM *a, unsigned char *to, int tolen) BN_bn2nativepad() argument [all...] |
/third_party/openssl/crypto/bn/ |
H A D | bn_lib.c | 482 int bn2binpad(const BIGNUM *a, unsigned char *to, int tolen, endianess_t endianess) in bn2binpad() argument 494 if (tolen == -1) { in bn2binpad() 495 tolen = n; in bn2binpad() 496 } else if (tolen < n) { /* uncommon/unlike case */ in bn2binpad() 501 if (tolen < n) in bn2binpad() 508 if (tolen != 0) in bn2binpad() 509 memset(to, '\0', tolen); in bn2binpad() 510 return tolen; in bn2binpad() 516 to += tolen; /* start from the end of the buffer */ in bn2binpad() 517 for (i = 0, j = 0; j < (size_t)tolen; in bn2binpad() 532 BN_bn2binpad(const BIGNUM *a, unsigned char *to, int tolen) BN_bn2binpad() argument 591 BN_bn2lebinpad(const BIGNUM *a, unsigned char *to, int tolen) BN_bn2lebinpad() argument 607 BN_bn2nativepad(const BIGNUM *a, unsigned char *to, int tolen) BN_bn2nativepad() argument [all...] |
/third_party/ltp/utils/sctp/testlib/ |
H A D | sctputil.h | 219 const struct sockaddr *to, socklen_t tolen) in test_sendto() 221 int error = sendto(sk, msg, len, flags, to, tolen); in test_sendto() 304 struct sockaddr *to, socklen_t tolen, in test_sctp_sendmsg() 309 int error = sctp_sendmsg(s, msg, len, to, tolen, ppid, flags, stream_no, in test_sctp_sendmsg() 218 test_sendto(int sk, const void *msg, size_t len, int flags, const struct sockaddr *to, socklen_t tolen) test_sendto() argument 303 test_sctp_sendmsg(int s, const void *msg, size_t len, struct sockaddr *to, socklen_t tolen, uint32_t ppid, uint32_t flags, uint16_t stream_no, uint32_t timetolive, uint32_t context) test_sctp_sendmsg() argument
|
/third_party/libwebsockets/lib/tls/openssl/ |
H A D | lws-genec.c | 77 int BN_bn2binpad(const BIGNUM *a, unsigned char *to, int tolen) in BN_bn2binpad() argument 90 if (tolen > i) { in BN_bn2binpad() 91 memset(to, 0, (size_t)(tolen - i)); in BN_bn2binpad() 92 to += tolen - i; in BN_bn2binpad() 102 return tolen; in BN_bn2binpad()
|
H A D | private-lib-tls-openssl.h | 58 int BN_bn2binpad(const BIGNUM *a, unsigned char *to, int tolen);
|
/third_party/ltp/utils/sctp/lib/ |
H A D | sendmsg.c | 33 socklen_t tolen, uint32_t ppid, uint32_t flags, in sctp_sendmsg() 43 outmsg.msg_namelen = tolen; in sctp_sendmsg() 32 sctp_sendmsg(int s, const void *msg, size_t len, struct sockaddr *to, socklen_t tolen, uint32_t ppid, uint32_t flags, uint16_t stream_no, uint32_t timetolive, uint32_t context) sctp_sendmsg() argument
|
/third_party/lwip/src/include/lwip/ |
H A D | sockets.h | 595 const struct sockaddr *to, socklen_t tolen); 619 socklen_t tolen); 663 #define sendto(s,dataptr,size,flags,to,tolen) lwip_sendto(s,dataptr,size,flags,to,tolen)
|
/third_party/NuttX/include/nuttx/net/ |
H A D | net.h | 154 socklen_t tolen); 803 * socket, the parameters to and 'tolen' are ignored (and the error EISCONN 813 * tolen The length of the address structure 863 socklen_t tolen);
|
/third_party/ffmpeg/libavutil/ |
H A D | avstring.c | 244 size_t tolen = strlen(to), fromlen = strlen(from); in av_strireplace() local 251 av_bprint_append_data(&pbuf, to, tolen); in av_strireplace()
|
/third_party/node/deps/openssl/openssl/include/openssl/ |
H A D | bn.h | 245 int BN_bn2binpad(const BIGNUM *a, unsigned char *to, int tolen); 247 int BN_bn2lebinpad(const BIGNUM *a, unsigned char *to, int tolen); 249 int BN_bn2nativepad(const BIGNUM *a, unsigned char *to, int tolen);
|
/third_party/openssl/include/openssl/ |
H A D | bn.h | 245 int BN_bn2binpad(const BIGNUM *a, unsigned char *to, int tolen); 247 int BN_bn2lebinpad(const BIGNUM *a, unsigned char *to, int tolen); 249 int BN_bn2nativepad(const BIGNUM *a, unsigned char *to, int tolen);
|
/third_party/openssl/ohos_lite/include/openssl/ |
H A D | bn.h | 223 int BN_bn2binpad(const BIGNUM *a, unsigned char *to, int tolen); 225 int BN_bn2lebinpad(const BIGNUM *a, unsigned char *to, int tolen);
|
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/ |
H A D | bn.rs | 27 pub fn BN_bn2binpad(a: *const BIGNUM, to: *mut u8, tolen: c_int) -> c_int; in BN_bn2binpad()
|
/third_party/lwip/src/api/ |
H A D | sockets.c | 1644 const struct sockaddr *to, socklen_t tolen) in lwip_sendto() 1648 return lwip_sendto_internal(s, data, size, flags, to, tolen); in lwip_sendto() 1650 return distributed_net_sendto(s, data, size, flags, to, tolen); in lwip_sendto() 1655 const struct sockaddr *to, socklen_t tolen) in lwip_sendto_internal() 1688 LWIP_ERROR("lwip_sendto: invalid address", (((to == NULL) && (tolen == 0)) || in lwip_sendto_internal() 1689 (IS_SOCK_ADDR_LEN_VALID(tolen) && in lwip_sendto_internal() 1692 LWIP_UNUSED_ARG(tolen); in lwip_sendto_internal() 1643 lwip_sendto(int s, const void *data, size_t size, int flags, const struct sockaddr *to, socklen_t tolen) lwip_sendto() argument 1654 lwip_sendto_internal(int s, const void *data, size_t size, int flags, const struct sockaddr *to, socklen_t tolen) lwip_sendto_internal() argument
|
/third_party/ltp/utils/sctp/include/netinet/ |
H A D | sctp.h | 846 socklen_t tolen, uint32_t ppid, uint32_t flags,
|
/third_party/rust/crates/libc/src/windows/ |
H A D | mod.rs | 554 tolen: ::c_int, in sendto()
|