HomeSort by relevance Sort by last modified time
    Searched refs:pCache (Results 1 - 9 of 9) sorted by null

  /dalvik/vm/
AtomicCache.c 84 * We only need "pCache" for stats.
89 , AtomicCache* pCache
117 pCache->fail++;
128 pCache->fills++;
130 pCache->misses++;
168 void dvmDumpAtomicCacheStats(const AtomicCache* pCache)
170 if (pCache == NULL)
174 pCache->trivial, pCache->fail, pCache->hits
    [all...]
AtomicCache.h 164 , AtomicCache* pCache
171 void dvmDumpAtomicCacheStats(const AtomicCache* pCache);
  /dalvik/libdex/
DexProto.c 36 static void dexStringCacheAlloc(DexStringCache* pCache, size_t length) {
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 = malloc(length);
49 pCache->allocatedSize = length
    [all...]
DexProto.h 43 void dexStringCacheInit(DexStringCache* pCache);
49 void dexStringCacheRelease(DexStringCache* pCache);
58 char* dexStringCacheEnsureCopy(DexStringCache* pCache, const char* value);
67 char* dexStringCacheAbandon(DexStringCache* pCache, const char* value);
98 DexStringCache* pCache);
112 DexStringCache* pCache);
118 const DexMethodId* pMethodId, DexStringCache* pCache)
123 return dexProtoGetMethodDescriptor(&proto, pCache);
  /dalvik/vm/oo/
Class.h 190 DexStringCache *pCache)
193 dexProtoGetMethodDescriptor(&method->prototype, pCache);
194 return dexStringCacheEnsureCopy(pCache, result);
  /external/bluetooth/bluez/src/
sdpd-request.c 462 sdp_buf_t *pCache = sdp_get_cached_rsp(cstate);
463 if (pCache) {
464 pCacheBuffer = pCache->data;
698 sdp_buf_t *pCache = sdp_get_cached_rsp(cstate);
700 SDPDBG("Obtained cached rsp : %p", pCache);
702 if (pCache) {
703 short sent = MIN(max_rsp_size, pCache->data_size - cstate->cStateValue.maxBytesSent);
704 pResponse = pCache->data;
710 pCache->data_size, sent, cstate->cStateValue.maxBytesSent);
711 if (cstate->cStateValue.maxBytesSent == pCache->data_size
    [all...]
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
ndapi.c 676 NJ_SEARCH_CACHE *pCache;
743 pCache = cursor->cond.ds->dic[diccnt].srhCache;
744 if (pCache != NULL) {
746 if (NJ_GET_CACHEOVER_FROM_SCACHE(pCache)) {
749 if (pCache->keyPtr[cacheOverKeyPtr] == pCache->keyPtr[cacheOverKeyPtr + 1] ) {
762 pCache->keyPtr[clrcnt] = 0x0000;
766 if ((pCache->keyPtr[clrcnt - 1] > pCache->keyPtr[clrcnt]) &&
767 (pCache->keyPtr[clrcnt] != 0))
    [all...]
  /external/sqlite/dist/
sqlite3.c 9884 sqlite3_pcache_methods pcache; \/* Low-level page-cache interface *\/ member in struct:Sqlite3Config
    [all...]
sqlite3.c.orig     [all...]

Completed in 537 milliseconds