Searched refs:substr_len (Results 1 – 3 of 3) sorted by relevance
/external/u-boot/common/ |
D | log.c | 132 int substr_len; in log_has_file() local 136 substr_len = p - s; in log_has_file() 137 if (file_len >= substr_len && in log_has_file() 138 !strncmp(file + file_len - substr_len, s, substr_len)) in log_has_file()
|
/external/boringssl/src/crypto/err/ |
D | err.c | 667 size_t alloced, new_len, len = 0, substr_len; in err_add_error_vdata() local 684 substr_len = strlen(substr); in err_add_error_vdata() 685 new_len = len + substr_len; in err_add_error_vdata() 704 OPENSSL_memcpy(buf + len, substr, substr_len); in err_add_error_vdata()
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | p2p_supplicant_sd.c | 1000 size_t plen, svc_len, substr_len = 0; in wpas_p2p_sd_request_asp() local 1005 substr_len = os_strlen(info_substr); in wpas_p2p_sd_request_asp() 1007 if (svc_len > 0xff || substr_len > 0xff) in wpas_p2p_sd_request_asp() 1010 plen = 1 + 1 + 1 + svc_len + 1 + substr_len; in wpas_p2p_sd_request_asp() 1020 wpabuf_put_u8(tlvs, (u8) substr_len); /* Info Substring Length */ in wpas_p2p_sd_request_asp() 1021 wpabuf_put_data(tlvs, info_substr, substr_len); in wpas_p2p_sd_request_asp()
|