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

  /src/sys/arch/hppa/stand/mkboot/
mkboot.c 116 char *to_file; variable
165 to_file = argv[--argc];
166 if ((to = open(to_file, O_RDWR | O_TRUNC | O_CREAT, 0644)) < 0)
167 err(1, "%s: open", to_file);
181 bcddate(to_file, lifv->vol_toc);
191 err(1, "%s: lseek", to_file);
222 err(1, "%s: lseek", to_file);
224 err(1, "%s: write LIF volume", to_file);
228 err(1, "%s", to_file);
307 err(1, "%s", to_file);
    [all...]
  /src/external/gpl2/gmake/dist/
file.c 225 struct file *to_file;
247 to_file = *file_slot;
253 if (HASH_VACANT (to_file))
257 /* TO_FILE already exists under TO_HNAME.
258 We must retain TO_FILE and merge FROM_FILE into it. */
262 if (to_file->cmds == 0)
263 to_file->cmds = from_file->cmds;
264 else if (from_file->cmds != to_file->cmds)
269 if (to_file->cmds->fileinfo.filenm != 0)
272 from_file->name, to_file->cmds->fileinfo.filenm
224 struct file *to_file; local
    [all...]
  /src/external/gpl2/diffutils/dist/src/
diff.c 263 char const *to_file = 0;
575 specify_value (&to_file, optarg, "--to-file");
712 if (to_file)
725 if (to_file)
729 argv[optind], to_file);
262 char const *to_file = 0; local
  /src/external/gpl3/gcc/dist/libcpp/include/
line-map.h 396 Physical source file TO_FILE at line TO_LINE at column 0 is represented
440 const char *to_file; variable
688 return ord_map->to_file;
1054 The text pointed to by TO_FILE must have a lifetime
1056 TO_FILE means standard input. If reason is LC_LEAVE, and
1057 TO_FILE is NULL, then TO_FILE, TO_LINE and SYSP are given their
1064 const char *to_file, linenum_type to_line);
1217 return ord_map->to_file;
  /src/external/gpl3/gcc.old/dist/libcpp/include/
line-map.h 394 Physical source file TO_FILE at line TO_LINE at column 0 is represented
438 const char *to_file; variable
677 return ord_map->to_file;
1094 The text pointed to by TO_FILE must have a lifetime
1096 TO_FILE means standard input. If reason is LC_LEAVE, and
1097 TO_FILE is NULL, then TO_FILE, TO_LINE and SYSP are given their
1104 const char *to_file, linenum_type to_line);
1254 return ord_map->to_file;
  /src/external/apache2/llvm/dist/clang/tools/c-index-test/
c-index-test.c 251 FILE *to_file; local
263 to_file = fopen(sep + 1, "rb");
264 if (!to_file) {
274 fseek(to_file, 0, SEEK_END);
275 unsaved->Length = ftell(to_file);
276 fseek(to_file, 0, SEEK_SET);
281 if (fread(contents, 1, unsaved->Length, to_file) != unsaved->Length) {
283 (feof(to_file) ? "EOF" : "error"), sep + 1);
284 fclose(to_file);
295 fclose(to_file);
    [all...]

Completed in 64 milliseconds