Lines Matching refs:s_end

43 static bool_t get_ttls(const char *s, const char *s_end,
50 static bool_t get_deleteDisp(const char *s_begin, const char *s_end,
497 const char *s_end,
510 if (s == s_end) {
516 while (s < s_end && isdigit(*s)) {
527 while (s < s_end && is_whitespace(*s))
529 if (s + 1 >= s_end || *s++ != COLON_CHAR) {
534 while (s < s_end && is_whitespace(*s))
537 while (s < s_end && isdigit(*s)) {
548 while (s < s_end && is_whitespace(*s))
550 if (s >= s_end || *s++ != COLON_CHAR) {
555 while (s < s_end && is_whitespace(*s))
558 while (s < s_end && isdigit(*s)) {
568 while (s < s_end && is_whitespace(*s))
570 if (s != s_end) {
790 const char *s_end;
807 s_end = end;
808 s = get_next_object_dn_token(&s_begin, &s_end, &token);
843 if (!validate_dn(s_begin, s_end - s_begin))
846 s_strndup_esc(s_begin, s_end - s_begin);
894 if (!validate_ldap_filter(s_begin, s_end))
897 s_strndup_esc(s_begin, s_end - s_begin);
916 if (!validate_dn(s_begin, s_end - s_begin))
919 s_strndup_esc(s_begin, s_end - s_begin);
963 if (!validate_ldap_filter(s_begin, s_end))
966 s_strndup_esc(s_begin, s_end - s_begin);
985 if (!get_deleteDisp(s_begin, s_end, next))
2510 getIndex(const char **s_cur, const char *s_end)
2521 while (s < s_end && is_whitespace(*s))
2523 for (s1 = s; s1 < s_end; s1++) {
2558 while (s < s_end && is_whitespace(*s))
2685 get_deleteDisp(const char *s_begin, const char *s_end,
2693 if (same_string("always", s_begin, s_end - s_begin)) {
2695 } else if (same_string("never", s_begin, s_end - s_begin)) {
2697 } else if ((s_begin = skip_string("dbid", s_begin, s_end - s_begin))
2700 while (s_begin < s_end && is_whitespace(*s_begin))
2702 if (s_begin == s_end || *s_begin != EQUAL_CHAR) {
2706 while (s_begin < s_end && is_whitespace(*s_begin))
2708 while (s_begin < s_end && is_whitespace(s_end[-1]))
2709 s_end--;
2710 if (s_begin == s_end) {
2714 s_strndup(s_begin, s_end - s_begin);