Home
last modified time | relevance | path

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

/dalvik/vm/
DIndirectRefTable.h195 IndirectRefKind kind; /* bit mask, ORed into all irefs */ member
213 Object* obj, u4 tableIndex, IndirectRefKind kind) in dvmObjectToIndirectRef() argument
219 u4 uref = serialChunk << 20 | (tableIndex << 2) | kind; in dvmObjectToIndirectRef()
253 int maxCount, IndirectRefKind kind);
340 pRef->kind); in dvmAppendToIndirectRefTable()
DIndirectRefTable.c26 int maxCount, IndirectRefKind kind) in dvmInitIndirectRefTable() argument
30 assert(kind == kIndirectKindLocal || kind == kIndirectKindGlobal); in dvmInitIndirectRefTable()
47 pRef->kind = kind; in dvmInitIndirectRefTable()
89 pRef, pRef->kind, sst.parts.topIndex, sst.parts.numHoles); in dvmPopIndirectRefTableSegmentCheck()
100 IndirectRef checkRef = dvmObjectToIndirectRef(pRef, obj, idx, pRef->kind); in checkEntry()
103 pRef, pRef->kind, iref, checkRef); in checkEntry()
201 pRef->kind); in dvmAddToIndirectRefTable()
207 result = dvmObjectToIndirectRef(pRef, obj, topIndex, pRef->kind); in dvmAddToIndirectRefTable()
DJni.c1346 } kind; in dvmSelectJNIBridge() local
1364 kind = kJNISync; in dvmSelectJNIBridge()
1381 kind = kJNIGeneral; in dvmSelectJNIBridge()
1385 kind = kJNIStaticNoRef; in dvmSelectJNIBridge()
1387 kind = kJNIVirtualNoRef; in dvmSelectJNIBridge()
1391 return dvmIsCheckJNIEnabled() ? checkFunc[kind] : stdFunc[kind]; in dvmSelectJNIBridge()
/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.h35 void dvmThrowVerificationError(const Method* method, int kind, int ref);
DInterp.c1153 void dvmThrowVerificationError(const Method* method, int kind, int ref) in dvmThrowVerificationError() argument
1156 VerifyError errorKind = kind & ~typeMask; in dvmThrowVerificationError()
1157 VerifyErrorRefType refType = kind >> kVerifyErrorRefTypeShift; in dvmThrowVerificationError()
/dalvik/vm/mterp/x86/
DOP_THROW_VERIFICATION_ERROR.S17 call dvmThrowVerificationError # call(method, kind, ref)
/dalvik/vm/mterp/x86-atom/
DOP_THROW_VERIFICATION_ERROR.S39 call dvmThrowVerificationError # call: (const Method* method, int kind, int ref)
/dalvik/vm/compiler/
DCompiler.c32 assert(gDvmJit.compilerWorkQueue[gDvmJit.compilerWorkDequeueIndex].kind in workDequeue()
36 gDvmJit.compilerWorkQueue[gDvmJit.compilerWorkDequeueIndex++].kind = in workDequeue()
61 bool dvmCompilerWorkEnqueue(const u2 *pc, WorkOrderKind kind, void* info) in dvmCompilerWorkEnqueue() argument
96 newOrder->kind = kind; in dvmCompilerWorkEnqueue()
101 (kind == kWorkOrderTraceDebug) ? true : false; in dvmCompilerWorkEnqueue()
DCompiler.h107 WorkOrderKind kind; member
259 bool dvmCompilerWorkEnqueue(const u2* pc, WorkOrderKind kind, void* info);
/dalvik/vm/native/
Ddalvik_system_VMDebug.c268 unsigned int kind = args[0]; in Dalvik_dalvik_system_VMDebug_getAllocCount() local
269 if (kind < (1<<16)) { in Dalvik_dalvik_system_VMDebug_getAllocCount()
273 kind >>= 16; in Dalvik_dalvik_system_VMDebug_getAllocCount()
275 switch (kind) { in Dalvik_dalvik_system_VMDebug_getAllocCount()
/dalvik/vm/oo/
DClass.h45 } kind; member
DClass.c398 while (cpe->kind != kCpeLastEntry) { in dumpClassPath()
401 switch (cpe->kind) { in dumpClassPath()
409 if (CALC_CACHE_STATS && cpe->kind == kCpeJar) { in dumpClassPath()
433 while (cpe->kind != kCpeLastEntry) { in dvmClassPathContains()
454 while (cpe->kind != kCpeLastEntry) { in freeCpeArray()
455 switch (cpe->kind) { in freeCpeArray()
505 cpe->kind = kCpeDir; in prepareCpe()
511 cpe->kind = kCpeJar; in prepareCpe()
519 cpe->kind = kCpeDex; in prepareCpe()
596 tmp.kind = kCpeUnknown; in processClassPath()
[all …]
/dalvik/vm/alloc/
DDdmHeap.c174 #define HPSG_STATE(solidity, kind) \ argument
175 ((u1)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
/dalvik/vm/analysis/
DDexPrepare.c974 switch (cpe->kind) { in getCacheFileName()
980 LOGE("DexOpt: unexpected cpe kind %d\n", cpe->kind); in getCacheFileName()
993 switch (cpe->kind) { in getSignature()
1001 LOGE("unexpected cpe kind %d\n", cpe->kind); in getSignature()
/dalvik/vm/compiler/codegen/arm/
DArmLIR.h727 ArmEncodingKind kind; member
DAssemble.c1040 switch(encoder->fieldLoc[i].kind) { in assembleInstructions()
DCodegenDriver.c4356 switch (work->kind) { in dvmCompilerDoWork()
/dalvik/vm/compiler/codegen/arm/Thumb2/
DFactory.c366 if (EncodingMap[opCode].fieldLoc[2].kind == kFmtShift) in opRegRegShift()
/dalvik/vm/mterp/out/
DInterpAsm-x86.S5899 call dvmThrowVerificationError # call(method, kind, ref)
DInterpAsm-x86-atom.S14604 call dvmThrowVerificationError # call: (const Method* method, int kind, int ref)