Home
last modified time | relevance | path

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

/external/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) {
/external/v8/tools/
Dgc-nvp-trace-processor.py74 args = ['"%s"' % context.datafile,
107 def __init__(self, datafile, field_to_index): argument
108 self.datafile = datafile
144 with open(datafile_name, 'w') as datafile:
147 datafile.write('\t'.join(data_line))
148 datafile.write('\n')
150 def generate_script_and_datafile(plot, trace, datafile, output): argument
152 generate_datafile(datafile, trace, fields)
166 context = Context(datafile, field_to_index)
Dtest-server.py108 datafile = os.path.join(data_dir, "mypubkey")
109 with open(datafile, "w") as f:
Ddraw_instruction_graph.sh92 set datafile separator ','
/external/fio/examples/
Dsurface-scan.fio13 filename=datafile.tmp ; or use a full disk, for example /dev/sda
21 filename=datafile.tmp
/external/ltp/testscripts/
Dltpstress.sh45 datafile="/tmp/ltpstress.data"
64 -d datafile Data file for 'sar' or 'top' to log to. Default is "/tmp/ltpstress.data".
/external/icu/icu4c/source/test/perf/perldriver/
DPerfFramework.pm101 my $datafile = shift;
106 if($datafile) {
107 $locAndData .= " -f $datafile";
/external/icu/icu4j/perf-tests/perldriver/
DPerfFramework4j.pm104 my $datafile = shift;
110 if($datafile) {
111 $locAndData .= " -f $datafile";
/external/v8/src/arm64/
Dinstrument-arm64.cc97 Instrument::Instrument(const char* datafile, uint64_t sample_period) in Instrument() argument
102 if (datafile != NULL) { in Instrument()
103 output_stream_ = fopen(datafile, "w"); in Instrument()
105 fprintf(stderr, "Can't open output file %s. Using stderr.\n", datafile); in Instrument()
Dinstrument-arm64.h55 explicit Instrument(const char* datafile = NULL,
/external/vixl/src/aarch64/
Dinstrument-aarch64.cc109 Instrument::Instrument(const char* datafile, uint64_t sample_period) in Instrument() argument
113 if (datafile != NULL) { in Instrument()
114 output_stream_ = fopen(datafile, "w"); in Instrument()
116 printf("Can't open output file %s. Using stdout.\n", datafile); in Instrument()
Dinstrument-aarch64.h81 const char* datafile = NULL,
/external/python/cpython2/Doc/library/
Dtime.rst535 variable to the path of the required timezone datafile, relative to the root of
/external/python/cpython2/Doc/whatsnew/
D2.3.rst788 input = open('datafile', 'rb')