Lines Matching refs:realpath_cache_bucket

609 		realpath_cache_bucket *p = CWDG(realpath_cache)[i];  in realpath_cache_clean()
611 realpath_cache_bucket *r = p; in realpath_cache_clean()
629 realpath_cache_bucket **bucket = &CWDG(realpath_cache)[n]; in realpath_cache_del()
634 realpath_cache_bucket *r = *bucket; in realpath_cache_del()
639 CWDG(realpath_cache_size) -= sizeof(realpath_cache_bucket) + r->path_len + 1; in realpath_cache_del()
641 …CWDG(realpath_cache_size) -= sizeof(realpath_cache_bucket) + r->path_len + 1 + r->realpath_len + 1; in realpath_cache_del()
655 long size = sizeof(realpath_cache_bucket) + path_len + 1; in realpath_cache_add()
665 realpath_cache_bucket *bucket = malloc(size); in realpath_cache_add()
677 bucket->path = (char*)bucket + sizeof(realpath_cache_bucket); in realpath_cache_add()
703 static inline realpath_cache_bucket* realpath_cache_find(const char *path, int path_len, time_t t T… in realpath_cache_find()
712 realpath_cache_bucket **bucket = &CWDG(realpath_cache)[n]; in realpath_cache_find()
716 realpath_cache_bucket *r = *bucket; in realpath_cache_find()
721 CWDG(realpath_cache_size) -= sizeof(realpath_cache_bucket) + r->path_len + 1; in realpath_cache_find()
723 …CWDG(realpath_cache_size) -= sizeof(realpath_cache_bucket) + r->path_len + 1 + r->realpath_len + 1; in realpath_cache_find()
738 CWD_API realpath_cache_bucket* realpath_cache_lookup(const char *path, int path_len, time_t t TSRML… in realpath_cache_lookup()
754 CWD_API realpath_cache_bucket** realpath_cache_get_buckets(TSRMLS_D) in realpath_cache_get_buckets()
774 realpath_cache_bucket *bucket; in tsrm_realpath_r()