Lines Matching refs:BG

92 	BG(CurrentStatFile)=NULL;  in PHP_RINIT_FUNCTION()
93 BG(CurrentLStatFile)=NULL; in PHP_RINIT_FUNCTION()
100 if (BG(CurrentStatFile)) { in PHP_RSHUTDOWN_FUNCTION()
101 zend_string_release(BG(CurrentStatFile)); in PHP_RSHUTDOWN_FUNCTION()
102 BG(CurrentStatFile) = NULL; in PHP_RSHUTDOWN_FUNCTION()
104 if (BG(CurrentLStatFile)) { in PHP_RSHUTDOWN_FUNCTION()
105 zend_string_release(BG(CurrentLStatFile)); in PHP_RSHUTDOWN_FUNCTION()
106 BG(CurrentLStatFile) = NULL; in PHP_RSHUTDOWN_FUNCTION()
724 if (BG(CurrentStatFile)) { in php_clear_stat_cache()
725 zend_string_release(BG(CurrentStatFile)); in php_clear_stat_cache()
726 BG(CurrentStatFile) = NULL; in php_clear_stat_cache()
728 if (BG(CurrentLStatFile)) { in php_clear_stat_cache()
729 zend_string_release(BG(CurrentLStatFile)); in php_clear_stat_cache()
730 BG(CurrentLStatFile) = NULL; in php_clear_stat_cache()
823 if (filename == BG(CurrentLStatFile) in php_stat()
824 || (BG(CurrentLStatFile) in php_stat()
825 && zend_string_equal_content(filename, BG(CurrentLStatFile)))) { in php_stat()
826 memcpy(&ssb, &BG(lssb), sizeof(php_stream_statbuf)); in php_stat()
830 if (filename == BG(CurrentStatFile) in php_stat()
831 || (BG(CurrentStatFile) in php_stat()
832 && zend_string_equal_content(filename, BG(CurrentStatFile)))) { in php_stat()
833 memcpy(&ssb, &BG(ssb), sizeof(php_stream_statbuf)); in php_stat()
864 if (BG(CurrentLStatFile)) { in php_stat()
865 zend_string_release(BG(CurrentLStatFile)); in php_stat()
867 BG(CurrentLStatFile) = zend_string_copy(filename); in php_stat()
868 memcpy(&BG(lssb), &ssb, sizeof(php_stream_statbuf)); in php_stat()
872 if (BG(CurrentStatFile)) { in php_stat()
873 zend_string_release(BG(CurrentStatFile)); in php_stat()
875 BG(CurrentStatFile) = zend_string_copy(filename); in php_stat()
876 memcpy(&BG(ssb), &ssb, sizeof(php_stream_statbuf)); in php_stat()