realpath_cache_bucket  401 TSRM/tsrm_virtual_cwd.c 		realpath_cache_bucket *p = CWDG(realpath_cache)[i];
realpath_cache_bucket  403 TSRM/tsrm_virtual_cwd.c 			realpath_cache_bucket *r = p;
realpath_cache_bucket  417 TSRM/tsrm_virtual_cwd.c 	realpath_cache_bucket **bucket = &CWDG(realpath_cache)[n];
realpath_cache_bucket  422 TSRM/tsrm_virtual_cwd.c 			realpath_cache_bucket *r = *bucket;
realpath_cache_bucket  424 TSRM/tsrm_virtual_cwd.c 			CWDG(realpath_cache_size) -= sizeof(realpath_cache_bucket) + r->path_len + 1 + r->realpath_len + 1;
realpath_cache_bucket  436 TSRM/tsrm_virtual_cwd.c 	long size = sizeof(realpath_cache_bucket) + path_len + 1 + realpath_len + 1;
realpath_cache_bucket  438 TSRM/tsrm_virtual_cwd.c 		realpath_cache_bucket *bucket = malloc(size);
realpath_cache_bucket  442 TSRM/tsrm_virtual_cwd.c 		bucket->path = (char*)bucket + sizeof(realpath_cache_bucket);
realpath_cache_bucket  457 TSRM/tsrm_virtual_cwd.c static inline realpath_cache_bucket* realpath_cache_find(const char *path, int path_len, time_t t TSRMLS_DC) /* {{{ */
realpath_cache_bucket  461 TSRM/tsrm_virtual_cwd.c 	realpath_cache_bucket **bucket = &CWDG(realpath_cache)[n];
realpath_cache_bucket  465 TSRM/tsrm_virtual_cwd.c 			realpath_cache_bucket *r = *bucket;
realpath_cache_bucket  467 TSRM/tsrm_virtual_cwd.c 			CWDG(realpath_cache_size) -= sizeof(realpath_cache_bucket) + r->path_len + 1 + r->realpath_len + 1;
realpath_cache_bucket  487 TSRM/tsrm_virtual_cwd.c 	realpath_cache_bucket *bucket;
realpath_cache_bucket  218 TSRM/tsrm_virtual_cwd.h 	realpath_cache_bucket *realpath_cache[1024];