Lines Matching refs:psk_entry
942 typedef struct _psk_entry psk_entry;
951 psk_entry *next;
955 * Free a list of psk_entry's
957 int psk_free(psk_entry *head)
959 psk_entry *next;
984 * into a usable psk_entry list.
988 psk_entry *psk_parse(char *psk_string)
990 psk_entry *cur = NULL, *new = NULL;
1001 if ((new = mbedtls_calloc(1, sizeof(psk_entry))) == NULL) {
1005 memset(new, 0, sizeof(psk_entry));
1033 psk_entry *cur = (psk_entry *) p_info;
1521 psk_entry *psk_info = NULL;
3213 psk_entry *cur_psk;