Home
last modified time | relevance | path

Searched refs:datafile (Results 1 – 22 of 22) sorted by relevance

/third_party/ltp/testcases/kernel/sched/sched_stress/
Dsched_tc1.c163 FILE *datafile; /* file pointer to the open file */ in process_file() local
168 if ((datafile = fopen(filename, "r")) == NULL) in process_file()
174 while (fgets(record, 80, datafile)) { in process_file()
175 if (feof(datafile)) in process_file()
182 if (fclose(datafile)) in process_file()
Dsched_tc0.c176 FILE *datafile; /* file pointer to the open file */ in process_file() local
181 if ((datafile = fopen(filename, "r")) == NULL) in process_file()
187 while (fgets(record, 80, datafile)) { in process_file()
188 if (feof(datafile)) in process_file()
195 if (fclose(datafile)) in process_file()
Dsched_driver.c431 FILE *datafile; /* file pointer for temporary file */ local
455 if ((datafile = fopen("sch.measure", "r")) == NULL) {
462 fgets(temp, 50, datafile);
472 fgets(t2asc, 50, datafile);
479 if (fclose(datafile) != 0) {
/third_party/flutter/skia/third_party/externals/freetype/src/tools/
Dafblue.pl29 my $datafile = $ARGV[0];
89 warn "$datafile:$INPUT_LINE_NUMBER: warning: $message\n";
96 die "$datafile:$INPUT_LINE_NUMBER: error: $message\n";
234 open(DATA, $datafile) || die "$prog: can't open \`$datafile': $OS_ERROR\n";
537 my $s2 = "using data from file \`$datafile'.";
/third_party/freetype/src/tools/
Dafblue.pl29 my $datafile = $ARGV[0];
89 warn "$datafile:$INPUT_LINE_NUMBER: warning: $message\n";
96 die "$datafile:$INPUT_LINE_NUMBER: error: $message\n";
234 open(DATA, $datafile) || die "$prog: can't open \`$datafile': $OS_ERROR\n";
537 my $s2 = "using data from file \`$datafile'.";
/third_party/skia/third_party/externals/freetype/src/tools/
Dafblue.pl29 my $datafile = $ARGV[0];
89 warn "$datafile:$INPUT_LINE_NUMBER: warning: $message\n";
96 die "$datafile:$INPUT_LINE_NUMBER: error: $message\n";
234 open(DATA, $datafile) || die "$prog: can't open \`$datafile': $OS_ERROR\n";
537 my $s2 = "using data from file \`$datafile'.";
/third_party/openssl/test/recipes/
D80-test_tsa.t52 my $datafile = shift;
54 ok(run(app([@RUN, "-reply", "-section", "$datafile",
61 my $datafile = shift;
66 ok(run(app([@RUN, "-verify", "-data", "$datafile",
/third_party/boost/libs/graph/example/
Dkevin-bacon.cpp48 std::ifstream datafile(argc >= 2 ? argv[1] : "./kevin-bacon.dat"); in main() local
49 if (!datafile) in main()
70 for (std::string line; std::getline(datafile, line);) in main()
Dboost_web_graph.cpp74 std::ifstream datafile(argc >= 2 ? argv[1] : "./boost_web.dat"); in main() local
75 if (!datafile) in main()
106 while (std::getline(datafile, line)) in main()
/third_party/icu/icu4c/source/test/perf/perldriver/
DPerfFramework.pm101 my $datafile = shift;
106 if($datafile) {
107 $locAndData .= " -f $datafile";
/third_party/icu/icu4j/perf-tests/perldriver/
DPerfFramework4j.pm104 my $datafile = shift;
110 if($datafile) {
111 $locAndData .= " -f $datafile";
/third_party/protobuf/benchmarks/php/
DPhpBenchmark.php98 $datafile = fopen($file, "r") or die("Unable to open file " . $file);
99 $bytes = fread($datafile, filesize($file));
/third_party/gstreamer/gstplugins_bad/ext/opencv/
Dmotioncells_wrapper.h70 motioncellidx * motioncellsidx, gint64 starttime, char *datafile,
Dgstmotioncells.cpp888 char *datafile; in gst_motion_cells_transform_ip() local
949 datafile = g_strdup (filter->cur_datafile); in gst_motion_cells_transform_ip()
981 datafile, changed_datafile, thickness, filter->id); in gst_motion_cells_transform_ip()
1015 GFREE (datafile); in gst_motion_cells_transform_ip()
1116 GFREE (datafile); in gst_motion_cells_transform_ip()
DMotionCells.h134 char *datafile, bool p_changed_datafile, int p_thickness);
/third_party/gstreamer/gstplugins_good/gst/isomp4/
Datomsrecovery.h150 MdatRecovFile * mdat_recov_file_create (FILE * file, gboolean datafile,
Datomsrecovery.c395 mdat_recov_file_create (FILE * file, gboolean datafile, GError ** err) in mdat_recov_file_create() argument
402 mrf->rawfile = datafile; in mdat_recov_file_create()
415 if (datafile) { in mdat_recov_file_create()
/third_party/nghttp2/src/
Dnghttp.h70 std::string datafile; member
Dh2load.cc2016 std::string datafile; in main() local
2067 datafile = optarg; in main()
2438 if (!datafile.empty()) { in main()
2439 config.data_fd = open(datafile.c_str(), O_RDONLY | O_BINARY); in main()
2441 std::cerr << "-d: Could not open file " << datafile << std::endl; in main()
2446 std::cerr << "-d: Could not stat file " << datafile << std::endl; in main()
Dnghttp.cc2514 if (!config.datafile.empty()) { in run()
2515 if (config.datafile == "-") { in run()
2562 data_fd = open(config.datafile.c_str(), O_RDONLY | O_BINARY); in run()
2564 std::cerr << "[ERROR] Could not open file " << config.datafile in run()
2570 std::cerr << "[ERROR] Could not stat file " << config.datafile in run()
2919 config.datafile = optarg; in main()
/third_party/python/Doc/library/
Dtime.rst720 variable to the path of the required timezone datafile, relative to the root of
/third_party/python/Doc/whatsnew/
D2.3.rst788 input = open('datafile', 'rb')