HomeSort by relevance Sort by last modified time
    Searched refs:out_file_ (Results 1 - 13 of 13) sorted by null

  /external/webrtc/webrtc/modules/audio_coding/neteq/tools/
output_audio_file.h 29 out_file_ = fopen(file_name.c_str(), "wb");
33 if (out_file_)
34 fclose(out_file_);
38 assert(out_file_); variable
39 return fwrite(audio, sizeof(*audio), num_samples, out_file_) == num_samples;
43 FILE* out_file_; member in class:webrtc::test::OutputAudioFile
  /art/dexlayout/
dexlayout.cc 503 fputs(annotation->GetType()->GetStringId()->Data(), out_file_);
506 fputc(' ', out_file_);
507 fputs(subannotation->GetName()->Data(), out_file_);
508 fputc('=', out_file_);
518 fprintf(out_file_, "%" PRId8, data->GetByte());
521 fprintf(out_file_, "%" PRId16, data->GetShort());
524 fprintf(out_file_, "%" PRIu16, data->GetChar());
527 fprintf(out_file_, "%" PRId32, data->GetInt());
530 fprintf(out_file_, "%" PRId64, data->GetLong());
533 fprintf(out_file_, "%g", data->GetFloat())
    [all...]
dex_visualize.cc 48 : out_file_(nullptr),
54 out_file_ = fopen(MultidexName("layout", dex_index, ".gnuplot").c_str(), "w");
55 if (out_file_ == nullptr) {
58 fprintf(out_file_, "set terminal png size 1920,1080\n");
59 fprintf(out_file_, "set output \"%s\"\n", MultidexName("layout", dex_index, ".png").c_str());
60 fprintf(out_file_, "set title \"%s\"\n", MultidexName("classes", dex_index, ".dex").c_str());
61 fprintf(out_file_, "set xlabel \"Page offset into dex\"\n");
62 fprintf(out_file_, "set ylabel \"ClassDef index\"\n");
63 fprintf(out_file_, "set xtics rotate out (");
69 fprintf(out_file_, ", ");
237 FILE* out_file_; member in class:art::Dumper
    [all...]
dexlayout.h 77 : options_(options), info_(info), out_file_(out_file), header_(header) { }
133 FILE* out_file_; member in class:art::DexLayout
  /external/webrtc/webrtc/modules/video_coding/test/
test_util.cc 72 out_file_(NULL),
95 if (out_file_ != NULL) {
96 fclose(out_file_);
111 if (out_file_ == NULL || video_frame.width() != width_ ||
113 if (out_file_) {
114 fclose(out_file_);
122 out_file_ = fopen(filename_with_width_height.c_str(), "wb");
123 if (out_file_ == NULL) {
129 if (PrintVideoFrame(video_frame, out_file_) < 0) {
test_util.h 64 FILE* out_file_; member in class:FileOutputFrameReceiver
  /external/webrtc/webrtc/modules/audio_coding/codecs/tools/
audio_codec_speed_test.cc 37 out_file_(NULL) {
86 out_file_ = fopen(out_filename.c_str(), "wb");
87 assert(out_file_ != NULL);
95 fclose(out_file_);
115 output_length_sample_ * channels_, out_file_);
audio_codec_speed_test.h 76 FILE* out_file_; member in class:webrtc::AudioCodecSpeedTest
  /external/webrtc/webrtc/modules/audio_coding/test/
TestStereo.cc 246 out_file_.Close();
269 out_file_.Close();
290 out_file_.Close();
305 out_file_.Close();
347 out_file_.Close();
374 out_file_.Close();
412 out_file_.Close();
432 out_file_.Close();
445 out_file_.Close();
456 out_file_.Close()
    [all...]
opus_test.h 46 PCMFile out_file_; member in class:webrtc::OpusTest
opus_test.cc 130 out_file_.Close();
149 out_file_.Close();
182 out_file_.Close();
203 out_file_.Close();
211 int32_t out_freq_hz_b = out_file_.SamplingFrequency();
342 out_file_.Write10MsData(
374 out_file_.Open(file_name, 48000, "wb");
TestStereo.h 92 PCMFile out_file_; member in class:webrtc::TestStereo
  /external/webrtc/webrtc/modules/audio_processing/test/
audio_processing_unittest.cc 404 FILE* out_file_; member in class:webrtc::__anon38986::ApmTest
427 out_file_(NULL) {
467 if (out_file_) {
468 ASSERT_EQ(0, fclose(out_file_));
470 out_file_ = NULL;
514 if (out_file_) {
515 ASSERT_EQ(0, fclose(out_file_));
521 out_file_ = fopen(filename.c_str(), "wb");
522 ASSERT_TRUE(out_file_ != NULL) << "Could not open file " <<
    [all...]

Completed in 556 milliseconds