Searched refs:pCache (Results 1 - 5 of 5) sorted by relevance

/dalvik/vm/
H A DAtomicCache.cpp84 * We only need "pCache" for stats.
89 , AtomicCache* pCache
117 pCache->fail++;
128 pCache->fills++;
130 pCache->misses++;
168 void dvmDumpAtomicCacheStats(const AtomicCache* pCache) argument
170 if (pCache == NULL)
174 pCache->trivial, pCache->fail, pCache
[all...]
H A DAtomicCache.h164 , AtomicCache* pCache
171 void dvmDumpAtomicCacheStats(const AtomicCache* pCache);
/dalvik/libdex/
H A DDexProto.cpp36 void dexStringCacheAlloc(DexStringCache* pCache, size_t length) { argument
37 if (pCache->allocatedSize != 0) {
38 if (pCache->allocatedSize >= length) {
41 free((void*) pCache->value);
44 if (length <= sizeof(pCache->buffer)) {
45 pCache->value = pCache->buffer;
46 pCache->allocatedSize = 0;
48 pCache->value = (char*) malloc(length);
49 pCache
57 dexStringCacheInit(DexStringCache* pCache) argument
67 dexStringCacheRelease(DexStringCache* pCache) argument
82 dexStringCacheEnsureCopy(DexStringCache* pCache, const char* value) argument
99 dexStringCacheAbandon(DexStringCache* pCache, const char* value) argument
133 dexProtoGetMethodDescriptor(const DexProto* pProto, DexStringCache* pCache) argument
177 dexProtoGetParameterDescriptors(const DexProto* pProto, DexStringCache* pCache) argument
[all...]
H A DDexProto.h43 void dexStringCacheAlloc(DexStringCache* pCache, size_t length);
49 void dexStringCacheInit(DexStringCache* pCache);
55 void dexStringCacheRelease(DexStringCache* pCache);
64 char* dexStringCacheEnsureCopy(DexStringCache* pCache, const char* value);
73 char* dexStringCacheAbandon(DexStringCache* pCache, const char* value);
104 DexStringCache* pCache);
118 DexStringCache* pCache);
124 const DexMethodId* pMethodId, DexStringCache* pCache)
129 return dexProtoGetMethodDescriptor(&proto, pCache);
123 dexGetDescriptorFromMethodId(const DexFile* pDexFile, const DexMethodId* pMethodId, DexStringCache* pCache) argument
/dalvik/vm/oo/
H A DClass.h193 DexStringCache *pCache)
196 dexProtoGetMethodDescriptor(&method->prototype, pCache);
197 return dexStringCacheEnsureCopy(pCache, result);
192 dvmCopyDescriptorStringFromMethod(const Method* method, DexStringCache *pCache) argument

Completed in 96 milliseconds