Home
last modified time | relevance | path

Searched refs:tag (Results 1 – 11 of 11) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/
DLog.java36 public static void setLoggingLevel(LogTag tag) { in setLoggingLevel() argument
37 threshold = tag; in setLoggingLevel()
64 private static void log(LogTag tag, String msg) { in log() argument
65 if (tag.ordinal() >= threshold.ordinal()) { in log()
66 System.out.println("[" + tag.toString() + "] " + msg); in log()
/art/runtime/base/
Dallocator.h73 std::ostream& operator<<(std::ostream& os, const AllocatorTag& tag);
89 inline void RegisterAllocation(AllocatorTag tag, size_t bytes) { in RegisterAllocation() argument
90 g_total_bytes_used[tag].FetchAndAddSequentiallyConsistent(bytes); in RegisterAllocation()
91 size_t new_bytes = g_bytes_used[tag].FetchAndAddSequentiallyConsistent(bytes) + bytes; in RegisterAllocation()
92 if (g_max_bytes_used[tag] < new_bytes) { in RegisterAllocation()
93 g_max_bytes_used[tag] = new_bytes; in RegisterAllocation()
97 inline void RegisterFree(AllocatorTag tag, size_t bytes) { in RegisterFree() argument
98 g_bytes_used[tag].FetchAndSubSequentiallyConsistent(bytes); in RegisterFree()
Dlogging.cc249 const char* tag = ProgramInvocationShortName(); in LogLine() local
252 LOG_PRI(priority, tag, "%s:%u] %s", file, line, message); in LogLine()
254 LOG_PRI(priority, tag, "%s", message); in LogLine()
269 const char* tag = ProgramInvocationShortName(); in LogLineLowStack() local
282 android_writeLog(priority, tag, buf); in LogLineLowStack()
285 android_writeLog(priority, tag, message); in LogLineLowStack()
/art/compiler/utils/
Darray_ref.h43 struct tag { }; struct
71 typename std::enable_if<std::is_same<T, const U>::value, tag>::type
72 t ATTRIBUTE_UNUSED = tag())
87 typename std::enable_if<std::is_same<T, const U>::value, tag>::type
88 t ATTRIBUTE_UNUSED = tag())
/art/compiler/dwarf/
Ddebug_info_entry_writer.h59 void StartTag(Tag tag, Children children) { in StartTag() argument
66 StartAbbrev(tag, children); in StartTag()
199 void StartAbbrev(Tag tag, Children children) { in StartAbbrev() argument
202 EncodeUnsignedLeb128(&current_abbrev_, tag); in StartAbbrev()
/art/runtime/
Ddebugger.cc559 static bool IsPrimitiveTag(JDWP::JdwpTag tag) { in IsPrimitiveTag() argument
560 switch (tag) { in IsPrimitiveTag()
1179 JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag) { in GetObjectTag() argument
1184 *tag = JDWP::JT_VOID; in GetObjectTag()
1187 *tag = TagFromObject(soa, o); in GetObjectTag()
1191 size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) { in GetTagWidth() argument
1192 switch (tag) { in GetTagWidth()
1216 LOG(FATAL) << "Unknown tag " << tag; in GetTagWidth()
1730 JDWP::JdwpTag tag = BasicTagFromDescriptor(m->GetShorty()); in OutputMethodReturnValue() local
1731 OutputJValue(tag, return_value, pReply); in OutputMethodReturnValue()
[all …]
Ddebugger.h306 static JDWP::JdwpError GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag)
308 static size_t GetTagWidth(JDWP::JdwpTag tag);
433 static void OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply)
750 JDWP::JdwpTag tag, uint8_t* buf, size_t width)
753 static JDWP::JdwpError SetLocalValue(StackVisitor& visitor, int slot, JDWP::JdwpTag tag,
/art/runtime/jdwp/
Djdwp_event.cc981 uint8_t tag; in PostFieldEvent() local
984 tag = Dbg::TagFromObject(soa, basket.thisPtr.Get()); in PostFieldEvent()
995 expandBufAdd1(pReq, tag); in PostFieldEvent()
1218 JDWP::JdwpTypeTag tag = Dbg::GetTypeTag(basket.locationClass.Get()); in PostClassPrepare() local
1249 expandBufAdd1(pReq, tag); in PostClassPrepare()
Djdwp_handler.cc57 uint8_t tag; in WriteTaggedObject() local
58 JdwpError rc = Dbg::GetObjectTag(object_id, &tag); in WriteTaggedObject()
60 expandBufAdd1(reply, tag); in WriteTaggedObject()
/art/compiler/
Delf_builder.h115 void AddDynamicTag(Elf_Sword tag, Elf_Word value, const Section* section) { in AddDynamicTag() argument
116 DCHECK_NE(tag, static_cast<Elf_Sword>(DT_NULL)); in AddDynamicTag()
117 dynamics_.push_back({tag, value, section}); in AddDynamicTag()
/art/runtime/hprof/
Dhprof.cc153 void StartNewRecord(uint8_t tag, uint32_t time) { in StartNewRecord() argument
158 AddU1(tag); in StartNewRecord()