Home
last modified time | relevance | path

Searched refs:what (Results 1 – 24 of 24) sorted by relevance

/art/runtime/jdwp/
Djdwp_request.cc77 int32_t Request::ReadSigned32(const char* what) { in ReadSigned32() argument
79 VLOG(jdwp) << " " << what << " " << value; in ReadSigned32()
83 uint32_t Request::ReadUnsigned32(const char* what) { in ReadUnsigned32() argument
85 VLOG(jdwp) << " " << what << " " << value; in ReadUnsigned32()
Djdwp.h427 int32_t ReadSigned32(const char* what);
429 uint32_t ReadUnsigned32(const char* what);
/art/runtime/
Dindirect_reference_table-inl.h63 inline bool IndirectReferenceTable::CheckEntry(const char* what, IndirectRef iref, int idx) const { in CheckEntry() argument
66 LOG(ERROR) << "JNI ERROR (app bug): attempt to " << what in CheckEntry()
Dcheck_jni.cc736 const char* what = nullptr; in CheckInstance() local
739 what = "jclass"; in CheckInstance()
742 what = "direct ByteBuffer"; in CheckInstance()
745 what = "jobject"; in CheckInstance()
748 what = "jstring"; in CheckInstance()
751 what = "jthrowable"; in CheckInstance()
761 AbortF("%s received NULL %s", function_name_, what); in CheckInstance()
779 what, ToStr<IndirectRefKind>(GetIndirectRefKind(java_object)).c_str(), in CheckInstance()
788 what, ToStr<IndirectRefKind>(GetIndirectRefKind(java_object)).c_str(), in CheckInstance()
811 AbortF("%s has wrong type: %s", what, PrettyTypeOf(obj).c_str()); in CheckInstance()
Ddebugger.cc4405 bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) { in DdmHandleHpsgNhsgChunk() argument
4411 if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) { in DdmHandleHpsgNhsgChunk()
4412 LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what); in DdmHandleHpsgNhsgChunk()
4418 gDdmNhsgWhat = what; in DdmHandleHpsgNhsgChunk()
4421 gDdmHpsgWhat = what; in DdmHandleHpsgNhsgChunk()
4734 Dbg::HpsgWhat what = native ? gDdmNhsgWhat : gDdmHpsgWhat; in DdmSendHeapSegments() local
4739 CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS) in DdmSendHeapSegments()
4740 << static_cast<int>(what); in DdmSendHeapSegments()
4750 HeapChunkContext context(what == HPSG_WHAT_MERGED_OBJECTS, native); in DdmSendHeapSegments()
Ddebugger.h678 static bool DdmHandleHpsgNhsgChunk(HpsgWhen when, HpsgWhat what, bool native);
/art/test/062-character-encodings/
Dinfo.txt1 Test that the list of character encodings is what we expect.
/art/dalvikvm/
Ddalvikvm.cc129 const char* what = nullptr; in dalvikvm() local
146 what = argv[arg_idx]; in dalvikvm()
151 fprintf(stderr, "%s must be followed by an additional argument giving a value\n", what); in dalvikvm()
/art/test/401-optimizing-compiler/
Dinfo.txt1 A set of tests for the optimizing compiler. They will incrementally cover what the
/art/test/065-mismatched-implements/
Dinfo.txt1 This tests what happens when class A implements interface B, but somebody
/art/test/066-mismatched-super/
Dinfo.txt1 This tests what happens when class A extends abstract class B, but somebody
/art/test/589-super-imt/
Dinfo.txt1 Test what the IMT is properly set for a subclass, and that the
/art/test/800-smali/smali/
Db_26965384.smali13 # Just by loading this class we should fail. It doesn't really matter what's in
Db_27799205_helper.smali5 # unresolved types. It makes it harder to distinguish what kind of error we got.
/art/runtime/native/
Dorg_apache_harmony_dalvik_ddmc_DdmVmInternal.cc159 static jboolean DdmVmInternal_heapSegmentNotify(JNIEnv*, jclass, jint when, jint what, jboolean nat… in DdmVmInternal_heapSegmentNotify() argument
160 …DdmHandleHpsgNhsgChunk(static_cast<Dbg::HpsgWhen>(when), static_cast<Dbg::HpsgWhat>(what), native); in DdmVmInternal_heapSegmentNotify()
/art/runtime/gc/space/
Dmalloc_space.h37 #define CHECK_MEMORY_CALL(call, args, what) \ argument
42 PLOG(FATAL) << # call << " failed for " << what; \
/art/runtime/base/unix_file/
DREADME5 don't pay for what you don't use" apply.
/art/build/
DAndroid.common.mk66 $(warning Do not know what to do with this multi-target configuration!)
/art/runtime/base/
Dlogging.h154 #define CHECK_PTHREAD_CALL(call, args, what) \ argument
159 PLOG(::art::FATAL) << # call << " failed for " << what; \
/art/test/
Drun-test273 what="$1"
274 if [ "x$what" = "x" ]; then
279 run_args="${run_args} --invoke-with ${what}"
/art/tools/ahat/
DREADME.txt36 ignored or not? Is there any interest in what's unreachable, or is it only
/art/cmdline/
DREADME.md88 After an argument definition is provided, the parser builder needs to know what type the argument
/art/compiler/
Doat_writer.cc1120 void ReportWriteFailure(const char* what, const ClassDataItemIterator& it) { in ReportWriteFailure() argument
1121 PLOG(ERROR) << "Failed to write " << what << " for " in ReportWriteFailure()
/art/dex2oat/
Ddex2oat.cc377 #define CHECK_WATCH_DOG_PTHREAD_CALL(call, args, what) \ argument