Lines Matching refs:e
168 char *f_user, *f_pwd, *e, *f_realm; in http_auth_get_password() local
205 if (NULL != (e = memchr(f_pwd, '\n', f.size - (f_pwd - f.start)))) { in http_auth_get_password()
206 pwd_len = e - f_pwd; in http_auth_get_password()
224 if (!e) break; in http_auth_get_password()
226 f_line = e + 1; in http_auth_get_password()
250 char *f_user, *f_pwd, *e; in http_auth_get_password() local
275 if (NULL != (e = memchr(f_pwd, '\n', f.size - (f_pwd - f.start)))) { in http_auth_get_password()
276 pwd_len = e - f_pwd; in http_auth_get_password()
292 if (!e) break; in http_auth_get_password()
294 f_line = e + 1; in http_auth_get_password()
353 const char *k, *v, *e; in http_auth_match_rules() local
356 e = strchr(r, '|'); in http_auth_match_rules()
358 if (e) { in http_auth_match_rules()
359 r_len = e - r; in http_auth_match_rules()
422 if (!e) break; in http_auth_match_rules()
423 r = e + 1; in http_auth_match_rules()
932 char *e, *c; in http_auth_digest_check() local
993 (NULL != (e = strchr(c + dkv[i].key_len + 1, '"')))) { in http_auth_digest_check()
996 c = e; in http_auth_digest_check()
998 *e = '\0'; in http_auth_digest_check()
999 } else if (NULL != (e = strchr(c + dkv[i].key_len, ','))) { in http_auth_digest_check()
1002 c = e; in http_auth_digest_check()
1004 *e = '\0'; in http_auth_digest_check()