Lines Matching refs:s_end

38 static bool_t get_ttls(const char *s, const char *s_end,
45 static bool_t get_deleteDisp(const char *s_begin, const char *s_end,
496 const char *s_end,
509 if (s == s_end) {
515 while (s < s_end && isdigit(*s)) {
526 while (s < s_end && is_whitespace(*s))
528 if (s + 1 >= s_end || *s++ != COLON_CHAR) {
533 while (s < s_end && is_whitespace(*s))
536 while (s < s_end && isdigit(*s)) {
547 while (s < s_end && is_whitespace(*s))
549 if (s >= s_end || *s++ != COLON_CHAR) {
554 while (s < s_end && is_whitespace(*s))
557 while (s < s_end && isdigit(*s)) {
567 while (s < s_end && is_whitespace(*s))
569 if (s != s_end) {
789 const char *s_end;
806 s_end = end;
807 s = get_next_object_dn_token(&s_begin, &s_end, &token);
842 if (!validate_dn(s_begin, s_end - s_begin))
845 s_strndup_esc(s_begin, s_end - s_begin);
893 if (!validate_ldap_filter(s_begin, s_end))
896 s_strndup_esc(s_begin, s_end - s_begin);
915 if (!validate_dn(s_begin, s_end - s_begin))
918 s_strndup_esc(s_begin, s_end - s_begin);
962 if (!validate_ldap_filter(s_begin, s_end))
965 s_strndup_esc(s_begin, s_end - s_begin);
984 if (!get_deleteDisp(s_begin, s_end, next))
2494 getIndex(const char **s_cur, const char *s_end)
2505 while (s < s_end && is_whitespace(*s))
2507 for (s1 = s; s1 < s_end; s1++) {
2542 while (s < s_end && is_whitespace(*s))
2669 get_deleteDisp(const char *s_begin, const char *s_end,
2677 if (same_string("always", s_begin, s_end - s_begin)) {
2679 } else if (same_string("never", s_begin, s_end - s_begin)) {
2681 } else if ((s_begin = skip_string("dbid", s_begin, s_end - s_begin))
2684 while (s_begin < s_end && is_whitespace(*s_begin))
2686 if (s_begin == s_end || *s_begin != EQUAL_CHAR) {
2690 while (s_begin < s_end && is_whitespace(*s_begin))
2692 while (s_begin < s_end && is_whitespace(s_end[-1]))
2693 s_end--;
2694 if (s_begin == s_end) {
2698 s_strndup(s_begin, s_end - s_begin);