Home
last modified time | relevance | path

Searched refs:stream (Results 1 – 23 of 23) sorted by relevance

/art/runtime/
Dparsed_options.cc717 void ParsedOptions::UsageMessageV(FILE* stream, const char* fmt, va_list ap) { in UsageMessageV() argument
721 void ParsedOptions::UsageMessage(FILE* stream, const char* fmt, ...) { in UsageMessage() argument
724 UsageMessageV(stream, fmt, ap); in UsageMessage()
730 FILE* stream = error ? stderr : stdout; in Usage() local
735 UsageMessageV(stream, fmt, ap); in Usage()
740 UsageMessage(stream, "%s: [options] class [argument ...]\n", program); in Usage()
741 UsageMessage(stream, "\n"); in Usage()
742 UsageMessage(stream, "The following standard options are supported:\n"); in Usage()
743 UsageMessage(stream, " -classpath classpath (-cp classpath)\n"); in Usage()
744 UsageMessage(stream, " -Dproperty=value\n"); in Usage()
[all …]
Dparsed_options.h89 jint (*hook_vfprintf_)(FILE* stream, const char* format, va_list ap);
113 void UsageMessage(FILE* stream, const char* fmt, ...);
114 void UsageMessageV(FILE* stream, const char* fmt, va_list ap);
Ddex_file.cc763 void* context, const byte* stream, LocalInfo* local_in_reg) const { in DecodeDebugInfo0() argument
764 uint32_t line = DecodeUnsignedLeb128(&stream); in DecodeDebugInfo0()
765 uint32_t parameters_size = DecodeUnsignedLeb128(&stream); in DecodeDebugInfo0()
789 uint32_t id = DecodeUnsignedLeb128P1(&stream); in DecodeDebugInfo0()
817 uint8_t opcode = *stream++; in DecodeDebugInfo0()
828 address += DecodeUnsignedLeb128(&stream); in DecodeDebugInfo0()
832 line += DecodeSignedLeb128(&stream); in DecodeDebugInfo0()
837 reg = DecodeUnsignedLeb128(&stream); in DecodeDebugInfo0()
844 name_idx = DecodeUnsignedLeb128P1(&stream); in DecodeDebugInfo0()
845 descriptor_idx = DecodeUnsignedLeb128P1(&stream); in DecodeDebugInfo0()
[all …]
Druntime.h602 jint (*vfprintf_)(FILE* stream, const char* format, va_list ap);
Ddex_file.h950 void* context, const byte* stream, LocalInfo* local_in_reg) const;
/art/compiler/optimizing/
Dstack_map_test.cc37 StackMapStream<size_t> stream(&arena); in TEST() local
40 stream.AddStackMapEntry(0, 64, 0x3, &sp_mask, 2, 0); in TEST()
41 stream.AddDexRegisterEntry(DexRegisterMap::kInStack, 0); in TEST()
42 stream.AddDexRegisterEntry(DexRegisterMap::kConstant, -2); in TEST()
44 size_t size = stream.ComputeNeededSize(); in TEST()
47 stream.FillIn(region); in TEST()
74 StackMapStream<size_t> stream(&arena); in TEST() local
79 stream.AddStackMapEntry(0, 64, 0x3, &sp_mask1, 2, 2); in TEST()
80 stream.AddDexRegisterEntry(DexRegisterMap::kInStack, 0); in TEST()
81 stream.AddDexRegisterEntry(DexRegisterMap::kConstant, -2); in TEST()
[all …]
Dssa_liveness_analysis.h73 void Dump(std::ostream& stream) { in Dump() argument
74 stream << "[" << start_ << ", " << end_ << ")"; in Dump()
116 void Dump(std::ostream& stream) const { in Dump() argument
117 stream << position_; in Dump()
409 void Dump(std::ostream& stream) const { in Dump() argument
410 stream << "ranges: { "; in Dump()
413 current->Dump(stream); in Dump()
414 stream << " "; in Dump()
416 stream << "}, uses: { "; in Dump()
420 use->Dump(stream); in Dump()
[all …]
Dcode_generator_x86_64.h172 virtual void DumpCoreRegister(std::ostream& stream, int reg) const OVERRIDE;
173 virtual void DumpFloatingPointRegister(std::ostream& stream, int reg) const OVERRIDE;
Dcode_generator_x86.h169 virtual void DumpCoreRegister(std::ostream& stream, int reg) const OVERRIDE;
170 virtual void DumpFloatingPointRegister(std::ostream& stream, int reg) const OVERRIDE;
Dcode_generator_arm.h167 virtual void DumpCoreRegister(std::ostream& stream, int reg) const OVERRIDE;
168 virtual void DumpFloatingPointRegister(std::ostream& stream, int reg) const OVERRIDE;
Dcode_generator.h112 virtual void DumpCoreRegister(std::ostream& stream, int reg) const = 0;
113 virtual void DumpFloatingPointRegister(std::ostream& stream, int reg) const = 0;
Dregister_allocator.cc294 void RegisterAllocator::DumpInterval(std::ostream& stream, LiveInterval* interval) const { in DumpInterval() argument
295 interval->Dump(stream); in DumpInterval()
296 stream << ": "; in DumpInterval()
299 codegen_->DumpCoreRegister(stream, interval->GetRegister()); in DumpInterval()
301 codegen_->DumpFloatingPointRegister(stream, interval->GetRegister()); in DumpInterval()
304 stream << "spilled"; in DumpInterval()
306 stream << std::endl; in DumpInterval()
Dregister_allocator.h119 void DumpInterval(std::ostream& stream, LiveInterval* interval) const;
Dcode_generator_x86_64.cc141 void CodeGeneratorX86_64::DumpCoreRegister(std::ostream& stream, int reg) const { in DumpCoreRegister() argument
142 stream << X86_64ManagedRegister::FromCpuRegister(Register(reg)); in DumpCoreRegister()
145 void CodeGeneratorX86_64::DumpFloatingPointRegister(std::ostream& stream, int reg) const { in DumpFloatingPointRegister() argument
146 stream << X86_64ManagedRegister::FromXmmRegister(FloatRegister(reg)); in DumpFloatingPointRegister()
Dcode_generator_arm.cc151 void CodeGeneratorARM::DumpCoreRegister(std::ostream& stream, int reg) const { in DumpCoreRegister() argument
152 stream << ArmManagedRegister::FromCoreRegister(Register(reg)); in DumpCoreRegister()
155 void CodeGeneratorARM::DumpFloatingPointRegister(std::ostream& stream, int reg) const { in DumpFloatingPointRegister() argument
156 stream << ArmManagedRegister::FromDRegister(DRegister(reg)); in DumpFloatingPointRegister()
Dcode_generator_x86.cc134 void CodeGeneratorX86::DumpCoreRegister(std::ostream& stream, int reg) const { in DumpCoreRegister() argument
135 stream << X86ManagedRegister::FromCpuRegister(Register(reg)); in DumpCoreRegister()
138 void CodeGeneratorX86::DumpFloatingPointRegister(std::ostream& stream, int reg) const { in DumpFloatingPointRegister() argument
139 stream << X86ManagedRegister::FromXmmRegister(XmmRegister(reg)); in DumpFloatingPointRegister()
/art/runtime/base/
Dhistogram_test.cc124 std::stringstream stream; in TEST() local
126 hist->PrintConfidenceIntervals(stream, 0.99, data); in TEST()
128 EXPECT_EQ(expected, stream.str()); in TEST()
167 std::stringstream stream; in TEST() local
169 hist->PrintConfidenceIntervals(stream, 0.99, data); in TEST()
171 EXPECT_EQ(expected, stream.str()); in TEST()
206 std::stringstream stream; in TEST() local
208 hist->PrintConfidenceIntervals(stream, 0.99, data); in TEST()
210 EXPECT_EQ(expected, stream.str()); in TEST()
221 std::stringstream stream; in TEST() local
[all …]
Dlogging.h33 ::art::LogMessage(__FILE__, __LINE__, FATAL, -1).stream() \
39 ::art::LogMessage(__FILE__, __LINE__, FATAL, -1).stream() \
135 #define LOG(severity) ::art::LogMessage(__FILE__, __LINE__, severity, -1).stream()
136 #define PLOG(severity) ::art::LogMessage(__FILE__, __LINE__, severity, errno).stream()
143 #define VLOG(module) if (VLOG_IS_ON(module)) ::art::LogMessage(__FILE__, __LINE__, INFO, -1).stream
144 #define VLOG_STREAM(module) ::art::LogMessage(__FILE__, __LINE__, INFO, -1).stream()
213 std::ostream& stream() { in stream() function
/art/runtime/gc/accounting/
Dspace_bitmap-inl.h178 inline std::ostream& operator << (std::ostream& stream, const SpaceBitmap<kAlignment>& bitmap) {
179 return stream
Dspace_bitmap.h234 std::ostream& operator << (std::ostream& stream, const SpaceBitmap<kAlignment>& bitmap);
/art/runtime/gc/allocator/
Drosalloc.cc839 std::ostringstream stream; in Dump() local
840 stream << "RosAlloc Run = " << reinterpret_cast<void*>(this) in Dump()
850 return stream.str(); in Dump()
1350 std::ostringstream stream; in DumpPageMap() local
1351 stream << "RosAlloc PageMap: " << std::endl; in DumpPageMap()
1375 stream << "[" << i << "]=" << (pm == kPageMapReleased ? "Released" : "Empty") in DumpPageMap()
1383 stream << "curr_fpr=0x" << std::hex << reinterpret_cast<intptr_t>(curr_fpr) << std::endl; in DumpPageMap()
1392 stream << "[" << i << "]=Empty (FPR part)" in DumpPageMap()
1406 stream << "[" << i << "]=Large (start)" << std::endl; in DumpPageMap()
1412 stream << "[" << i << "]=Large (part)" << std::endl; in DumpPageMap()
[all …]
/art/runtime/gc/
Dheap.cc602 void Heap::DumpObject(std::ostream& stream, mirror::Object* obj) { in DumpObject() argument
604 stream << "(obj=null)"; in DumpObject()
621 stream << "Object " << obj; in DumpObject()
623 stream << " in space " << *space; in DumpObject()
626 stream << "\nclass=" << klass; in DumpObject()
628 stream << " type= " << SafePrettyTypeOf(obj); in DumpObject()
1204 void Heap::DumpSpaces(std::ostream& stream) const { in DumpSpaces()
1208 stream << space << " " << *space << "\n"; in DumpSpaces()
1210 stream << live_bitmap << " " << *live_bitmap << "\n"; in DumpSpaces()
1213 stream << mark_bitmap << " " << *mark_bitmap << "\n"; in DumpSpaces()
[all …]
Dheap.h556 void DumpSpaces(std::ostream& stream) const;
559 void DumpObject(std::ostream& stream, mirror::Object* obj) NO_THREAD_SAFETY_ANALYSIS;