Searched refs:token_len (Results 1 – 6 of 6) sorted by relevance
/external/google-breakpad/src/processor/ |
D | cfi_frame_info.cc | 144 size_t token_len = strlen(token); in Parse() local 145 if (token_len >= 1 && token[token_len - 1] == ':') { in Parse() 147 if (token_len < 2) return false; in Parse() 152 name_.assign(token, token_len - 1); in Parse() 156 assert(token_len > 0); // strtok_r guarantees this, I think. in Parse()
|
/external/pdfium/core/src/fpdfapi/fpdf_parser/ |
D | fpdf_parser_utility.cpp | 203 int token_len = token.GetLength(); in SearchToken() local 204 while (m_dwCurPos < m_dwSize - token_len) { in SearchToken() 205 if (FXSYS_memcmp(m_pData + m_dwCurPos, token.GetPtr(), token_len) == 0) { in SearchToken() 210 if (m_dwCurPos == m_dwSize - token_len) { in SearchToken() 213 m_dwCurPos += token_len; in SearchToken()
|
/external/wpa_supplicant_8/src/common/ |
D | sae.c | 926 size_t *token_len) in sae_parse_commit_token() argument 934 if (token_len) in sae_parse_commit_token() 935 *token_len = tlen; in sae_parse_commit_token() 940 if (token_len) in sae_parse_commit_token() 941 *token_len = 0; in sae_parse_commit_token() 1097 const u8 **token, size_t *token_len, int *allowed_groups) in sae_parse_commit() argument 1111 sae_parse_commit_token(sae, &pos, end, token, token_len); in sae_parse_commit()
|
D | sae.h | 66 const u8 **token, size_t *token_len, int *allowed_groups);
|
/external/wpa_supplicant_8/src/ap/ |
D | ieee802_11.c | 448 const u8 *token, size_t token_len) in check_sae_token() argument 452 if (token_len != SHA256_MAC_LEN) in check_sae_token() 752 size_t token_len = 0; in handle_auth_sae() local 814 &token_len, hapd->conf->sae_groups); in handle_auth_sae() 821 if (token && check_sae_token(hapd, sta->addr, token, token_len) in handle_auth_sae()
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | ctrl_iface.c | 4736 long int token_len; in p2ps_ctrl_parse_cpt_priority() local 4749 token_len = last - token; in p2ps_ctrl_parse_cpt_priority() 4751 if (token_len == 3 && in p2ps_ctrl_parse_cpt_priority() 4752 os_memcmp(token, "UDP", token_len) == 0) { in p2ps_ctrl_parse_cpt_priority() 4754 } else if (token_len == 3 && in p2ps_ctrl_parse_cpt_priority() 4755 os_memcmp(token, "MAC", token_len) == 0) { in p2ps_ctrl_parse_cpt_priority()
|