Searched defs:tag (Results 1 - 11 of 11) sorted by relevance

/art/compiler/debug/dwarf/
H A Ddebug_abbrev_writer.h51 void StartAbbrev(Tag tag) { argument
53 EncodeUnsignedLeb128(&current_abbrev_, tag);
H A Ddebug_info_entry_writer.h53 size_t StartTag(Tag tag) { argument
60 debug_abbrev_->StartAbbrev(tag);
/art/tools/dexfuzz/src/dexfuzz/
H A DLog.java36 public static void setLoggingLevel(LogTag tag) { argument
37 threshold = tag;
64 private static void log(LogTag tag, String msg) { argument
65 if (tag.ordinal() >= threshold.ordinal()) {
66 System.out.println("[" + tag.toString() + "] " + msg);
/art/compiler/utils/
H A Darray_ref.h43 struct tag { }; struct in class:art::ArrayRef
71 typename std::enable_if<std::is_same<T, const U>::value, tag>::type
72 t ATTRIBUTE_UNUSED = tag())
/art/runtime/base/
H A Dallocator.h76 std::ostream& operator<<(std::ostream& os, const AllocatorTag& tag);
92 inline void RegisterAllocation(AllocatorTag tag, size_t bytes) { argument
93 g_total_bytes_used[tag].FetchAndAddSequentiallyConsistent(bytes);
94 size_t new_bytes = g_bytes_used[tag].FetchAndAddSequentiallyConsistent(bytes) + bytes;
95 if (g_max_bytes_used[tag] < new_bytes) {
96 g_max_bytes_used[tag] = new_bytes;
100 inline void RegisterFree(AllocatorTag tag, size_t bytes) { argument
101 g_bytes_used[tag].FetchAndSubSequentiallyConsistent(bytes);
H A Dlogging.cc105 // "tag-pattern:[vdiwefs]"
259 const char* tag = ProgramInvocationShortName(); local
262 LOG_PRI(priority, tag, "%s:%u] %s", file, line, message);
264 LOG_PRI(priority, tag, "%s", message);
283 const char* tag = ProgramInvocationShortName(); local
296 android_writeLog(priority, tag, buf);
299 android_writeLog(priority, tag, message);
/art/runtime/jdwp/
H A Djdwp_event.cc976 // Get field's reference type tag.
979 // Get instance type tag.
980 uint8_t tag; local
983 tag = Dbg::TagFromObject(soa, basket.thisPtr.Get());
994 expandBufAdd1(pReq, tag);
1217 JDWP::JdwpTypeTag tag = Dbg::GetTypeTag(basket.locationClass.Get()); local
1248 expandBufAdd1(pReq, tag);
H A Djdwp_handler.cc58 uint8_t tag; local
59 JdwpError rc = Dbg::GetObjectTag(object_id, &tag);
61 expandBufAdd1(reply, tag);
626 VLOG(jdwp) << " --> field=" << fieldId << " tag=" << fieldTag << " --> " << value;
818 VLOG(jdwp) << " --> fieldId=" << fieldId << " tag=" << fieldTag << "(" << width << ") value=" << value;
/art/runtime/hprof/
H A Dhprof.cc157 void StartNewRecord(uint8_t tag, uint32_t time) { argument
162 AddU1(tag);
1034 LOG(FATAL) << "obsolete tag " << static_cast<int>(heap_tag);
1105 // Emit a HEAP_DUMP_INFO tag to change heaps.
/art/dex2oat/
H A Ddex2oat.cc2053 const char* tag) {
2062 LOG(ERROR) << "Failed to create list of " << tag << " classes from '"
2051 ReadClasses(const char* zip_filename, const char* classes_filename, const char* tag) argument
/art/runtime/
H A Ddebugger.cc458 * appropriate tag.
466 static bool IsPrimitiveTag(JDWP::JdwpTag tag) { argument
467 switch (tag) {
1111 JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag) { argument
1116 *tag = JDWP::JT_VOID;
1119 *tag = TagFromObject(soa, o);
1123 size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) { argument
1124 switch (tag) {
1148 LOG(FATAL) << "Unknown tag " << tag;
1668 JDWP::JdwpTag tag = BasicTagFromDescriptor(m->GetShorty()); local
1675 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor()); local
1801 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor()); local
1953 OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) argument
2577 GetLocalValue(const StackVisitor& visitor, ScopedObjectAccessUnchecked& soa, int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width) argument
2740 SetLocalValue(Thread* thread, StackVisitor& visitor, int slot, JDWP::JdwpTag tag, uint64_t value, size_t width) argument
3816 JdwpTagToShortyChar(JDWP::JdwpTag tag) argument
[all...]

Completed in 123 milliseconds