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

  /src/external/bsd/atf/dist/atf-c/
h_build.h 46 const char *ofile; member in struct:c_o_test
184 const char *ofile; member in struct:cpp_test
283 const char *ofile; member in struct:cxx_o_test
  /src/external/bsd/ekermit/dist/
unixio.c 66 static int ttyfd, ofile = -1; /* File descriptors */ variable
366 ofile = creat(s,0644);
367 if (ofile < 0) {
376 ofile = open(s,O_WRONLY|O_APPEND);
377 if (ofile < 0) {
553 if (write(ofile,s,n) != n)
563 if (write(ofile,q,i) != i)
596 if (ofile < 0) /* If not open */
600 if (close(ofile) < 0) { /* Try to close */
  /src/external/gpl2/gmake/dist/
vmsjobs.c 307 char ifile[256], ofile[256], efile[256]; local
315 ofile[0] = 0;
386 p = vms_redirect (&ofiledsc, ofile, p);
502 if (ofile[0])
504 fprintf (outfile, "$ define sys$output %s\n", ofile);
505 DB (DB_JOBS, (_("Redirected output to %s\n"), ofile));
  /src/external/gpl3/binutils/dist/gprofng/src/
collect.h 53 char *ofile; // Output file member in struct:DtraceTool
  /src/external/gpl3/binutils.old/dist/gprofng/src/
collect.h 53 char *ofile; // Output file member in struct:DtraceTool
  /src/distrib/utils/ssh/
ssh.c 413 run [-bg] [-i ifile] [-o ofile] [-e efile] program [args...]\n\
423 char *opt, *ifile, *ofile, *efile; local
434 ifile = ofile = efile = NULL;
446 ofile = argv[0];
485 if (ofile)
486 child_newfd(1, ofile, O_WRONLY|O_CREAT);
  /src/usr.bin/tic/
tic.c 610 char *source, *dbname, *buf, *ofile; local
618 ofile = NULL;
635 ofile = optarg;
701 if (ofile == NULL)
704 dbname = ofile;
711 if (ofile == NULL)
  /src/external/gpl3/binutils/dist/binutils/
coffgrok.c 40 static struct coff_ofile * ofile; variable in typeref:struct:coff_ofile
249 if (sym->n_scnum >= ofile->nsections || sym->n_scnum < 0)
253 where->section = ofile->sections;
256 where->section = &ofile->sections[sym->n_scnum];
632 /* Glue onto the ofile list. */
635 if (ofile->symbol_list_tail)
636 ofile->symbol_list_tail->next_in_ofile_list = s;
638 ofile->symbol_list_head = s;
639 ofile->symbol_list_tail = s;
707 ofile = head
    [all...]
  /src/external/gpl3/binutils.old/dist/binutils/
coffgrok.c 40 static struct coff_ofile * ofile; variable in typeref:struct:coff_ofile
249 if (sym->n_scnum >= ofile->nsections || sym->n_scnum < 0)
253 where->section = ofile->sections;
256 where->section = &ofile->sections[sym->n_scnum];
632 /* Glue onto the ofile list. */
635 if (ofile->symbol_list_tail)
636 ofile->symbol_list_tail->next_in_ofile_list = s;
638 ofile->symbol_list_head = s;
639 ofile->symbol_list_tail = s;
707 ofile = head
    [all...]
  /src/sys/dev/microcode/aic7xxx/
aicasm.c 93 FILE *ofile; variable
191 if ((ofile = fopen(optarg, "w")) == NULL) {
298 if (ofile != NULL)
362 fprintf(ofile,
369 fprintf(ofile, "static const uint8_t seqprog[] = {\n");
374 fprintf(ofile, "%s\t0x%02x, 0x%02x, 0x%02x, 0x%02x",
389 fprintf(ofile, "\n};\n\n");
398 fprintf(ofile,
404 fprintf(ofile,
421 fprintf(ofile,
    [all...]
  /src/sbin/restore/
dirs.c 716 int ofile, dp, i, size; local
723 if ((ofile = open(name, O_WRONLY | O_CREAT | O_TRUNC, 0666)) < 0) {
740 if (!Nflag && write(ofile, buf, (int) size) == -1) {
749 (void) close(ofile);
tape.c 94 static int ofile; variable
792 if (!Nflag && (ofile = open(name, O_WRONLY | O_CREAT | O_TRUNC,
801 (void) fchown(ofile, uid, gid);
802 (void) fchmod(ofile, mode);
806 set_extattr(ofile, name, buf, extsize, SXA_FD);
818 (void) futimens(ofile, ctimep);
819 (void) futimens(ofile, mtimep);
824 (void) fchflags(ofile, flags);
825 (void) close(ofile);
1194 if (write(ofile, buf, (int) size) == -1)
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
maint.c 334 objfile *ofile)
336 if (ofile->sections_start == nullptr)
340 = &ofile->sections_start[gdb_bfd_section_index (abfd, asection)];
342 if (osect >= ofile->sections_end)
454 for (objfile *ofile : current_program_space->objfiles ())
456 if (ofile->obfd == current_program_space->exec_bfd ())
457 maint_print_all_sections (_("Exec file: "), ofile->obfd.get (),
458 ofile, arg); local
460 maint_print_all_sections (_("Object file: "), ofile->obfd.get (),
461 ofile, arg) local
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
maint.c 346 objfile *ofile)
348 if (ofile->sections_start == nullptr)
352 = &ofile->sections_start[gdb_bfd_section_index (abfd, asection)];
354 if (osect >= ofile->sections_end)
468 for (objfile *ofile : current_program_space->objfiles ())
470 if (ofile->obfd == current_program_space->exec_bfd ())
471 maint_print_all_sections (_("Exec file: "), ofile->obfd.get (),
472 ofile, arg); local
474 maint_print_all_sections (_("Object file: "), ofile->obfd.get (),
475 ofile, arg) local
    [all...]
  /src/external/bsd/pcc/dist/pcc/cc/cc/
cc.c 986 char *ifile, *ofile = NULL; local
1023 ofile = outfile;
1026 strlist_append(&temp_outputs, ofile = gettmp());
1028 if (preprocess_input(ifile, ofile, 0))
1029 exandrm(ofile);
1032 ifile = ofile;
1042 ofile = outfile;
1044 ofile = setsuf(s->value, 's');
1046 strlist_append(&temp_outputs, ofile = gettmp());
1047 if (compile_input(ifile, ofile))
    [all...]
  /src/external/gpl3/binutils/dist/gas/
ecoff.c 1032 FDR ofile [ PAGE_SIZE / sizeof (FDR) ];
1030 FDR ofile [ PAGE_SIZE \/ sizeof (FDR) ]; member in union:page
  /src/external/gpl3/binutils.old/dist/gas/
ecoff.c 1032 FDR ofile [ PAGE_SIZE / sizeof (FDR) ];
1030 FDR ofile [ PAGE_SIZE \/ sizeof (FDR) ]; member in union:page

Completed in 70 milliseconds