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

  /src/external/gpl2/dtc/dist/
fstree.c 40 FILE *pfile; local
42 pfile = fopen(tmpname, "rb");
43 if (! pfile) {
49 data_copy_file(pfile,
53 fclose(pfile);
  /src/external/gpl3/gcc/dist/libcpp/include/
symtab.h 63 struct cpp_reader *pfile; member in struct:ht
94 TABLE->PFILE, the node, and a PTR, and the callback sequence stops
  /src/external/gpl3/gcc.old/dist/gcc/config/aarch64/
aarch64-c.cc 37 #define builtin_define(TXT) cpp_define (pfile, TXT)
38 #define builtin_assert(TXT) cpp_assert (pfile, TXT)
42 aarch64_def_or_undef (bool def_p, const char *macro, cpp_reader *pfile)
45 cpp_define (pfile, macro);
47 cpp_undef (pfile, macro);
53 aarch64_define_unconditional_macros (cpp_reader *pfile)
81 aarch64_update_cpp_builtins (cpp_reader *pfile)
83 aarch64_def_or_undef (flag_unsafe_math_optimizations, "__ARM_FP_FAST", pfile);
89 aarch64_def_or_undef (TARGET_BIG_END, "__AARCH64EB__", pfile);
90 aarch64_def_or_undef (TARGET_BIG_END, "__ARM_BIG_ENDIAN", pfile);
183 "__ARM_FEATURE_BTI_DEFAULT", pfile); local
    [all...]
  /src/external/gpl3/gcc.old/dist/libcpp/include/
symtab.h 62 struct cpp_reader *pfile; member in struct:ht
87 TABLE->PFILE, the node, and a PTR, and the callback sequence stops
  /src/external/historical/nawk/dist/
main.c 53 static char **pfile; /* program filenames from -f's */ variable
202 pfile = (char **) realloc(pfile, maxpfile * sizeof(*pfile));
203 if (pfile == NULL)
206 pfile[npfile++] = fn;
280 if (strcmp(pfile[curpfile], "-") == 0)
282 else if ((yyin = fopen(pfile[curpfile], "r")) == NULL)
283 FATAL("can't open file %s", pfile[curpfile]);
298 return pfile[curpfile < npfile ? curpfile : curpfile - 1]
    [all...]
  /src/usr.sbin/mopd/mopd/
process.c 432 u_char pfile[129], mopcode; local
481 if (tmpc > sizeof(pfile) - 1)
484 pfile[i] = mopGetChar(pkt,idx);
485 pfile[i+1] = '\0';
496 snprintf(pfile, sizeof(pfile),
510 MopdDir, pfile);
518 src[3],src[4],src[5],trans,pfile);
523 src[3],src[4],src[5],trans,pfile);
533 src[3],src[4],src[5],pfile);
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/aarch64/
aarch64-c.cc 37 #define builtin_define(TXT) cpp_define (pfile, TXT)
38 #define builtin_assert(TXT) cpp_assert (pfile, TXT)
42 aarch64_def_or_undef (bool def_p, const char *macro, cpp_reader *pfile)
45 cpp_define (pfile, macro);
47 cpp_undef (pfile, macro);
53 aarch64_define_unconditional_macros (cpp_reader *pfile)
130 aarch64_update_cpp_builtins (cpp_reader *pfile)
132 aarch64_def_or_undef (flag_unsafe_math_optimizations, "__ARM_FP_FAST", pfile);
134 cpp_undef (pfile, "__ARM_ARCH");
139 aarch64_def_or_undef (TARGET_BIG_END, "__AARCH64EB__", pfile);
233 "__ARM_FEATURE_BTI_DEFAULT", pfile); local
    [all...]
  /src/usr.sbin/ypserv/mknetid/
mknetid.c 216 FILE *pfile; local
222 if ((pfile = fopen(fname, "r")) == NULL)
227 (line = fparseln(pfile, &len, &line_no, NULL, FPARSELN_UNESCALL));
270 (void)fclose(pfile);
  /src/external/bsd/atf/dist/atf-c/detail/
fs_test.c 572 atf_fs_path_t pdir, pfile; local
576 RE(atf_fs_path_init_fmt(&pfile, "dir/file"));
579 create_file(atf_fs_path_cstring(&pfile), 0644);
586 RE(atf_fs_exists(&pfile, &b));
596 err = atf_fs_exists(&pfile, &b);
604 ATF_REQUIRE(unlink(atf_fs_path_cstring(&pfile)) != -1);
605 RE(atf_fs_exists(&pfile, &b));
608 atf_fs_path_fini(&pfile);
  /src/external/gpl3/gcc.old/dist/libcpp/
init.cc 131 cpp_set_lang (cpp_reader *pfile, enum c_lang lang)
135 CPP_OPTION (pfile, lang) = lang;
137 CPP_OPTION (pfile, c99) = l->c99;
138 CPP_OPTION (pfile, cplusplus) = l->cplusplus;
139 CPP_OPTION (pfile, extended_numbers) = l->extended_numbers;
140 CPP_OPTION (pfile, extended_identifiers) = l->extended_identifiers;
141 CPP_OPTION (pfile, c11_identifiers) = l->c11_identifiers;
142 CPP_OPTION (pfile, std) = l->std;
143 CPP_OPTION (pfile, digraphs) = l->digraphs;
144 CPP_OPTION (pfile, uliterals) = l->uliterals
186 cpp_reader *pfile; local
    [all...]
