Home | History | Annotate | Download | only in aidl

Lines Matching refs:output_

34   StringCodeWriter(std::string* output_buffer) : output_(output_buffer) {}
40 android::base::StringAppendV(output_, format, ap);
48 std::string* output_;
54 : output_(output_file),
57 if (close_on_destruction_ && output_ != nullptr) {
58 fclose(output_);
66 success = vfprintf(output_, format, ap) >= 0;
73 if (output_ != nullptr) {
74 no_error_ = fclose(output_) == 0 && no_error_;
75 output_ = nullptr;
82 FILE* output_;