Searched refs:in_group (Results 1 – 7 of 7) sorted by relevance
/external/boringssl/src/tool/ |
D | ciphers.cc | 49 bool in_group = SSL_CTX_cipher_in_group(ctx.get(), i); in Ciphers() local 52 if (in_group && !last_in_group) { in Ciphers() 61 if (!in_group && last_in_group) { in Ciphers() 64 last_in_group = in_group; in Ciphers()
|
/external/boringssl/src/ssl/ |
D | ssl_cipher.cc | 479 bool in_group; member 723 co_list[co_list_num].in_group = false; in ssl_cipher_collect_ciphers() 813 int strength_bits, bool in_group, CIPHER_ORDER **head_p, in ssl_cipher_apply_rule() argument 883 curr->in_group = in_group; in ssl_cipher_apply_rule() 892 curr->in_group = false; in ssl_cipher_apply_rule() 902 curr->in_group = false; in ssl_cipher_apply_rule() 979 bool multi, skip_rule, in_group = false, has_group = false; in ssl_cipher_process_rulestr() local 992 if (in_group) { in ssl_cipher_process_rulestr() 995 (*tail_p)->in_group = false; in ssl_cipher_process_rulestr() 997 in_group = false; in ssl_cipher_process_rulestr() [all …]
|
D | ssl_test.cc | 434 bool in_group = false; in CipherListToString() local 439 if (!in_group && SSL_CTX_cipher_in_group(ctx, i)) { in CipherListToString() 441 in_group = true; in CipherListToString() 444 if (in_group) { in CipherListToString() 449 if (in_group && !SSL_CTX_cipher_in_group(ctx, i)) { in CipherListToString() 451 in_group = false; in CipherListToString()
|
/external/epid-sdk/epid/common/math/src/ |
D | ecgroup.c | 279 bool* in_group) { in eccontains() argument 289 if (!g || !p_str || !p || !in_group) { in eccontains() 319 *in_group = true; in eccontains() 372 *in_group = (ippECValid == ec_result); in eccontains() 384 bool in_group = false; in ReadEcPoint() local 393 result = eccontains(g, p_str, strlen, p, &in_group); in ReadEcPoint() 397 if (in_group == false) { in ReadEcPoint() 776 bool* in_group) { in EcInGroup() argument 780 if (!g || !p_str || !in_group) { in EcInGroup() 791 *in_group = false; in EcInGroup() [all …]
|
D | pairing.c | 347 bool in_group = true; in Pairing() local 427 EcInGroup(ps->ga, &first_val_str, sizeof(first_val_str), &in_group); in Pairing() 429 if (false == in_group) { in Pairing() 441 EcInGroup(ps->gb, &second_val_str, sizeof(second_val_str), &in_group); in Pairing() 443 if (false == in_group) { in Pairing()
|
/external/epid-sdk/epid/common/math/unittests/ |
D | ecgroup-test.cc | 1678 bool in_group; in TEST_F() local 1680 sizeof(this->efq_a_str), &in_group)); in TEST_F() 1682 EcInGroup(this->efq, nullptr, sizeof(this->efq_a_str), &in_group)); in TEST_F() 1687 bool in_group; in TEST_F() local 1689 EcInGroup(this->efq, &(this->efq_a_str), 0, &in_group)); in TEST_F() 1692 std::numeric_limits<size_t>::max(), &in_group)); in TEST_F() 1695 EcInGroup(this->efq, &(this->efq_a_str), 0x100000001, &in_group)); in TEST_F() 1703 bool in_group; in TEST_F() local 1704 EXPECT_EQ(kEpidNoErr, EcInGroup(this->efq, &p_str, sizeof(p_str), &in_group)); in TEST_F() 1705 EXPECT_FALSE(in_group); in TEST_F() [all …]
|
/external/epid-sdk/epid/common/math/ |
D | ecgroup.h | 365 bool* in_group);
|