HomeSort by relevance Sort by last modified time
    Searched refs:in_group_flags (Results 1 - 5 of 5) sorted by null

  /external/boringssl/src/ssl/
s3_lib.c 641 /* in_group_flags will either be NULL, or will point to an array of bytes
643 * comment about |in_group_flags| in the |ssl_cipher_preference_list_st|
645 const uint8_t *in_group_flags; local
652 in_group_flags = server_pref->in_group_flags;
656 in_group_flags = NULL;
678 if (in_group_flags != NULL && in_group_flags[i] == 1) {
693 if (in_group_flags != NULL && in_group_flags[i] == 0 && group_min != -1)
    [all...]
ssl_cipher.c 1205 uint8_t *in_group_flags = NULL; local
    [all...]
ssl_test.cc 219 if (!in_group && list->in_group_flags[i]) {
228 if (in_group && !list->in_group_flags[i]) {
252 t->expected[i].in_group_flag != ctx->cipher_list->in_group_flags[i]) {
ssl_lib.c 455 OPENSSL_free(cipher_list->in_group_flags);
470 ret->in_group_flags = NULL;
475 ret->in_group_flags = BUF_memdup(cipher_list->in_group_flags, n);
476 if (!ret->in_group_flags) {
497 ret->in_group_flags = NULL;
502 ret->in_group_flags = OPENSSL_malloc(n);
503 if (!ret->in_group_flags) {
506 memset(ret->in_group_flags, 0, n);
    [all...]
  /external/boringssl/src/include/openssl/
ssl.h 861 uint8_t *in_group_flags; member in struct:ssl_cipher_preference_list_st
    [all...]

Completed in 240 milliseconds