Searched defs:datafile (Results 1 - 2 of 2) sorted by relevance

/external/vixl/src/a64/
H A Dinstrument-a64.cc117 Instrument::Instrument(const char* datafile, uint64_t sample_period) argument
120 // Set up the output stream. If datafile is non-NULL, use that file. If it
121 // can't be opened, or datafile is NULL, use stdout.
122 if (datafile != NULL) {
123 output_stream_ = fopen(datafile, "w");
125 printf("Can't open output file %s. Using stdout.\n", datafile);
/external/chromium_org/v8/src/arm64/
H A Dinstrument-arm64.cc97 Instrument::Instrument(const char* datafile, uint64_t sample_period) argument
100 // Set up the output stream. If datafile is non-NULL, use that file. If it
101 // can't be opened, or datafile is NULL, use stderr.
102 if (datafile != NULL) {
103 output_stream_ = fopen(datafile, "w");
105 fprintf(stderr, "Can't open output file %s. Using stderr.\n", datafile);

Completed in 83 milliseconds