| /src/usr.sbin/services_mkdb/ |
| uniq.c | 121 char *cline; local 132 cline = emalloc(l + 1); 133 (void)memcpy(cline, p, l); 134 cline[l] = '\0'; 140 for (q = (unsigned char *)cline; l && *p; p++, l--) { 165 free(cline); 166 cline = NULL; 169 *compline = cline;
|
| /src/external/bsd/ipf/dist/tools/ |
| ipscan_y.y | 85 dline: cline { resetlexer(); } 93 oline: cline 111 cline: tag ':' matchup '=' action { addtag($1, $3, NULL, &$5); } label
|
| /src/external/bsd/ntp/dist/libntp/ |
| ntp_lineedit.c | 171 const char * cline; local 190 cline = el_gets(ntp_el, pcount); 192 if (NULL != cline) { 193 history(ntp_hist, &hev, H_ENTER, cline); 194 line = estrdup(cline);
|
| /src/external/bsd/mdocml/dist/ |
| man_macro.c | 206 int cline, cpos, la, nrew, target; local 263 cline = man->last->line; 284 blk_imp(man, ctok, cline, cpos, pos, buf);
|
| /src/sbin/mount_portal/ |
| conf.c | 147 palloc(char *cline, int lno, const char *conf_file) 160 key = strdup(cline); 165 cline[s-key] = '\0'; /* delete comment -> EOL */ 186 p->p_args = strdup(cline); 268 char cline[LINE_MAX]; local 280 while (fgets(cline, sizeof(cline), fp)) { 281 path *p = palloc(cline, nread+1, conf_file);
|
| /src/games/backgammon/common_source/ |
| fancy.c | 670 cline(); 674 cline(); 680 cline(void) function 704 cline();
|
| /src/sbin/ldconfig/ |
| ldconfig.c | 162 char *cline = NULL; local 195 cline = xmalloc(len+1); 196 memcpy(cline, line, len); 197 line = cline; 210 if (cline) { 211 free(cline); 212 cline = NULL;
|
| /src/external/bsd/less/dist/ |
| tags.c | 463 char *cline = (char *) ecalloc(1, cvt_len); local 464 cvt_text(cline, line, chpos, &line_len, cvt_ops); 465 if (curtag_match(cline, linepos)) 468 free(cline);
|
| search.c | 1113 static int matches_filters(POSITION pos, char *cline, int line_len, int *chpos, POSITION linepos, char **sp, char **ep, int nsp) 1120 cline, line_len, sp, ep, nsp, 0, filter->search_type); 1127 free(cline); 1180 char *cline; local 1322 cline = (char *) ecalloc(1, cvt_len); 1324 cvt_text(cline, line, chpos, &line_len, cvt_ops); 1334 if (matches_filters(pos, cline, line_len, chpos, linepos, sp, ep, NSP)) 1347 cline, line_len, sp, ep, NSP, 0, search_type); 1361 hilite_line(linepos + skip_bytes, cline, line_len, chpos, sp, ep, NSP, cvt_ops); 1377 hilite_line(linepos + skip_bytes, cline, line_len, chpos, sp, ep, NSP, cvt_ops) [all...] |
| /src/sys/arch/sparc/dev/ |
| vme_machdep.c | 345 int cline; local 432 for (cline = VME_IOC_SIZE/VME_IOC_LINESZ; cline > 0;) { 433 sc->sc_ioctags[--cline] = 0;
|
| /src/usr.bin/xlint/lint2/ |
| read.c | 156 int cline, isrc, iline; local 163 if (!try_parse_int(&cp, &cline)) 164 cline = -1; 176 setfnid(cline, cp); 193 pos.p_line = (unsigned short)cline;
|
| /src/external/gpl3/binutils/dist/gprofng/src/ |
| Module.h | 270 int cindex, cline; // index and src line of next compiler-comment member in class:Module
|
| /src/external/gpl3/binutils.old/dist/gprofng/src/ |
| Module.h | 270 int cindex, cline; // index and src line of next compiler-comment member in class:Module
|
| /src/usr.bin/diff3/ |
| diff3.c | 130 static int cline[3]; /* # of the last-read line in each file (0-2) */ variable 476 for (n = 0; cline[i] < from - 1; n += j) { 481 cline[i]++;
|
| /src/external/gpl3/binutils/dist/include/coff/ |
| sym.h | 121 long cline; /* count of file's line symbols */ member in struct:fdr
|
| /src/external/gpl3/binutils.old/dist/include/coff/ |
| sym.h | 121 long cline; /* count of file's line symbols */ member in struct:fdr
|
| /src/external/gpl3/gdb/dist/include/coff/ |
| sym.h | 121 long cline; /* count of file's line symbols */ member in struct:fdr
|
| /src/external/gpl3/gdb.old/dist/include/coff/ |
| sym.h | 121 long cline; /* count of file's line symbols */ member in struct:fdr
|
| /src/usr.bin/ftp/ |
| cmds.c | 163 char cline[BUFSIZ]; local 178 if (get_line(stdin, cline, sizeof(cline), &errormsg) < 0) { 183 switch (tolower((unsigned char)*cline)) {
|
| /src/external/bsd/byacc/dist/ |
| reader.c | 778 int cline; local 840 if ((cline = (int)code_lines[pos].num) != 0) 848 cline++; 865 cline++; 877 cline++; 880 code_lines[pos].num = (size_t)cline;
|
| /src/usr.sbin/syslogd/ |
| syslogd.c | 3163 char cline[LINE_MAX]; local 3241 while (fgets(cline, sizeof(cline), cf) != NULL) { 3243 for (p = cline; isspace((unsigned char)*p); ++p) 3335 while (fgets(cline, sizeof(cline), cf) != NULL) { 3343 for (p = cline; isspace((unsigned char)*p); ++p) 3357 "skip cline %zu with keyword %s\n", 3408 for (q = strchr(cline, '\0'); isspace((unsigned char)*--q);) 3418 cfline(linenum, cline, f, prog, host) [all...] |