Searched refs:output_ (Results 1 - 10 of 10) sorted by relevance

/art/compiler/linker/
H A Derror_delaying_output_stream.h31 output_(output),
39 if (!output_->WriteFully(buffer, byte_count)) {
67 off_t actual_offset = output_->Seek(offset, whence);
83 output_good_ = output_->Flush();
94 OutputStream* output_; member in class:art::FINAL
H A Drelative_patcher_test.h73 output_(),
74 out_("test output stream", &output_) {
123 output_.reserve(output_size);
126 DCHECK(output_.empty());
181 CHECK_EQ(output_.size(), output_size);
200 CHECK_LT(offset, output_.size());
201 CHECK_LE(offset + expected_code.size(), output_.size());
202 ArrayRef<const uint8_t> linked_code(&output_[offset], expected_code.size());
278 std::vector<uint8_t> output_; member in class:art::linker::RelativePatcherTest
/art/dex2oat/
H A Ddex2oat_test.cc41 output_ = "";
80 ASSERT_FALSE(success) << output_;
179 output_ += buffer;
188 std::string output_ = ""; member in class:art::Dex2oatTest
235 EXPECT_NE(output_.find("Large app, accepted running with swap."), std::string::npos)
236 << output_;
238 EXPECT_EQ(output_.find("Large app, accepted running with swap."), std::string::npos)
239 << output_;
261 EXPECT_NE(output_.find("dex2oat took"), std::string::npos) << output_;
[all...]
/art/compiler/optimizing/
H A Dgraph_visualizer.cc171 output_(output),
189 output_ << std::flush;
194 output_ << "begin_" << name << "\n";
201 output_ << "end_" << name << "\n";
206 output_ << name << " \"" << property << "\"\n";
211 output_ << name << " \"" << property << id << "\"\n";
216 output_ << name << "\n";
221 output_ << name << " " << time(nullptr) << "\n";
226 output_ << name << " " << value << "\n";
231 output_ << " ";
757 std::ostream& output_; member in class:art::HGraphVisualizerPrinter
[all...]
H A Dlocations.h498 DCHECK(output_.IsInvalid());
500 output_ = location;
508 DCHECK(output_.IsStackSlot() || output_.IsDoubleStackSlot() || output_.IsUnallocated());
509 output_ = location;
531 Location Out() const { return output_; }
576 && output_.IsUnallocated()
577 && (output_.GetPolicy() == Location::kSameAsFirstInput);
607 Location output_;
[all...]
H A Dgraph_visualizer.h111 std::ostream* const output_; member in class:art::HGraphVisualizer::std
H A Dregister_allocator_test.cc747 first_sub->InputAt(0)->GetLocations()->output_ = Location::RegisterLocation(2);
/art/runtime/hprof/
H A Dhprof.cc415 #define __ output_->
441 output_ = &count_output;
445 output_ = nullptr;
506 output_->StartNewRecord(HPROF_TAG_HEAP_DUMP_SEGMENT, kHprofTime);
513 output_->StartNewRecord(HPROF_TAG_HEAP_DUMP_END, kHprofTime);
514 output_->EndRecord();
533 output_->EndRecord();
541 output_->StartNewRecord(HPROF_TAG_LOAD_CLASS, kHprofTime);
559 output_->StartNewRecord(HPROF_TAG_STRING, kHprofTime);
572 output_
867 EndianOutput* output_ = nullptr; member in class:art::hprof::Hprof
[all...]
/art/compiler/linker/arm/
H A Drelative_patcher_thumb2_test.cc101 if (output_.size() < thunk_offset + expected_code.size()) {
102 LOG(ERROR) << "output_.size() == " << output_.size() << " < "
106 ArrayRef<const uint8_t> linked_code(&output_[thunk_offset], expected_code.size());
/art/compiler/linker/arm64/
H A Drelative_patcher_arm64_test.cc132 if (output_.size() < thunk_offset + expected_code.size()) {
133 LOG(ERROR) << "output_.size() == " << output_.size() << " < "
137 ArrayRef<const uint8_t> linked_code(&output_[thunk_offset], expected_code.size());
329 ASSERT_EQ(thunk_offset + thunk_size, output_.size());
331 ArrayRef<const uint8_t> thunk_code(&output_[thunk_offset], thunk_size);

Completed in 157 milliseconds