cache             118 lib/utilunix.c i_cache_match (int id, int_cache * cache, int size)
cache             123 lib/utilunix.c         if (cache[i].index == id)
cache             124 lib/utilunix.c             return cache[i].string;
cache             131 lib/utilunix.c i_cache_add (int id, int_cache * cache, int size, char *text, int *last)
cache             133 lib/utilunix.c     g_free (cache[*last].string);
cache             134 lib/utilunix.c     cache[*last].string = g_strdup (text);
cache             135 lib/utilunix.c     cache[*last].index = id;
cache             101 src/vfs/sfs/sfs.c     char *cache;
cache             268 src/vfs/sfs/sfs.c         return cf->cache;
cache             282 src/vfs/sfs/sfs.c         cf->cache = vfs_path_free (cache_vpath, FALSE);
cache             286 src/vfs/sfs/sfs.c         return cf->cache;
cache             395 src/vfs/sfs/sfs.c     unlink (which->cache);
cache             396 src/vfs/sfs/sfs.c     g_free (which->cache);
cache              84 src/viewer/coord_cache.c mcview_ccache_add_entry (GPtrArray * cache, const coord_cache_entry_t * entry)
cache              87 src/viewer/coord_cache.c     g_ptr_array_add (cache, g_memdup2 (entry, sizeof (*entry)));
cache              89 src/viewer/coord_cache.c     g_ptr_array_add (cache, g_memdup (entry, sizeof (*entry)));
cache             175 src/viewer/coord_cache.c     const GPtrArray *cache = view->coord_cache;
cache             177 src/viewer/coord_cache.c     g_assert (cache != NULL);
cache             188 src/viewer/coord_cache.c     for (i = 0; i < cache->len; i++)
cache             192 src/viewer/coord_cache.c         e = coord_cache_index (cache, i);
cache             247 src/viewer/coord_cache.c     GPtrArray *cache;
cache             263 src/viewer/coord_cache.c     cache = view->coord_cache;
cache             265 src/viewer/coord_cache.c     if (cache->len == 0)
cache             268 src/viewer/coord_cache.c         mcview_ccache_add_entry (cache, &current);
cache             287 src/viewer/coord_cache.c     current = *coord_cache_index (cache, i);
cache             289 src/viewer/coord_cache.c         limit = coord_cache_index (cache, i + 1)->cc_offset;
cache             375 src/viewer/coord_cache.c     if (i + 1 == cache->len && entry.cc_offset != coord_cache_index (cache, i)->cc_offset)
cache             377 src/viewer/coord_cache.c         mcview_ccache_add_entry (cache, &entry);