files.cc 171 static bool pch_open_file (cpp_reader *pfile, _cpp_file *file,
173 static bool find_file_in_dir (cpp_reader *pfile, _cpp_file *file,
175 static bool read_file_guts (cpp_reader *pfile, _cpp_file *file,
177 static bool read_file (cpp_reader *pfile, _cpp_file *file,
182 static void open_file_failed (cpp_reader *pfile, _cpp_file *file, int,
189 static void allocate_file_hash_entries (cpp_reader *pfile);
190 static struct cpp_file_hash_entry *new_file_hash_entry (cpp_reader *pfile);
196 static char *remap_filename (cpp_reader *pfile, _cpp_file *file);
289 validity using PFILE->cb.valid_pch. Return true iff a valid file is
293 pch_open_file (cpp_reader *pfile, _cpp_file *file, bool *invalid_pch
1525 cpp_reader *pfile; member in struct:report_missing_guard_data
    [all...]
  /src/external/gpl3/gcc/dist/libcpp/
init.cc 137 cpp_set_lang (cpp_reader *pfile, enum c_lang lang)
141 CPP_OPTION (pfile, lang) = lang;
143 CPP_OPTION (pfile, c99) = l->c99;
144 CPP_OPTION (pfile, cplusplus) = l->cplusplus;
145 CPP_OPTION (pfile, extended_numbers) = l->extended_numbers;
146 CPP_OPTION (pfile, extended_identifiers) = l->extended_identifiers;
147 CPP_OPTION (pfile, c11_identifiers) = l->c11_identifiers;
148 CPP_OPTION (pfile, xid_identifiers) = l->xid_identifiers;
149 CPP_OPTION (pfile, std) = l->std;
150 CPP_OPTION (pfile, digraphs) = l->digraphs
196 cpp_reader *pfile; local
    [all...]
files.cc 175 static bool pch_open_file (cpp_reader *pfile, _cpp_file *file,
177 static bool find_file_in_dir (cpp_reader *pfile, _cpp_file *file,
179 static bool read_file_guts (cpp_reader *pfile, _cpp_file *file,
181 static bool read_file (cpp_reader *pfile, _cpp_file *file,
187 static void open_file_failed (cpp_reader *pfile, _cpp_file *file, int,
194 static void allocate_file_hash_entries (cpp_reader *pfile);
195 static struct cpp_file_hash_entry *new_file_hash_entry (cpp_reader *pfile);
201 static char *remap_filename (cpp_reader *pfile, _cpp_file *file);
294 validity using PFILE->cb.valid_pch. Return true iff a valid file is
298 pch_open_file (cpp_reader *pfile, _cpp_file *file, bool *invalid_pch
1547 cpp_reader *pfile; member in struct:report_missing_guard_data
    [all...]
  /src/sbin/cgdconfig/
cgdconfig.c 253 const char *Pfile = NULL;
273 if (Pfile)
275 Pfile = estrdup(optarg);
368 if (Pfile != NULL &&
374 if (Pfile != NULL && !Sflag) {
391 return generate(p, argc, argv, outfile, Pfile);
393 return generate_convert(p, argc, argv, outfile, Pfile);
784 char pfile[MAXPATHLEN]; local
787 strlcpy(pfile, dev, sizeof(pfile));
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
input.cc 1659 get_substring_ranges_for_loc (cpp_reader *pfile,
1666 gcc_assert (pfile);
1677 if (cpp_get_options (pfile)->track_macro_expansion != 2)
1796 const char *err = cpp_interpret_string_ranges (pfile, strs.address (),
1827 get_location_within_string (cpp_reader *pfile,
1842 = get_substring_ranges_for_loc (pfile, fc, concats, strloc, type, ranges);
1910 get_source_range_for_char (cpp_reader *pfile,
1923 = get_substring_ranges_for_loc (pfile, fc, concats, strloc, type, ranges);
1938 get_num_source_ranges_for_substring (cpp_reader *pfile,
1949 = get_substring_ranges_for_loc (pfile, fc, concats, strloc, type, ranges)
2637 cpp_reader *pfile = test.m_parser; local
2693 cpp_reader *pfile = test.m_parser; local
2732 cpp_reader *pfile = test.m_parser; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
input.cc 1534 get_substring_ranges_for_loc (cpp_reader *pfile,
1540 gcc_assert (pfile);
1551 if (cpp_get_options (pfile)->track_macro_expansion != 2)
1670 const char *err = cpp_interpret_string_ranges (pfile, strs.address (),
1701 get_location_within_string (cpp_reader *pfile,
1715 = get_substring_ranges_for_loc (pfile, concats, strloc, type, ranges);
1751 get_source_range_for_char (cpp_reader *pfile,
1763 = get_substring_ranges_for_loc (pfile, concats, strloc, type, ranges);
1778 get_num_source_ranges_for_substring (cpp_reader *pfile,
1788 = get_substring_ranges_for_loc (pfile, concats, strloc, type, ranges)
2474 cpp_reader *pfile = test.m_parser; local
2529 cpp_reader *pfile = test.m_parser; local
2567 cpp_reader *pfile = test.m_parser; local
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/src/
gtest.cc 4504 FILE* pfile = posix::FOpen(premature_exit_filepath, "w"); local
4505 fwrite("0", 1, 1, pfile);
4506 fclose(pfile);

Completed in 125 milliseconds