Lines Matching refs:realpath_cache_bucket

597 		realpath_cache_bucket *p = CWDG(realpath_cache)[i];  in realpath_cache_clean()
599 realpath_cache_bucket *r = p; in realpath_cache_clean()
617 realpath_cache_bucket **bucket = &CWDG(realpath_cache)[n]; in realpath_cache_del()
622 realpath_cache_bucket *r = *bucket; in realpath_cache_del()
627 CWDG(realpath_cache_size) -= sizeof(realpath_cache_bucket) + r->path_len + 1; in realpath_cache_del()
629 …CWDG(realpath_cache_size) -= sizeof(realpath_cache_bucket) + r->path_len + 1 + r->realpath_len + 1; in realpath_cache_del()
643 long size = sizeof(realpath_cache_bucket) + path_len + 1; in realpath_cache_add()
653 realpath_cache_bucket *bucket = malloc(size); in realpath_cache_add()
665 bucket->path = (char*)bucket + sizeof(realpath_cache_bucket); in realpath_cache_add()
691 static inline realpath_cache_bucket* realpath_cache_find(const char *path, int path_len, time_t t T… in realpath_cache_find()
700 realpath_cache_bucket **bucket = &CWDG(realpath_cache)[n]; in realpath_cache_find()
704 realpath_cache_bucket *r = *bucket; in realpath_cache_find()
709 CWDG(realpath_cache_size) -= sizeof(realpath_cache_bucket) + r->path_len + 1; in realpath_cache_find()
711 …CWDG(realpath_cache_size) -= sizeof(realpath_cache_bucket) + r->path_len + 1 + r->realpath_len + 1; in realpath_cache_find()
725 CWD_API realpath_cache_bucket* realpath_cache_lookup(const char *path, int path_len, time_t t TSRML… in realpath_cache_lookup()
741 CWD_API realpath_cache_bucket** realpath_cache_get_buckets(TSRMLS_D) in realpath_cache_get_buckets()
761 realpath_cache_bucket *bucket; in tsrm_realpath_r()