Lines Matching refs:BG

87 	BG(CurrentStatFile)=NULL;  in PHP_RINIT_FUNCTION()
88 BG(CurrentLStatFile)=NULL; in PHP_RINIT_FUNCTION()
95 if (BG(CurrentStatFile)) { in PHP_RSHUTDOWN_FUNCTION()
96 zend_string_release(BG(CurrentStatFile)); in PHP_RSHUTDOWN_FUNCTION()
97 BG(CurrentStatFile) = NULL; in PHP_RSHUTDOWN_FUNCTION()
99 if (BG(CurrentLStatFile)) { in PHP_RSHUTDOWN_FUNCTION()
100 zend_string_release(BG(CurrentLStatFile)); in PHP_RSHUTDOWN_FUNCTION()
101 BG(CurrentLStatFile) = NULL; in PHP_RSHUTDOWN_FUNCTION()
690 if (BG(CurrentStatFile)) { in php_clear_stat_cache()
691 zend_string_release(BG(CurrentStatFile)); in php_clear_stat_cache()
692 BG(CurrentStatFile) = NULL; in php_clear_stat_cache()
694 if (BG(CurrentLStatFile)) { in php_clear_stat_cache()
695 zend_string_release(BG(CurrentLStatFile)); in php_clear_stat_cache()
696 BG(CurrentLStatFile) = NULL; in php_clear_stat_cache()
796 if (filename == BG(CurrentLStatFile) in php_stat()
797 || (BG(CurrentLStatFile) in php_stat()
798 && zend_string_equal_content(filename, BG(CurrentLStatFile)))) { in php_stat()
799 stat_sb = &BG(lssb).sb; in php_stat()
803 if (filename == BG(CurrentStatFile) in php_stat()
804 || (BG(CurrentStatFile) in php_stat()
805 && zend_string_equal_content(filename, BG(CurrentStatFile)))) { in php_stat()
806 stat_sb = &BG(ssb).sb; in php_stat()
837 if (BG(CurrentLStatFile)) { in php_stat()
838 zend_string_release(BG(CurrentLStatFile)); in php_stat()
840 BG(CurrentLStatFile) = zend_string_copy(filename); in php_stat()
841 memcpy(&BG(lssb), &ssb, sizeof(php_stream_statbuf)); in php_stat()
845 if (BG(CurrentStatFile)) { in php_stat()
846 zend_string_release(BG(CurrentStatFile)); in php_stat()
848 BG(CurrentStatFile) = zend_string_copy(filename); in php_stat()
849 memcpy(&BG(ssb), &ssb, sizeof(php_stream_statbuf)); in php_stat()