Home
last modified time | relevance | path

Searched refs:os (Results 176 – 200 of 313) sorted by relevance

12345678910>>...13

/art/runtime/gc/space/
Dzygote_space.cc86 void ZygoteSpace::Dump(std::ostream& os) const { in Dump()
87 os << GetType() in Dump()
Drosalloc_space.h155 void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) override { in LogFragmentationAllocFailure() argument
156 rosalloc_->LogFragmentationAllocFailure(os, failed_alloc_bytes); in LogFragmentationAllocFailure()
159 void DumpStats(std::ostream& os);
/art/tools/jvmti-agents/breakpoint-logger/
Dbreakpoint_logger.cc249 friend std::ostream& operator<<(std::ostream& os, ScopedMethodInfo const& method);
252 std::ostream& operator<<(std::ostream& os, const ScopedMethodInfo* method) { in operator <<() argument
253 return os << *method; in operator <<()
256 std::ostream& operator<<(std::ostream& os, ScopedMethodInfo const& method) { in operator <<() argument
257 return os << method.GetDeclaringClassInfo().GetName() << "->" << method.GetName() in operator <<()
/art/runtime/
Djava_frame_root_info.h50 void Describe(std::ostream& os) const override
Dcompiler_filter.h108 std::ostream& operator<<(std::ostream& os, const CompilerFilter::Filter& rhs);
Doffsets.h47 std::ostream& operator<<(std::ostream& os, const Offset& offs);
Dimage.cc151 std::ostream& operator<<(std::ostream& os, const ImageSection& section) { in operator <<() argument
152 return os << "size=" << section.Size() << " range=" << section.Offset() << "-" << section.End(); in operator <<()
/art/tools/veridex/
Dprecise_hidden_api_finder.h47 void Dump(std::ostream& os, HiddenApiStats* stats);
/art/test/ti-stress/
Dstress.cc284 friend std::ostream& operator<<(std::ostream &os, ScopedMethodInfo const& m);
333 friend std::ostream& operator<<(std::ostream &os, ScopedFieldInfo const& m);
336 std::ostream& operator<<(std::ostream &os, const ScopedFieldInfo* m) { in operator <<() argument
337 return os << *m; in operator <<()
340 std::ostream& operator<<(std::ostream &os, ScopedFieldInfo const& m) { in operator <<() argument
341 return os << m.GetDeclaringClassInfo().GetName() << "->" << m.GetName() in operator <<()
345 std::ostream& operator<<(std::ostream &os, const ScopedMethodInfo* m) { in operator <<() argument
346 return os << *m; in operator <<()
349 std::ostream& operator<<(std::ostream &os, ScopedMethodInfo const& m) { in operator <<() argument
350 return os << m.GetDeclaringClassInfo().GetName() << "->" << m.GetName() << m.GetSignature() in operator <<()
/art/runtime/arch/arm64/
Dinstruction_set_features_arm64.cc137 std::ostringstream os; in FromVariant() local
138 os << "Unexpected CPU variant for Arm64: " << variant; in FromVariant()
139 *error_msg = os.str(); in FromVariant()
/art/openjdkjvmti/
Dti_breakpoint.cc63 void Describe(std::ostream& os) const override REQUIRES_SHARED(art::Locks::mutator_lock_) { in Describe()
64 art::ReflectionSourceInfo::Describe(os); in Describe()
65 os << " jvmti Breakpoint Method=" << m_->PrettyMethod() << " PC=" << pc_; in Describe()
/art/runtime/entrypoints/quick/
Dquick_entrypoints_enum.h35 std::ostream& operator<<(std::ostream& os, const QuickEntrypointEnum& kind);
/art/libartbase/base/
Dallocator.h70 std::ostream& operator<<(std::ostream& os, AllocatorTag tag);
86 void Dump(std::ostream& os);
Dindenter.h116 explicit VariableIndentationOutputStream(std::ostream* os, char text = kIndentChar)
117 : indenter_(os->rdbuf(), text, 0u),
Dmem_map.h298 static void DumpMaps(std::ostream& os, bool terse = false)
338 static void DumpMapsLocked(std::ostream& os, bool terse)
420 std::ostream& operator<<(std::ostream& os, const MemMap& mem_map);
/art/tools/bisection_search/
Dbisection_search.py27 import os
35 sys.path.append(os.path.dirname(os.path.dirname(
36 os.path.realpath(__file__))))
/art/compiler/utils/arm/
Dconstants_arm.h99 std::ostream& operator<<(std::ostream& os, const DRegister& rhs);
/art/compiler/utils/x86/
Dconstants_x86.h55 std::ostream& operator<<(std::ostream& os, const X87Register& reg);
/art/runtime/gc/accounting/
Dremembered_set.h62 void Dump(std::ostream& os);
/art/compiler/utils/arm64/
Dmanaged_register_arm64.h146 void Print(std::ostream& os) const;
214 std::ostream& operator<<(std::ostream& os, const Arm64ManagedRegister& reg);
/art/test/971-iface-super/util-src/
Dgenerate_java.py22 import os
26 BUILD_TOP = os.getenv("ANDROID_BUILD_TOP")
/art/test/968-default-partial-compile-gen/util-src/
Dgenerate_java.py22 import os
26 BUILD_TOP = os.getenv("ANDROID_BUILD_TOP")
/art/tools/jvmti-agents/ti-alloc-sample/
Dti_alloc_sample.cc153 friend std::ostream& operator<<(std::ostream &os, ScopedClassInfo const& m);
225 std::ostream& operator<<(std::ostream &os, ScopedClassInfo const& c) { in operator <<() argument
228 return os << c.GetName() << "<" << generic << ">" << " file: " << c.GetSourceFileName(); in operator <<()
230 return os << c.GetName() << " file: " << c.GetSourceFileName(); in operator <<()
/art/runtime/gc/
Dheap.cc1142 void Heap::DumpGcPerformanceInfo(std::ostream& os) { in DumpGcPerformanceInfo() argument
1144 os << "Dumping cumulative Gc timings\n"; in DumpGcPerformanceInfo()
1151 collector->DumpPerformanceInfo(os); in DumpGcPerformanceInfo()
1156 os << "Total time spent in GC: " << PrettyDuration(total_duration) << "\n"; in DumpGcPerformanceInfo()
1157 os << "Mean GC size throughput: " in DumpGcPerformanceInfo()
1161 os << "Mean GC object throughput: " in DumpGcPerformanceInfo()
1165 os << "Total number of allocations " << total_objects_allocated << "\n"; in DumpGcPerformanceInfo()
1166 os << "Total bytes allocated " << PrettySize(GetBytesAllocatedEver()) << "\n"; in DumpGcPerformanceInfo()
1167 os << "Total bytes freed " << PrettySize(GetBytesFreedEver()) << "\n"; in DumpGcPerformanceInfo()
1168 os << "Free memory " << PrettySize(GetFreeMemory()) << "\n"; in DumpGcPerformanceInfo()
[all …]
/art/test/201-built-in-except-detail-messages/src/
DMain.java52 Object[] os = new Object[1]; in arrayAccess() local
88 os[2] = null; in arrayAccess()
96 Object o = os[2]; in arrayAccess()

12345678910>>...13