realpath_cache_bucket  211 TSRM/tsrm_win32.c 	realpath_cache_bucket * bucket = NULL;
realpath_cache_bucket  636 Zend/zend_virtual_cwd.c 		realpath_cache_bucket *p = CWDG(realpath_cache)[i];
realpath_cache_bucket  638 Zend/zend_virtual_cwd.c 			realpath_cache_bucket *r = p;
realpath_cache_bucket  652 Zend/zend_virtual_cwd.c 	realpath_cache_bucket **bucket = &CWDG(realpath_cache)[n];
realpath_cache_bucket  657 Zend/zend_virtual_cwd.c 			realpath_cache_bucket *r = *bucket;
realpath_cache_bucket  662 Zend/zend_virtual_cwd.c 				CWDG(realpath_cache_size) -= sizeof(realpath_cache_bucket) + r->path_len + 1;
realpath_cache_bucket  664 Zend/zend_virtual_cwd.c 				CWDG(realpath_cache_size) -= sizeof(realpath_cache_bucket) + r->path_len + 1 + r->realpath_len + 1;
realpath_cache_bucket  678 Zend/zend_virtual_cwd.c 	zend_long size = sizeof(realpath_cache_bucket) + path_len + 1;
realpath_cache_bucket  688 Zend/zend_virtual_cwd.c 		realpath_cache_bucket *bucket = malloc(size);
realpath_cache_bucket  696 Zend/zend_virtual_cwd.c 		bucket->path = (char*)bucket + sizeof(realpath_cache_bucket);
realpath_cache_bucket  722 Zend/zend_virtual_cwd.c static inline realpath_cache_bucket* realpath_cache_find(const char *path, int path_len, time_t t) /* {{{ */
realpath_cache_bucket  726 Zend/zend_virtual_cwd.c 	realpath_cache_bucket **bucket = &CWDG(realpath_cache)[n];
realpath_cache_bucket  730 Zend/zend_virtual_cwd.c 			realpath_cache_bucket *r = *bucket;
realpath_cache_bucket  735 Zend/zend_virtual_cwd.c 				CWDG(realpath_cache_size) -= sizeof(realpath_cache_bucket) + r->path_len + 1;
realpath_cache_bucket  737 Zend/zend_virtual_cwd.c 				CWDG(realpath_cache_size) -= sizeof(realpath_cache_bucket) + r->path_len + 1 + r->realpath_len + 1;
realpath_cache_bucket  751 Zend/zend_virtual_cwd.c CWD_API realpath_cache_bucket* realpath_cache_lookup(const char *path, int path_len, time_t t) /* {{{ */
realpath_cache_bucket  767 Zend/zend_virtual_cwd.c CWD_API realpath_cache_bucket** realpath_cache_get_buckets(void)
realpath_cache_bucket  787 Zend/zend_virtual_cwd.c 	realpath_cache_bucket *bucket;
realpath_cache_bucket  235 Zend/zend_virtual_cwd.h 	realpath_cache_bucket *realpath_cache[1024];
realpath_cache_bucket  248 Zend/zend_virtual_cwd.h CWD_API realpath_cache_bucket* realpath_cache_lookup(const char *path, int path_len, time_t t);
realpath_cache_bucket  251 Zend/zend_virtual_cwd.h CWD_API realpath_cache_bucket** realpath_cache_get_buckets(void);
realpath_cache_bucket 1210 ext/standard/filestat.c 	realpath_cache_bucket **buckets = realpath_cache_get_buckets(), **end = buckets + realpath_cache_max_buckets();
realpath_cache_bucket 1218 ext/standard/filestat.c 		realpath_cache_bucket *bucket = *buckets;