HomeSort by: relevance | last modified time | path
    Searched defs:nextline (Results 1 - 9 of 9) sorted by relevancy

  /src/external/bsd/tradcpp/dist/
directive.h 41 struct place nextline; member in struct:lineplace
place.c 213 unsigned nextline; local
215 nextline = p->line + lines;
216 if (nextline < p->line) {
221 p->line = nextline;
  /src/usr.sbin/ldpd/
conffile.c 53 char *mapped, *nextline; variable
137 nextline = mapped;
139 char *prev = nextline;
140 if ((nextline = conf_getlinelimit()) == NULL)
142 while (isspace((unsigned char)*prev) != 0 && prev < nextline)
144 if (nextline - prev < 2)
146 else if (nextline - prev > LINEMAXSIZE)
148 memcpy(line, prev, nextline - prev);
152 line[nextline - prev] = '\0';
168 char *p = nextline;
    [all...]
  /src/external/bsd/openldap/dist/clients/tools/
ldapmodify.c 236 unsigned long lineno, nextline = 0; local
304 while (( rc == 0 || contoper ) && ( ldifrc = ldif_read_record( ldiffp, &nextline,
349 lineno = nextline+1;
  /src/external/bsd/openldap/dist/servers/slapd/
slapadd.c 69 unsigned long nextline; member in struct:Erec
75 unsigned long nextline; member in struct:Trec
112 erec->lineno = erec->nextline+1;
113 /* nextline is the line number of the end of the current entry */
114 ldifrc = ldif_read_record( ldiffp, &erec->nextline, &buf, &lmax );
345 erec->nextline = trec.nextline;
440 erec.nextline = 0;
slapmodify.c 67 unsigned long lineno, nextline; local
106 nextline = 0;
140 /* nextline is the line number of the end of the current entry */
141 for( lineno=1; ( ldifrc = ldif_read_record( ldiffp, &nextline, &buf, &lmax )) > 0;
142 lineno=nextline+1 )
  /src/usr.sbin/inetd/
parse.c 151 /* First call to nextline will advance line_number to 1 */
155 current_pos = nextline(fconfig);
408 cp = nextline(fconfig);
529 cp = nextline(fconfig);
556 cp = nextline(fconfig);
787 *current_pos = nextline(fconfig);
834 if ((cp = nextline(fconfig)) != NULL)
863 nextline(FILE *fd) function
  /src/external/gpl2/texinfo/dist/util/
texindex.c 112 char **parsefile (char *filename, char **nextline, char *data, long int size);
741 char **nextline;
787 /* `nextline' points to the next free slot in this array.
790 nextline = linearray;
794 nextline = parsefile (infile, nextline, file_data, file_size);
795 if (nextline == 0)
807 lineinfo = malloc ((nextline - linearray) * sizeof (struct lineinfo));
815 for (lp = lineinfo, p = linearray; p != nextline; lp++, p++)
824 qsort (lineinfo, nextline - linearray, sizeof (struct lineinfo)
737 char **nextline; local
    [all...]
  /src/lib/libc/net/
getaddrinfo.c 2408 char *nextline; local
2420 nextline:
2425 nextline = cp;
2427 nextline = NULL;
2470 if (nextline) {
2471 p = nextline;
2472 goto nextline;

Completed in 50 milliseconds