Home
last modified time | relevance | path

Searched refs:sk2 (Results 1 - 18 of 18) sorted by relevance

/third_party/ltp/utils/sctp/func_tests/
H A Dtest_autoclose.c65 int sk1, sk2; in main() local
92 sk2 = test_socket(AF_INET, SOCK_SEQPACKET, IPPROTO_SCTP); in main()
96 test_enable_assoc_change(sk2); in main()
100 test_bind(sk2, &loop2.sa, sizeof(loop2)); in main()
102 /* Mark sk2 as being able to accept new associations. */ in main()
103 test_listen(sk2, 1); in main()
106 * and sk2 to be 5 seconds. in main()
110 test_setsockopt(sk2, SCTP_AUTOCLOSE, &autoclose, sizeof(autoclose)); in main()
132 /* Get the communication up message on sk2. */ in main()
133 error = test_recvmsg(sk2, in main()
[all...]
H A Dtest_inaddr_any.c68 int sk1, sk2; in main() local
121 sk2 = test_socket(pf_class, SOCK_SEQPACKET, IPPROTO_SCTP); in main()
125 test_enable_assoc_change(sk2); in main()
129 test_bind(sk2, &anyaddr.sa, sizeof(anyaddr)); in main()
133 /* Mark sk2 as being able to accept new associations */ in main()
134 test_listen(sk2, 1); in main()
143 error = getsockname(sk2, &anyaddr.sa, &namelen); in main()
184 /* Get the communication up message on sk2. */ in main()
186 error = test_recvmsg(sk2, &inmessage, MSG_WAITALL); in main()
200 error = test_recvmsg(sk2, in main()
[all...]
H A Dtest_sctp_sendrecvmsg.c76 int sk1, sk2; in main() local
129 sk2 = test_socket(pf_class, SOCK_SEQPACKET, IPPROTO_SCTP); in main()
142 test_setsockopt(sk2, SCTP_EVENTS, &subscribe, sizeof(subscribe)); in main()
146 test_bind(sk2, &loop2.sa, sizeof(loop2)); in main()
153 error = getsockopt(sk2, SOL_SOCKET, SO_RCVBUF, &oldlen, &len); in main()
161 error = setsockopt(sk2, SOL_SOCKET, SO_RCVBUF, &len, sizeof(len)); in main()
166 /* Mark sk2 as being able to accept new associations. */ in main()
167 test_listen(sk2, 1); in main()
178 /* Get the communication up message on sk2. */ in main()
183 error = test_sctp_recvmsg(sk2, big_buffe in main()
[all...]
H A Dtest_1_to_1_sockopt.c86 int sk, sk1, sk2, acpt_sk, pf_class; in main() local
227 sk2 = test_socket(pf_class, SOCK_STREAM, IPPROTO_SCTP); in main()
263 test_getsockopt(sk2, SCTP_INITMSG, &ginmsg, &len); in main()
279 test_connect(sk2, (struct sockaddr *) &conn_addr, len); in main()
285 error = setsockopt(sk2, SOL_SOCKET, SO_LINGER, &slinger, len); in main()
293 error = getsockopt(sk2, SOL_SOCKET, SO_LINGER, &glinger, &len); in main()
309 error = getsockopt(sk2, SOL_SOCKET, SO_RCVBUF, &rcvbuf_val_get, &len); in main()
318 error = getsockopt(sk2, IPPROTO_SCTP, SCTP_STATUS, &gstatus, &len); in main()
330 error = setsockopt(sk2, SOL_SOCKET, SO_RCVBUF, &rcvbuf_val_set, len); in main()
337 error = getsockopt(sk2, SOL_SOCKE in main()
[all...]
H A Dtest_fragments.c78 int sk1, sk2; in main() local
132 sk2 = test_socket(pf_class, SOCK_SEQPACKET, IPPROTO_SCTP); in main()
136 test_enable_assoc_change(sk2); in main()
140 test_bind(sk2, &loop2.sa, sizeof(loop2)); in main()
142 /* Mark sk2 as being able to accept new associations. */ in main()
143 test_listen(sk2, 1); in main()
180 /* Get the communication up message on sk2. */ in main()
182 error = test_recvmsg(sk2, &inmessage, MSG_WAITALL); in main()
202 error = test_recvmsg(sk2, &inmessage, MSG_WAITALL); in main()
261 error = test_recvmsg(sk2, in main()
[all...]
H A Dtest_timetolive.c93 int sk1, sk2; in main() local
151 sk2 = test_socket(pf_class, SOCK_SEQPACKET, IPPROTO_SCTP); in main()
154 error = getsockopt(sk2, SOL_SOCKET, SO_RCVBUF, &orig_len, in main()
170 test_setsockopt(sk2, SCTP_EVENTS, &subscribe, sizeof(subscribe)); in main()
174 test_bind(sk2, &loop2.sa, sizeof(loop2)); in main()
186 error = setsockopt(sk2, SOL_SOCKET, SO_RCVBUF, &len, in main()
192 /* Mark sk2 as being able to accept new associations. */ in main()
193 test_listen(sk2, 1); in main()
227 /* Get the communication up message on sk2. */ in main()
229 error = test_recvmsg(sk2, in main()
[all...]
H A Dtest_basic.c67 int sk1, sk2; in main() local
129 sk2 = test_socket(pf_class, SOCK_SEQPACKET, IPPROTO_SCTP); in main()
135 test_bind(sk2, &loop2.sa, sizeof(loop2)); in main()
141 test_enable_assoc_change(sk2); in main()
157 error = recvmsg(sk2, &inmessage, MSG_WAITALL); in main()
165 /* Mark sk2 as being able to accept new associations. */ in main()
166 error = test_listen(sk2, 1); in main()
195 /* Get the communication up message on sk2. */ in main()
198 error = test_recvmsg(sk2, &inmessage, MSG_WAITALL); in main()
255 error = test_recvmsg(sk2, in main()
[all...]
H A Dtest_1_to_1_initmsg_connect.c42 int sk1, sk2, sk3, msglen; in test_sctp() local
85 sk2 = SAFE_ACCEPT(sk3, (struct sockaddr *) &acpt_addr, &len); in test_sctp()
96 TEST(recv(sk2, buffer_rcv, msglen, MSG_NOSIGNAL)); in test_sctp()
106 SAFE_CLOSE(sk2); in test_sctp()
/third_party/openssl/test/helpers/
H A Dcmp_testlib.c33 * Returns 0 if sk1 and sk2 are equal and another value otherwise
35 int STACK_OF_X509_cmp(const STACK_OF(X509) *sk1, const STACK_OF(X509) *sk2) in STACK_OF()
40 if (sk1 == sk2) in STACK_OF()
44 if (sk2 == NULL) in STACK_OF()
46 if ((res = sk_X509_num(sk1) - sk_X509_num(sk2))) in STACK_OF()
50 b = sk_X509_value(sk2, i); in STACK_OF()
H A Dcmp_testlib.h26 int STACK_OF_X509_cmp(const STACK_OF(X509) *sk1, const STACK_OF(X509) *sk2);
/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
H A DUCAConformanceTest.java202 RawCollationKey sk1 = new RawCollationKey(), sk2 = new RawCollationKey(); in conformanceTest()
271 newSk = sk2; in conformanceTest()
H A DCollationMiscTest.java3077 CollationKey sk2 = importviescoll.getCollationKey(t); in TestImport()
3078 if(!sk1.equals(sk2)){ in TestImport()
3106 CollationKey sk2 = importvidecoll.getCollationKey(t); in TestImportWithType()
3107 if(!sk1.equals(sk2)){ in TestImportWithType()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/collator/
H A DUCAConformanceTest.java205 RawCollationKey sk1 = new RawCollationKey(), sk2 = new RawCollationKey(); in conformanceTest()
274 newSk = sk2; in conformanceTest()
H A DCollationMiscTest.java3080 CollationKey sk2 = importviescoll.getCollationKey(t); in TestImport()
3081 if(!sk1.equals(sk2)){ in TestImport()
3109 CollationKey sk2 = importvidecoll.getCollationKey(t); in TestImportWithType()
3110 if(!sk1.equals(sk2)){ in TestImportWithType()
/third_party/icu/icu4c/source/test/intltest/
H A Ducaconf.cpp197 uint8_t sk1[1024], sk2[1024]; in testConformance() local
282 newSk = sk2; in testConformance()
H A Dtsmthred.cpp743 uint8_t sk1[1024], sk2[1024]; variable
789 newSk = (newSk == sk1)?sk2:sk1;
/third_party/icu/icu4c/source/test/cintltst/
H A Dcmsccoll.c5552 uint8_t sk2[500]; in TestImport() local
5607 ucol_getSortKey(importviescoll, str, 1, sk2, 500); in TestImport()
5608 if(compare_uint8_t_arrays(sk1, sk2) != 0){ in TestImport()
5615 ucol_getSortKey(importviescoll, str, strLength, sk2, 500); in TestImport()
5616 if(compare_uint8_t_arrays(sk1, sk2) != 0){ in TestImport()
5659 uint8_t sk2[500]; in TestImportWithType() local
5717 ucol_getSortKey(importvidecoll, str, 1, sk2, 500); in TestImportWithType()
5718 if(compare_uint8_t_arrays(sk1, sk2) != 0){ in TestImportWithType()
5725 ucol_getSortKey(importvidecoll, str, strLength, sk2, 500); in TestImportWithType()
5726 if(compare_uint8_t_arrays(sk1, sk2) ! in TestImportWithType()
[all...]
/third_party/openssl/test/
H A Dsslapitest.c8600 STACK_OF(X509_NAME) *sk1 = NULL, *sk2 = NULL; in test_ca_names_int()
8627 || !TEST_ptr(sk2 = sk_X509_NAME_new_null()) in test_ca_names_int()
8628 || !TEST_true(sk_X509_NAME_push(sk2, X509_NAME_dup(name[0]))) in test_ca_names_int()
8629 || !TEST_true(sk_X509_NAME_push(sk2, X509_NAME_dup(name[1])))) in test_ca_names_int()
8633 SSL_CTX_set0_CA_list(cctx, sk2); in test_ca_names_int()
8634 sk1 = sk2 = NULL; in test_ca_names_int()
8640 || !TEST_ptr(sk2 = sk_X509_NAME_new_null()) in test_ca_names_int()
8641 || !TEST_true(sk_X509_NAME_push(sk2, X509_NAME_dup(name[2]))) in test_ca_names_int()
8642 || !TEST_true(sk_X509_NAME_push(sk2, X509_NAME_dup(name[3])))) in test_ca_names_int()
8646 SSL_CTX_set_client_CA_list(cctx, sk2); in test_ca_names_int()
[all...]

Completed in 35 milliseconds