realpath_cache_bucket  597 TSRM/tsrm_virtual_cwd.c 		realpath_cache_bucket *p = CWDG(realpath_cache)[i];
realpath_cache_bucket  599 TSRM/tsrm_virtual_cwd.c 			realpath_cache_bucket *r = p;
realpath_cache_bucket  617 TSRM/tsrm_virtual_cwd.c 	realpath_cache_bucket **bucket = &CWDG(realpath_cache)[n];
realpath_cache_bucket  622 TSRM/tsrm_virtual_cwd.c 			realpath_cache_bucket *r = *bucket;
realpath_cache_bucket  627 TSRM/tsrm_virtual_cwd.c 				CWDG(realpath_cache_size) -= sizeof(realpath_cache_bucket) + r->path_len + 1;
realpath_cache_bucket  629 TSRM/tsrm_virtual_cwd.c 				CWDG(realpath_cache_size) -= sizeof(realpath_cache_bucket) + r->path_len + 1 + r->realpath_len + 1;
realpath_cache_bucket  643 TSRM/tsrm_virtual_cwd.c 	long size = sizeof(realpath_cache_bucket) + path_len + 1;
realpath_cache_bucket  653 TSRM/tsrm_virtual_cwd.c 		realpath_cache_bucket *bucket = malloc(size);
realpath_cache_bucket  665 TSRM/tsrm_virtual_cwd.c 		bucket->path = (char*)bucket + sizeof(realpath_cache_bucket);
realpath_cache_bucket  691 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  700 TSRM/tsrm_virtual_cwd.c 	realpath_cache_bucket **bucket = &CWDG(realpath_cache)[n];
realpath_cache_bucket  704 TSRM/tsrm_virtual_cwd.c 			realpath_cache_bucket *r = *bucket;
realpath_cache_bucket  709 TSRM/tsrm_virtual_cwd.c 				CWDG(realpath_cache_size) -= sizeof(realpath_cache_bucket) + r->path_len + 1;
realpath_cache_bucket  711 TSRM/tsrm_virtual_cwd.c 				CWDG(realpath_cache_size) -= sizeof(realpath_cache_bucket) + r->path_len + 1 + r->realpath_len + 1;
realpath_cache_bucket  725 TSRM/tsrm_virtual_cwd.c CWD_API realpath_cache_bucket* realpath_cache_lookup(const char *path, int path_len, time_t t TSRMLS_DC) /* {{{ */
realpath_cache_bucket  741 TSRM/tsrm_virtual_cwd.c CWD_API realpath_cache_bucket** realpath_cache_get_buckets(TSRMLS_D)
realpath_cache_bucket  761 TSRM/tsrm_virtual_cwd.c 	realpath_cache_bucket *bucket;
realpath_cache_bucket  233 TSRM/tsrm_virtual_cwd.h 	realpath_cache_bucket *realpath_cache[1024];
realpath_cache_bucket  246 TSRM/tsrm_virtual_cwd.h CWD_API realpath_cache_bucket* realpath_cache_lookup(const char *path, int path_len, time_t t TSRMLS_DC);
realpath_cache_bucket  249 TSRM/tsrm_virtual_cwd.h CWD_API realpath_cache_bucket** realpath_cache_get_buckets(TSRMLS_D);
realpath_cache_bucket  208 TSRM/tsrm_win32.c 	realpath_cache_bucket * bucket = NULL;
realpath_cache_bucket 1197 ext/standard/filestat.c 	realpath_cache_bucket **buckets = realpath_cache_get_buckets(TSRMLS_C), **end = buckets + realpath_cache_max_buckets(TSRMLS_C);
realpath_cache_bucket 1205 ext/standard/filestat.c 		realpath_cache_bucket *bucket = *buckets;