Home
last modified time | relevance | path

Searched refs:ebuf (Results 1 – 3 of 3) sorted by relevance

/ndk/sources/host-tools/make-3.81/
Dread.c129 static long readline PARAMS ((struct ebuffer *ebuf));
132 struct ebuffer *ebuf));
303 struct ebuffer ebuf; in eval_makefile() local
310 ebuf.floc.filenm = strcache_add (filename); in eval_makefile()
311 ebuf.floc.lineno = 1; in eval_makefile()
338 ebuf.fp = fopen (filename, "r"); in eval_makefile()
345 if (ebuf.fp == 0 && (flags & RM_INCLUDED) && *filename != '/') in eval_makefile()
351 ebuf.fp = fopen (included, "r"); in eval_makefile()
352 if (ebuf.fp) in eval_makefile()
383 if (ebuf.fp == 0) in eval_makefile()
[all …]
/ndk/sources/host-tools/nawk-20071023/
Dlex.c538 char ebuf[300]; variable
539 char *ep = ebuf;
560 if (ep >= ebuf + sizeof ebuf) in input()
561 ep = ebuf; in input()
572 if (--ep < ebuf) in unput()
573 ep = ebuf + sizeof(ebuf) - 1; in unput()
Dlib.c607 extern char ebuf[], *ep; in eprint()
612 if (p > ebuf && *p == '\n') in eprint()
614 for ( ; p > ebuf && *p != '\n' && *p != '\0'; p--) in eprint()
635 ep = ebuf; in eprint()