Searched refs:linep (Results 1 - 21 of 21) sorted by relevance

/macosx-10.9.5/Libc-997.90.3/stdio/FreeBSD/
H A Dgetline.c34 getline(char ** __restrict linep, size_t * __restrict linecapp, argument
38 return (getdelim(linep, linecapp, '\n', fp));
H A Dgetdelim.c62 * Expand *linep to hold len bytes (up to SSIZE_MAX + 1).
65 expandtofit(char ** __restrict linep, size_t len, size_t * __restrict capp) argument
79 newline = realloc(*linep, newcap);
83 *linep = newline;
109 getdelim(char ** __restrict linep, size_t * __restrict linecapp, int delim, argument
118 if (linep == NULL || linecapp == NULL) {
123 if (*linep == NULL)
128 if (__sferror(fp) || expandtofit(linep, 1, linecapp))
131 (*linep)[0] = '\0';
137 if (sappend(linep,
[all...]
/macosx-10.9.5/bootp-268.1/bootpd.tproj/
H A Dbootpdfile.c69 * Get next field from 'line' buffer into 'str'. 'linep' is the
76 char * linep = *line_p; local
78 for ( ; *linep && (*linep == ' ' || *linep == '\t') ; linep++)
80 if (*linep == 0) {
85 for ( ; *linep && *linep != ' ' && *linep !
114 char * linep; local
[all...]
/macosx-10.9.5/ncurses-42/ncurses/ncurses/tinfo/
H A Dlib_setup.c199 _nc_get_screensize(SCREEN *sp, int *linep, int *colp) argument
209 *linep = (int) lines;
214 *linep = *colp = 0;
218 *linep = value;
223 T(("screen size: environment LINES = %d COLUMNS = %d", *linep, *colp));
226 if (*linep <= 0 || *colp <= 0) {
230 *linep = screendata[1];
232 *linep, *colp));
237 if (*linep <= 0 || *colp <= 0) {
253 if (*linep <
[all...]
/macosx-10.9.5/text_cmds-87/lam/
H A Dlam.c75 char *linep; variable
93 linep = line;
95 linep = gatherline(ip);
184 char *lp = linep;
201 char *lp = linep;
/macosx-10.9.5/remote_cmds-41.90.1/revnetgroup.tproj/
H A Dparse_netgroup.c289 char *pos, *spos, *linep = NULL, *olinep = NULL; local
332 linep = (char *)malloc(olen + len + 1);
334 bcopy(olinep, linep, olen);
337 bcopy(pos, linep + olen, len);
339 *(linep + olen) = '\0';
340 olinep = linep;
352 lp->l_line = linep;
/macosx-10.9.5/tcl-102/tcl_ext/expect/expect/
H A Dpty_unicos.c70 static char linep[] = "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"; variable
219 (void) sprintf(linep, "/dev/pty/%03d", npty);
220 master = open(linep, O_RDWR);
223 expDiagLog("exp_getptymaster: open linep=%s errno=%d\n",
224 linep,errno);
245 master = open(linep, 2);
247 expDiagLog("exp_getptymaster: reopen linep=%s errno=%d\n",
248 linep,errno);
H A DDbg.c997 char *linep; /* pointer to beginning of line number */ local
1004 linep = colon + 1;
1006 linep = ref;
1011 if (TCL_OK == Tcl_GetInt(interp,linep,&b->line)) {
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/shell-backends/
H A Dshellutil.c252 find_input_tag( char **linep ) /* linep is set to start of args */
257 if (( p = strchr( *linep, ':' )) == NULL || p == *linep ) {
262 if ( strncasecmp( *linep, ips[ i ].ip_tag, p - *linep ) == 0 ) {
266 *linep = p;
H A Dshellutil.h108 struct inputparams *find_input_tag( char **linep );
/macosx-10.9.5/vim-53/src/
H A Dsearch.c20 static int check_prevcol __ARGS((char_u *linep, int col, int ch, int *prevcol));
1669 * Return TRUE if the character before "linep[col]" equals "ch".
1676 check_prevcol(linep, col, ch, prevcol)
1677 char_u *linep;
1685 col -= (*mb_head_off)(linep, linep + col);
1689 return (col >= 0 && linep[col] == ch) ? TRUE : FALSE;
1722 char_u *linep; /* pointer to current line */ local
1743 linep = ml_get(pos.lnum);
1816 ptr = skipwhite(linep);
[all...]
H A Dsyntax.c446 static int syn_scl_namen2id __ARGS((char_u *linep, int len));
5360 syn_scl_namen2id(linep, len)
5361 char_u *linep;
5367 name = vim_strnsave(linep, len);
6795 char_u *linep; local
6836 linep = skipwhite(name_end);
6844 line = linep;
6846 linep = skipwhite(name_end);
6860 if (!doclear && !dolink && ends_excmd(*linep))
6875 char_u *from_start = linep;
[all...]
/macosx-10.9.5/less-23/less/
H A Dline.c1131 forw_raw_line(curr_pos, linep, line_lenp)
1133 char **linep;
1168 if (linep != NULL)
1169 *linep = linebuf;
1180 back_raw_line(curr_pos, linep, line_lenp)
1182 char **linep;
1242 if (linep != NULL)
1243 *linep = &linebuf[n];
/macosx-10.9.5/ppp-727.90.1/Helpers/pppd/
H A Dutils.c596 static char *linep; /* current pointer within line */ variable
604 linep = line;
607 linep = line + strlen(line);
615 if (linep != line) {
616 *linep = 0;
647 if (linep != line) {
649 if (linep + l < line + sizeof(line)) {
651 memcpy(linep, buf, l);
652 linep += l;
659 *linep
[all...]
/macosx-10.9.5/vim-53/src/proto/
H A Dsyntax.pro44 int syn_namen2id __ARGS((char_u *linep, int len));
/macosx-10.9.5/screen-22/screen/
H A Dmark.c385 unsigned char *linep; local
395 for (xx = x - 1, linep = ml->image + xx; xx >= 0; xx--)
396 if ((q = *linep--) != ' ' )
402 linep = ml->image;
403 if (xx < 0 || eq(linep[xx], q))
405 for (i = fore->w_width - 1, linep += i; i >= x; i--)
406 if (*linep-- != ' ')
421 bcopy((char *)linep - i + x + 1, D_user->u_plop.buf, i - x + 1);
/macosx-10.9.5/groff-38/groff/src/libs/libgroff/
H A Dfont.cpp552 char *linep = strchr(line, '\0'); local
554 if (*(--linep) == '\n')
555 *linep = '\0';
/macosx-10.9.5/crontabs-51/newsyslog/
H A Dnewsyslog.c1824 char *endp, *linep, line[BUFSIZ]; local
1866 linep = line;
1867 while (*linep == ' ')
1868 linep++;
1869 rval = strtol(linep, &endp, 10);
/macosx-10.9.5/ncurses-42/ncurses/ncurses/
H A Dllib-lncurses2648 int *linep,
H A Dllib-lncursest2703 int *linep,
H A Dllib-lncursesw3394 int *linep,

Completed in 223 milliseconds