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

  /external/squashfs-tools/squashfs-tools/
unsquashfs.h 137 struct cache_entry *free_list;
138 struct cache_entry *hash_table[65536];
142 struct cache_entry { struct
149 struct cache_entry *hash_next;
150 struct cache_entry *hash_prev;
151 struct cache_entry *free_next;
152 struct cache_entry *free_prev;
195 struct cache_entry *buffer;
unsquashfs.c 248 void insert_hash_table(struct cache *cache, struct cache_entry *entry)
261 void remove_hash_table(struct cache *cache, struct cache_entry *entry)
276 void insert_free_list(struct cache *cache, struct cache_entry *entry)
291 void remove_free_list(struct cache *cache, struct cache_entry *entry)
323 memset(cache->hash_table, 0, sizeof(struct cache_entry *) * 65536);
334 struct cache_entry *cache_get(struct cache *cache, long long block, int size)
344 struct cache_entry *entry;
370 entry = malloc(sizeof(struct cache_entry));
420 void cache_block_ready(struct cache_entry *entry, int error)
445 void cache_block_wait(struct cache_entry *entry
    [all...]
  /frameworks/base/core/java/com/android/internal/database/
SortCursor.java 117 int cache_entry = newPosition % ROWCACHESIZE; local
119 if (mRowNumCache[cache_entry] == newPosition) {
120 int which = mCursorCache[cache_entry];
126 mCursor.moveToPosition(mCurRowNumCache[cache_entry][which]);
127 mLastCacheHit = cache_entry;
173 mRowNumCache[cache_entry] = newPosition;
174 mCursorCache[cache_entry] = smallestIdx;
177 mCurRowNumCache[cache_entry][i] = mCursors[i].getPosition();
  /packages/apps/Music/src/com/android/music/
SortCursor.java 117 int cache_entry = newPosition % ROWCACHESIZE; local
119 if (mRowNumCache[cache_entry] == newPosition) {
120 int which = mCursorCache[cache_entry];
126 mCursor.moveToPosition(mCurRowNumCache[cache_entry][which]);
127 mLastCacheHit = cache_entry;
173 mRowNumCache[cache_entry] = newPosition;
174 mCursorCache[cache_entry] = smallestIdx;
177 mCurRowNumCache[cache_entry][i] = mCursors[i].getPosition();
  /external/selinux/libsemanage/src/
database_llist.h 10 typedef struct cache_entry { struct
12 struct cache_entry *prev;
13 struct cache_entry *next;
  /external/ppp/pppd/
chap_ms.c 388 const struct chapms2_response_cache_entry *cache_entry; local
393 cache_entry = chapms2_find_in_response_cache(id, challenge, NULL);
394 if (cache_entry) {
395 memcpy(response, cache_entry->response, MS_CHAP2_RESPONSE_LEN);
  /frameworks/base/core/jni/
android_hardware_location_ContextHubService.cpp 606 app_instance_info_s cache_entry = current->second; local
614 &cache_entry.appInfo.app_name.id,
615 sizeof(cache_entry.appInfo.app_name.id)) == 0) {
622 delete_app_instance(cache_entry.instanceId, env);
    [all...]
  /external/v8/src/profiler/
heap-snapshot-generator.cc 710 base::HashMap::Entry* cache_entry = entries_.Lookup(thing, Hash(thing)); local
711 if (cache_entry == NULL) return HeapEntry::kNoEntry;
712 return static_cast<int>(reinterpret_cast<intptr_t>(cache_entry->value));
717 base::HashMap::Entry* cache_entry = local
719 DCHECK(cache_entry->value == NULL);
720 cache_entry->value = reinterpret_cast<void*>(static_cast<intptr_t>(entry));
746 base::HashMap::Entry* cache_entry = local
748 return cache_entry != NULL
749 ? reinterpret_cast<const char*>(cache_entry->value)
757 base::HashMap::Entry* cache_entry local
2713 base::HashMap::Entry* cache_entry = local
    [all...]
  /external/chromium-trace/catapult/devil/devil/android/
device_utils.py     [all...]

Completed in 356 milliseconds