Lines Matching refs:next

422 	ns_ldap_range_attr_t	*attr, *next;
429 for (attr = (*info)->range_attr; attr != NULL; attr = next) {
434 next = attr->next;
443 * machine to collect the next range of the attribute values.
450 * the attribute's range value for the next search. Either
455 * readily used in the attribute list for the next
506 * generate the "attribute type + option" for the next search:
537 attr->next = info->range_attr;
540 for (attr = info->range_attr; attr != NULL; attr = attr->next) {
840 ra = ra->next;
1275 attr = attr->next;
1312 cookie->nextEntry->next = curEntry;
1343 ns_ldap_range_attr_t *prev, *next;
1350 attr = next) {
1384 next = attr->next;
1390 info->range_attr = next;
1392 prev->next = next;
1397 next = attr->next;
1417 * for the next search of the same DN
1420 for (i = 0; attr != NULL; attr = attr->next, i++) {
1805 * don't skip if next char is '\0'
2309 ref_info = ref_info->next) {
2973 /* get next search descriptor */
3000 * on exit, cookie->new_state will be set to the next
3028 * be tried next.
3136 * get the next range of values.
3202 * next session only if
3210 * next session
3217 * next session. New state
3236 * get the next range.
3506 nextEntry = nextEntry->next) {
3556 /* get next referral info */
3562 cookie->referral_pos->next;
4366 ns_ldap_cookie_t *c, *next;
4368 for (c = batch->cookie_list; c != NULL; c = next) {
4369 next = c->next_cookie_in_batch;
4413 /* Get the next cookie from the batch */
5039 curEntry = curEntry->next;
5745 resync_str(char *str, char *next, char c)
5750 *next = c;
5751 if (ret == next)
5753 (void) strcat(str, next);
5785 char *next;
5795 if ((next = find_right_paren(str)) == NULL)
5798 *next = '\0';
5801 next = resync_str(str, next, ')');
5802 next++;
5804 return (next);
5810 char *next;
5869 next = str;
5870 while (*next && balance) {
5872 if (*next == '(')
5874 else if (*next == ')')
5877 if (*next == '\\' && ! escape)
5882 next++;
5887 *next = '\0';
5891 next = resync_str(str, next, ')');
5892 next++;
5893 str = next;
5909 next = strchr(str, '\0');
5913 str = next;
5929 char *next;
5938 if ((next = find_right_paren(str + 1)) == NULL)
5940 save = *++next;
5943 *next = '\0';
5946 next = resync_str(str, next, save);
5948 str = next;