Home
last modified time | relevance | path

Searched refs:os (Results 76 – 100 of 313) sorted by relevance

12345678910>>...13

/art/runtime/base/
Dmutex.cc207 void BaseMutex::DumpAll(std::ostream& os) { in DumpAll() argument
209 os << "Mutex logging:\n"; in DumpAll()
216 os << "(Contended)\n"; in DumpAll()
219 mutex->Dump(os); in DumpAll()
220 os << "\n"; in DumpAll()
223 os << "(Never contented)\n"; in DumpAll()
226 mutex->Dump(os); in DumpAll()
227 os << "\n"; in DumpAll()
320 void BaseMutex::DumpContention(std::ostream& os) const { in DumpContention()
327 os << "never contended"; in DumpContention()
[all …]
/art/runtime/arch/x86/
Dregisters_x86.h40 std::ostream& operator<<(std::ostream& os, const Register& rhs);
54 std::ostream& operator<<(std::ostream& os, const XmmRegister& reg);
/art/tools/runtime_memusage/
Dprune_sanitizer_output.py25 import os
96 if not os.path.isdir(path_name):
142 filename = os.path.basename(trace_file.name + "_filtered")
143 outfile = os.path.join(out_dir_name, filename)
/art/runtime/arch/arm64/
Dregisters_arm64.h71 std::ostream& operator<<(std::ostream& os, const XRegister& rhs);
111 std::ostream& operator<<(std::ostream& os, const WRegister& rhs);
150 std::ostream& operator<<(std::ostream& os, const DRegister& rhs);
189 std::ostream& operator<<(std::ostream& os, const SRegister& rhs);
/art/libartbase/base/
Darena_allocator.cc130 void ArenaAllocatorStatsImpl<kCount>::Dump(std::ostream& os, const Arena* first, in Dump() argument
144 os << " MEM: used: " << bytes_allocated << ", allocated: " << malloc_bytes in Dump()
148 os << "Number of arenas allocated: " << num_arenas << ", Number of allocations: " in Dump()
151 os << "===== Allocation by kind\n"; in Dump()
156 os << kAllocNames[i] << std::setw(10) << alloc_stats_[i] << "\n"; in Dump()
335 void MemStats::Dump(std::ostream& os) const { in Dump()
336 os << name_ << " stats:\n"; in Dump()
337 stats_->Dump(os, first_arena_, lost_bytes_adjustment_); in Dump()
Dhiddenapi_flags.h310 void Dump(std::ostream& os) const { in Dump() argument
314 os << "invalid"; in Dump()
319 os << kValueNames[GetIntValue()]; in Dump()
329 os << ","; in Dump()
331 os << kDomainApiNames[i]; in Dump()
353 inline std::ostream& operator<<(std::ostream& os, ApiList value) {
354 value.Dump(os);
355 return os;
/art/tools/ahat/src/main/com/android/ahat/
DBitmapHandler.java50 OutputStream os = exchange.getResponseBody(); in handle() local
51 ImageIO.write(bitmap, "png", os); in handle()
52 os.close(); in handle()
/art/tools/jvmti-agents/ti-alloc-sample/
DREADME.md38 +5,dispatchMessage(Landroid/os/Message;)V
39 +6,handleMessage(Landroid/os/Message;)V
44 +11,createFromParcel(Landroid/os/Parcel;)Ljava/lang/Object;
45 +12,createFromParcel(Landroid/os/Parcel;)Landroid/view/DisplayInfo;
46 +13,<init>(Landroid/os/Parcel;Landroid/view/DisplayInfo$1;)V
47 +14,<init>(Landroid/os/Parcel;)V
48 +15,readFromParcel(Landroid/os/Parcel;)V
/art/imgdiag/
Dimgdiag.cc233 RegionCommon(std::ostream* os, in RegionCommon()
238 os_(*os), in RegionCommon()
380 RegionSpecializedBase(std::ostream* os, in RegionSpecializedBase() argument
386 : RegionCommon<mirror::Object>(os, remote_contents, zygote_contents, boot_map, image_header), in RegionSpecializedBase()
387 os_(*os), in RegionSpecializedBase()
708 RegionSpecializedBase(std::ostream* os, in RegionSpecializedBase() argument
714 : RegionCommon<ArtMethod>(os, remote_contents, zygote_contents, boot_map, image_header), in RegionSpecializedBase()
715 os_(*os) { in RegionSpecializedBase()
948 RegionData(std::ostream* os, in RegionData() argument
954 : RegionSpecializedBase<T>(os, in RegionData()
[all …]
/art/tools/jfuzz/
Drun_jfuzz_test.py20 import os
30 sys.path.append(os.path.dirname(os.path.dirname(
31 os.path.realpath(__file__))))
401 self._save_dir = os.getcwd()
406 os.chdir(self._jfuzz_dir)
411 os.chdir(self._save_dir)
522 os.mkdir(ddir)
546 repro_cmd_str = (os.path.basename(__file__) +
579 bisection_search_path = os.path.join(
603 for file_name in os.listdir(self._jfuzz_dir):
[all …]
Drun_jfuzz_test_nightly.py18 import os
38 cwd = os.path.dirname(os.path.realpath(__file__))
/art/runtime/
Dtrace.cc630 std::ostringstream os; in FinishTracing() local
632 os << StringPrintf("%cversion\n", kTraceTokenChar); in FinishTracing()
633 os << StringPrintf("%d\n", GetTraceVersion(clock_source_)); in FinishTracing()
634 os << StringPrintf("data-file-overflow=%s\n", overflow_ ? "true" : "false"); in FinishTracing()
637 os << StringPrintf("clock=dual\n"); in FinishTracing()
639 os << StringPrintf("clock=thread-cpu\n"); in FinishTracing()
642 os << StringPrintf("clock=wall\n"); in FinishTracing()
644 os << StringPrintf("elapsed-time-usec=%" PRIu64 "\n", elapsed); in FinishTracing()
647 os << StringPrintf("num-method-calls=%zd\n", num_records); in FinishTracing()
649 os << StringPrintf("clock-call-overhead-nsec=%d\n", clock_overhead_ns_); in FinishTracing()
[all …]
Dhidden_api.cc58 static inline std::ostream& operator<<(std::ostream& os, AccessMethod value) { in operator <<() argument
64 os << "reflection"; in operator <<()
67 os << "JNI"; in operator <<()
70 os << "linking"; in operator <<()
73 return os; in operator <<()
76 static inline std::ostream& operator<<(std::ostream& os, const AccessContext& value) in operator <<() argument
80 os << value.GetClass()->GetDescriptor(&tmp); in operator <<()
82 os << value.GetDexFile()->GetLocation(); in operator <<()
84 os << "<unknown_caller>"; in operator <<()
86 return os; in operator <<()
[all …]
Dreference_table.h50 void Dump(std::ostream& os)
60 static void Dump(std::ostream& os, Table& entries)
/art/disassembler/
Ddisassembler_arm.h35 size_t Dump(std::ostream& os, const uint8_t* begin) override;
36 void Dump(std::ostream& os, const uint8_t* begin, const uint8_t* end) override;
/art/runtime/arch/x86_64/
Dregisters_x86_64.h48 std::ostream& operator<<(std::ostream& os, const Register& rhs);
69 std::ostream& operator<<(std::ostream& os, const FloatRegister& rhs);
/art/tools/jvmti-agents/list-extensions/
Dlist-extensions.cc45 std::ostream& operator<<(std::ostream& os, const jvmtiParamInfo& param) { in operator <<() argument
46 os << param.name << " ("; in operator <<()
49 os << #name; \ in operator <<()
60 os << ", "; in operator <<()
81 os << ")"; in operator <<()
82 return os; in operator <<()
/art/runtime/verifier/
Dscoped_newline.h29 explicit ScopedNewLine(std::ostream& os) : stream(os) {} in ScopedNewLine()
/art/runtime/ti/
Dagent.cc155 std::ostream& operator<<(std::ostream &os, AgentSpec const& m) { in operator <<() argument
156 return os << "AgentSpec { name=\"" << m.name_ << "\", args=\"" << m.args_ << "\" }"; in operator <<()
230 std::ostream& operator<<(std::ostream &os, const Agent* m) { in operator <<() argument
231 return os << *m; in operator <<()
234 std::ostream& operator<<(std::ostream &os, Agent const& m) { in operator <<() argument
235 return os << "Agent { name=\"" << m.name_ << "\", handle=" << m.dlopen_handle_ << " }"; in operator <<()
/art/runtime/arch/arm/
Dregisters_arm.h53 std::ostream& operator<<(std::ostream& os, const Register& rhs);
93 std::ostream& operator<<(std::ostream& os, const SRegister& rhs);
/art/test/utils/python/testgen/
Dutils.py22 import os
26 BUILD_TOP = os.getenv("ANDROID_BUILD_TOP")
/art/compiler/utils/x86_64/
Dconstants_x86_64.h47 std::ostream& operator<<(std::ostream& os, const CpuRegister& reg);
68 std::ostream& operator<<(std::ostream& os, const XmmRegister& reg);
82 std::ostream& operator<<(std::ostream& os, const X87Register& reg);
/art/runtime/gc/
Dreference_queue.cc104 void ReferenceQueue::Dump(std::ostream& os) const { in Dump()
106 os << "Reference starting at list_=" << list_ << "\n"; in Dump()
112 os << "Reference= " << cur << " PendingNext=" << pending_next; in Dump()
114 os << " Zombie=" << cur->AsFinalizerReference()->GetZombie(); in Dump()
116 os << "\n"; in Dump()
/art/tools/dexanalyze/
Ddexanalyze_experiments.h60 virtual void Dump(std::ostream& os, uint64_t total_size) const = 0;
69 void Dump(std::ostream& os, uint64_t total_size) const override;
97 void Dump(std::ostream& os, uint64_t total_size) const override;
167 void Dump(std::ostream& os, uint64_t total_size) const override;
/art/test/1971-multi-force-early-return/src/art/
DTest1971.java60 PrintStream os = new PrintStream(baos); in safeDumpStackTrace() local
62 os.println( in safeDumpStackTrace()
71 os.println(prefix + "<Additional frames hidden>"); in safeDumpStackTrace()
75 os.flush(); in safeDumpStackTrace()

12345678910>>...13