Lines Matching refs:CacheMem
111 } CacheMem; typedef
113 static CacheMem *new_CacheMem(void);
114 static CacheMem *del_CacheMem(CacheMem *cm);
115 static void rst_CacheMem(CacheMem *cm);
125 CacheMem *mem; /* The memory used to store dir[] and files[] */
153 CacheMem *abs_mem; /* Memory for the filenames of absolute paths */
154 CacheMem *rel_mem; /* Memory for the filenames of relative paths */
193 static int pca_scan_dir(PathCache *pc, const char *dirname, CacheMem *mem);
714 static CacheMem *new_CacheMem(void) in new_CacheMem()
716 CacheMem *cm; /* The object to be returned */ in new_CacheMem()
720 cm = (CacheMem *)malloc(sizeof(CacheMem)); in new_CacheMem()
761 static CacheMem *del_CacheMem(CacheMem *cm) in del_CacheMem()
790 static void rst_CacheMem(CacheMem *cm) in rst_CacheMem()
888 static int pca_scan_dir(PathCache *pc, const char *dirname, CacheMem *mem) in pca_scan_dir()