Home
last modified time | relevance | path

Searched refs:kind (Results 1 – 20 of 20) sorted by relevance

/dalvik/vm/
DIndirectRefTable.h184 IndirectRefKind kind; /* bit mask, ORed into all irefs */ member
202 IndirectRefKind kind) in dvmObjectToIndirectRef() argument
206 u4 uref = objChunk << 18 | (tableIndex << 2) | kind; in dvmObjectToIndirectRef()
240 int maxCount, IndirectRefKind kind);
326 IndirectRef result = dvmObjectToIndirectRef(obj, topIndex, pRef->kind); in dvmAppendToIndirectRefTable()
DIndirectRefTable.c26 int maxCount, IndirectRefKind kind) in dvmInitIndirectRefTable() argument
30 assert(kind == kIndirectKindLocal || kind == kIndirectKindGlobal); in dvmInitIndirectRefTable()
41 pRef->kind = kind; in dvmInitIndirectRefTable()
94 IndirectRef checkRef = dvmObjectToIndirectRef(obj, idx, pRef->kind); in checkEntry()
164 result = dvmObjectToIndirectRef(obj, pScan - pRef->table, pRef->kind); in dvmAddToIndirectRefTable()
169 result = dvmObjectToIndirectRef(obj, topIndex, pRef->kind); in dvmAddToIndirectRefTable()
DJni.c1215 } kind; in dvmUseJNIBridge() local
1233 kind = kJNISync; in dvmUseJNIBridge()
1250 kind = kJNIGeneral; in dvmUseJNIBridge()
1254 kind = kJNIStaticNoRef; in dvmUseJNIBridge()
1256 kind = kJNIVirtualNoRef; in dvmUseJNIBridge()
1261 dvmSetNativeFunc(method, checkFunc[kind], func); in dvmUseJNIBridge()
1263 dvmSetNativeFunc(method, stdFunc[kind], func); in dvmUseJNIBridge()
/dalvik/vm/compiler/
DCompiler.c32 assert(gDvmJit.compilerWorkQueue[gDvmJit.compilerWorkDequeueIndex].kind in workDequeue()
36 gDvmJit.compilerWorkQueue[gDvmJit.compilerWorkDequeueIndex++].kind = in workDequeue()
50 bool dvmCompilerWorkEnqueue(const u2 *pc, WorkOrderKind kind, void* info) in dvmCompilerWorkEnqueue() argument
78 gDvmJit.compilerWorkQueue[gDvmJit.compilerWorkEnqueueIndex].kind = kind; in dvmCompilerWorkEnqueue()
DCompiler.h51 WorkOrderKind kind; member
115 bool dvmCompilerWorkEnqueue(const u2* pc, WorkOrderKind kind, void* info);
/dalvik/vm/jdwp/
DJdwpConstants.c149 const char* dvmJdwpEventKindStr(enum JdwpEventKind kind) in dvmJdwpEventKindStr() argument
151 switch (kind) { in dvmJdwpEventKindStr()
DJdwpConstants.h122 const char* dvmJdwpEventKindStr(enum JdwpEventKind kind);
/dalvik/vm/interp/
DInterp.h34 void dvmThrowVerificationError(const Method* method, int kind, int ref);
DInterp.c816 void dvmThrowVerificationError(const Method* method, int kind, int ref) in dvmThrowVerificationError() argument
819 VerifyError errorKind = kind & ~typeMask; in dvmThrowVerificationError()
820 VerifyErrorRefType refType = kind >> kVerifyErrorRefTypeShift; in dvmThrowVerificationError()
/dalvik/vm/mterp/x86/
DOP_THROW_VERIFICATION_ERROR.S17 call dvmThrowVerificationError # call(method, kind, ref)
/dalvik/vm/native/
Ddalvik_system_VMDebug.c151 unsigned int kind = args[0]; in Dalvik_dalvik_system_VMDebug_getAllocCount() local
152 if (kind < (1<<16)) { in Dalvik_dalvik_system_VMDebug_getAllocCount()
156 kind >>= 16; in Dalvik_dalvik_system_VMDebug_getAllocCount()
158 switch (kind) { in Dalvik_dalvik_system_VMDebug_getAllocCount()
/dalvik/libcore/dalvik/src/main/java/dalvik/system/
DVMDebug.java212 public static native int getAllocCount(int kind); in getAllocCount() argument
/dalvik/vm/oo/
DClass.c393 while (cpe->kind != kCpeLastEntry) { in dumpClassPath()
396 switch (cpe->kind) { in dumpClassPath()
404 if (CALC_CACHE_STATS && cpe->kind == kCpeJar) { in dumpClassPath()
428 while (cpe->kind != kCpeLastEntry) { in dvmClassPathContains()
449 while (cpe->kind != kCpeLastEntry) { in freeCpeArray()
450 switch (cpe->kind) { in freeCpeArray()
500 cpe->kind = kCpeDir; in prepareCpe()
506 cpe->kind = kCpeJar; in prepareCpe()
514 cpe->kind = kCpeDex; in prepareCpe()
583 tmp.kind = kCpeUnknown; in processClassPath()
[all …]
DClass.h45 } kind; member
/dalvik/vm/alloc/
DDdmHeap.c174 #define HPSG_STATE(solidity, kind) \ argument
175 ((u1)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
/dalvik/vm/compiler/codegen/arm/
DArmLIR.h336 ArmEncodingKind kind; member
DAssemble.c611 switch(encoder->fieldLoc[i].kind) { in assembleInstructions()
DCodegen.c3278 switch (work->kind) { in dvmCompilerDoWork()
/dalvik/vm/analysis/
DDexOptimize.c734 switch (cpe->kind) { in getCacheFileName()
740 LOGE("DexOpt: unexpected cpe kind %d\n", cpe->kind); in getCacheFileName()
753 switch (cpe->kind) { in getSignature()
761 LOGE("unexpected cpe kind %d\n", cpe->kind); in getSignature()
/dalvik/vm/mterp/out/
DInterpAsm-x86.S5825 call dvmThrowVerificationError # call(method, kind, ref)