Searched defs:what (Results 1 - 7 of 7) sorted by relevance

/art/dalvikvm/
H A Ddalvikvm.cc128 const char* what = NULL; local
145 what = argv[arg_idx];
150 fprintf(stderr, "%s must be followed by an additional argument giving a value\n", what);
/art/runtime/
H A Dindirect_reference_table.cc65 bool IndirectReferenceTable::CheckEntry(const char* what, IndirectRef iref, int idx) const { argument
69 LOG(ERROR) << "JNI ERROR (app bug): attempt to " << what
H A Dcheck_jni.cc603 const char* what = NULL; local
606 what = "jclass";
609 what = "direct ByteBuffer";
612 what = "jobject";
615 what = "jstring";
618 what = "jthrowable";
625 JniAbortF(function_name_, "%s received null %s", function_name_, what);
633 what, ToStr<IndirectRefKind>(GetIndirectRefKind(java_object)).c_str(), java_object, obj);
655 JniAbortF(function_name_, "%s has wrong type: %s", what, PrettyTypeOf(obj).c_str());
H A Ddebugger.cc2465 // Work out what Method* we're in, the current line number, and how deep the stack currently
2656 * It's unclear what this means when the event specifies "resume all"
3107 bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) { argument
3113 if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) {
3114 LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what);
3120 gDdmNhsgWhat = what;
3123 gDdmHpsgWhat = what;
3354 // It's an allocated chunk. Figure out what it is.
3410 Dbg::HpsgWhat what; local
[all...]
/art/runtime/jdwp/
H A Djdwp_request.cc75 int32_t Request::ReadSigned32(const char* what) { argument
77 VLOG(jdwp) << " " << what << " " << value;
81 uint32_t Request::ReadUnsigned32(const char* what) { argument
83 VLOG(jdwp) << " " << what << " " << value;
/art/runtime/native/
H A Dorg_apache_harmony_dalvik_ddmc_DdmVmInternal.cc153 static jboolean DdmVmInternal_heapSegmentNotify(JNIEnv*, jclass, jint when, jint what, jboolean native) { argument
154 return Dbg::DdmHandleHpsgNhsgChunk(static_cast<Dbg::HpsgWhen>(when), static_cast<Dbg::HpsgWhat>(what), native);
/art/compiler/
H A Doat_writer.cc613 void OatWriter::ReportWriteFailure(const char* what, uint32_t method_idx, argument
615 PLOG(ERROR) << "Failed to write " << what << " for " << PrettyMethod(method_idx, dex_file)

Completed in 4087 milliseconds