Home
last modified time | relevance | path

Searched refs:os (Results 251 – 275 of 313) sorted by relevance

1...<<111213

/art/libdexfile/dex/
Dprimitive.h222 std::ostream& operator<<(std::ostream& os, Primitive::Type state);
Ddex_instruction_utils.h48 std::ostream& operator<<(std::ostream& os, DexMemAccessType type);
Ddex_instruction.h695 std::ostream& operator<<(std::ostream& os, Instruction::Code code);
696 std::ostream& operator<<(std::ostream& os, Instruction::Format format);
/art/runtime/gc/space/
Ddlmalloc_space.h152 void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) override
Dmalloc_space.h114 void Dump(std::ostream& os) const override;
Ddlmalloc_space.cc362 void DlMallocSpace::LogFragmentationAllocFailure(std::ostream& os, in LogFragmentationAllocFailure() argument
372 os << "; failed due to fragmentation (largest possible contiguous allocation " in LogFragmentationAllocFailure()
Drosalloc_space.cc443 void RosAllocSpace::DumpStats(std::ostream& os) { in DumpStats() argument
445 rosalloc_->DumpStats(os); in DumpStats()
/art/test/971-iface-super/util-src/
Dgenerate_smali.py21 import os
25 BUILD_TOP = os.getenv("ANDROID_BUILD_TOP")
/art/runtime/gc/allocator/
Drosalloc.h932 void LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes)
935 void DumpStats(std::ostream& os)
939 friend std::ostream& operator<<(std::ostream& os, RosAlloc::PageMapKind rhs);
943 std::ostream& operator<<(std::ostream& os, RosAlloc::PageMapKind rhs);
/art/runtime/base/
Dlocks.h153 std::ostream& operator<<(std::ostream& os, LockLevel rhs);
/art/libartbase/base/
Dbit_vector.h260 void Dump(std::ostream& os, const char* prefix) const;
/art/runtime/jit/
Dprofile_saver.cc893 void ProfileSaver::DumpInstanceInfo(std::ostream& os) { in DumpInstanceInfo() argument
896 instance_->DumpInfo(os); in DumpInstanceInfo()
900 void ProfileSaver::DumpInfo(std::ostream& os) { in DumpInfo() argument
901 os << "ProfileSaver total_bytes_written=" << total_bytes_written_ << '\n' in DumpInfo()
Djit.cc199 void Jit::DumpInfo(std::ostream& os) { in DumpInfo() argument
200 code_cache_->Dump(os); in DumpInfo()
201 cumulative_timings_.Dump(os); in DumpInfo()
203 memory_use_.PrintMemoryUse(os); in DumpInfo()
206 void Jit::DumpForSigQuit(std::ostream& os) { in DumpForSigQuit() argument
207 DumpInfo(os); in DumpForSigQuit()
208 ProfileSaver::DumpInstanceInfo(os); in DumpForSigQuit()
Djit_code_cache.cc1906 void JitCodeCache::Dump(std::ostream& os) { in Dump() argument
1908 os << "Current JIT code cache size (used / resident): " in Dump()
1915 os << "Zygote JIT code cache size (at point of fork): " in Dump()
1922 os << "Current JIT mini-debug-info size: " << PrettySize(GetJitMiniDebugInfoMemUsage()) << "\n" in Dump()
1931 histogram_stack_map_memory_use_.PrintMemoryUse(os); in Dump()
1932 histogram_code_memory_use_.PrintMemoryUse(os); in Dump()
1933 histogram_profiling_info_memory_use_.PrintMemoryUse(os); in Dump()
/art/libartbase/arch/
Dinstruction_set.h37 std::ostream& operator<<(std::ostream& os, InstructionSet rhs);
/art/runtime/jni/
Djni_env_ext.h55 void DumpReferenceTables(std::ostream& os)
/art/compiler/optimizing/
Dgraph_visualizer.cc99 friend std::ostream& operator<<(std::ostream& os, const StringList& list);
102 std::ostream& operator<<(std::ostream& os, const StringList& list) { in operator <<() argument
104 case StringList::kArrayBrackets: return os << "[" << list.sstream_.str() << "]"; in operator <<()
105 case StringList::kSetBrackets: return os << "{" << list.sstream_.str() << "}"; in operator <<()
Ddata_type.h254 std::ostream& operator<<(std::ostream& os, DataType::Type data_type);
/art/dex2oat/
Ddex2oat_image_test.cc61 std::ostream& operator<<(std::ostream& os, const ImageSizes& sizes) { in operator <<() argument
62 os << "art=" << sizes.art_size << " oat=" << sizes.oat_size << " vdex=" << sizes.vdex_size; in operator <<()
63 return os; in operator <<()
/art/runtime/
Dobj_ptr.h190 OBJPTR_INLINE std::ostream& operator<<(std::ostream& os, ObjPtr<MirrorType> ptr);
Dintern_table.cc59 void InternTable::DumpForSigQuit(std::ostream& os) const { in DumpForSigQuit()
60 os << "Intern table: " << StrongSize() << " strong; " << WeakSize() << " weak\n"; in DumpForSigQuit()
Druntime.h271 void DumpDeoptimizations(std::ostream& os);
272 void DumpForSigQuit(std::ostream& os);
273 void DumpLockHolders(std::ostream& os);
/art/compiler/utils/x86/
Dassembler_x86.cc27 std::ostream& operator<<(std::ostream& os, const XmmRegister& reg) { in operator <<() argument
28 return os << "XMM" << static_cast<int>(reg); in operator <<()
31 std::ostream& operator<<(std::ostream& os, const X87Register& reg) { in operator <<() argument
32 return os << "ST" << static_cast<int>(reg); in operator <<()
35 std::ostream& operator<<(std::ostream& os, const Address& addr) { in operator <<() argument
39 return os << "(%" << addr.rm() << ")"; in operator <<()
41 return os << static_cast<int>(addr.disp32()) << "(,%" << addr.index() in operator <<()
44 return os << "(%" << addr.base() << ",%" << addr.index() << "," << (1 << addr.scale()) << ")"; in operator <<()
47 return os << static_cast<int>(addr.disp8()) << "(%" << addr.rm() << ")"; in operator <<()
49 return os << static_cast<int>(addr.disp8()) << "(%" << addr.base() << ",%" in operator <<()
[all …]
/art/runtime/verifier/
Dreg_type_cache.h161 void Dump(std::ostream& os) REQUIRES_SHARED(Locks::mutator_lock_);
/art/test/
Drun-test560 tmp_dir="`cd $oldwd ; python -c "import os; import sys; sys.stdout.write(os.path.realpath('$tmp_dir…

1...<<111213