Searched refs:nfile (Results 1 - 11 of 11) sorted by relevance

/freebsd-9.3-release/usr.bin/gprof/
H A Daout.c70 FILE *nfile; local
73 nfile = fopen( filename ,"r");
74 if (nfile == NULL)
76 fread(&xbuf, 1, sizeof(xbuf), nfile);
78 fclose(nfile);
81 getstrtab(nfile, filename);
82 getsymtab(nfile, filename);
83 gettextspace( nfile );
84 fclose(nfile);
99 getstrtab(FILE *nfile, cons argument
116 getsymtab(FILE *nfile, const char *filename) argument
173 gettextspace(FILE *nfile) argument
[all...]
/freebsd-9.3-release/bin/sh/
H A Dredir.c125 for (n = redir ; n ; n = n->nfile.next) {
126 fd = n->nfile.fd;
127 if ((n->nfile.type == NTOFD || n->nfile.type == NFROMFD) &&
166 int fd = redir->nfile.fd;
172 switch (redir->nfile.type) {
174 fname = redir->nfile.expfname;
188 fname = redir->nfile.expfname;
194 fname = redir->nfile.expfname;
213 fname = redir->nfile
[all...]
H A Dshow.c136 for (np = cmd->ncmd.redirect ; np ; np = np->nfile.next) {
139 switch (np->nfile.type) {
151 if (np->nfile.fd != dftfd)
152 fprintf(fp, "%d", np->nfile.fd);
154 if (np->nfile.type == NTOFD || np->nfile.type == NFROMFD) {
159 } else if (np->nfile.type == NHERE) {
161 } else if (np->nfile.type == NXHERE) {
164 sharg(np->nfile.fname, fp);
H A Dparser.c403 rpp = &n2->nfile.next;
602 rpp = &n2->nfile.next;
659 rpp = &n->nfile.next;
767 n->nfile.fname = makename();
1556 np = (union node *)stalloc(sizeof (struct nfile));
1558 np->nfile.fd = 1;
1571 np->nfile.fd = 0;
1574 if (sizeof (struct nfile) != sizeof (struct nhere)) {
1576 np->nfile.fd = 0;
1597 np->nfile
[all...]
H A Djobs.c1285 for (np = n->ncmd.redirect ; np ; np = np->nfile.next) {
1308 if (n->nfile.fd != i) {
1309 s[0] = n->nfile.fd + '0';
1322 cmdtxt(n->nfile.fname);
H A Deval.c488 for (redir = n ; redir ; redir = redir->nfile.next) {
497 expandarg(redir->nfile.fname, &fn, EXP_TILDE | EXP_REDIR);
498 redir->nfile.expfname = fn.list->text;
/freebsd-9.3-release/usr.sbin/lpr/common_source/
H A Ddisplayq.c507 show(const char *nfile, const char *datafile, int copies) argument
509 if (strcmp(nfile, " ") == 0)
510 nfile = "(standard input)";
512 ldump(nfile, datafile, copies);
514 dump(nfile, datafile, copies);
531 dump(const char *nfile, const char *datafile, int copies) argument
545 nlen = strlen(nfile);
550 printf("...%s ", &nfile[3+nlen-rem]);
563 lastsep = strrchr(nfile, '/');
576 printf("%s", nfile);
591 ldump(const char *nfile, const char *datafile, int copies) argument
[all...]
/freebsd-9.3-release/usr.sbin/lpr/lpr/
H A Dlpr.c124 static int nfile(char *_n);
327 tfd = nfile(tfname);
547 fd = nfile(dfname);
635 nfile(char *n) function
/freebsd-9.3-release/contrib/pf/pfctl/
H A Dparse.y530 struct file *nfile;
532 if ((nfile = pushfile($2, 0)) == NULL) {
539 file = nfile;
5674 struct file *nfile;
5676 if ((nfile = calloc(1, sizeof(struct file))) == NULL ||
5677 (nfile->name = strdup(name)) == NULL) {
5681 if (TAILQ_FIRST(&files) == NULL && strcmp(nfile->name, "-") == 0) {
5682 nfile->stream = stdin;
5683 free(nfile->name);
5684 if ((nfile
[all...]
/freebsd-9.3-release/contrib/binutils/binutils/
H A Ddebug.c679 struct debug_file *nfile;
685 nfile = (struct debug_file *) xmalloc (sizeof *nfile);
686 memset (nfile, 0, sizeof *nfile);
688 nfile->filename = name;
693 nunit->files = nfile;
694 info->current_file = nfile;
677 struct debug_file *nfile; local
/freebsd-9.3-release/usr.bin/gzip/
H A Dgzip.c1931 print_verbage(const char *file, const char *nfile, off_t usize, off_t gsize) argument
1937 if (nfile)
1938 fprintf(stderr, " -- replaced with %s", nfile);

Completed in 120 milliseconds