cwd_g             430 Zend/zend_virtual_cwd.c static void cwd_globals_ctor(virtual_cwd_globals *cwd_g TSRMLS_DC) /* {{{ */
cwd_g             432 Zend/zend_virtual_cwd.c 	CWD_STATE_COPY(&cwd_g->cwd, &main_cwd_state);
cwd_g             433 Zend/zend_virtual_cwd.c 	cwd_g->realpath_cache_size = 0;
cwd_g             434 Zend/zend_virtual_cwd.c 	cwd_g->realpath_cache_size_limit = REALPATH_CACHE_SIZE;
cwd_g             435 Zend/zend_virtual_cwd.c 	cwd_g->realpath_cache_ttl = REALPATH_CACHE_TTL;
cwd_g             436 Zend/zend_virtual_cwd.c 	memset(cwd_g->realpath_cache, 0, sizeof(cwd_g->realpath_cache));
cwd_g             440 Zend/zend_virtual_cwd.c static void cwd_globals_dtor(virtual_cwd_globals *cwd_g TSRMLS_DC) /* {{{ */