Home
last modified time | relevance | path

Searched refs:shutdown_function_entry (Results 1 – 3 of 3) sorted by relevance

/PHP-7.3/ext/standard/
H A Dbasic_functions.h263 …on(char *function_name, size_t function_len, php_shutdown_function_entry *shutdown_function_entry);
265 …xtern zend_bool append_user_shutdown_function(php_shutdown_function_entry shutdown_function_entry);
H A Dbasic_functions.c5031 efree(shutdown_function_entry->arguments);
5032 efree(shutdown_function_entry);
5061 &shutdown_function_entry->arguments[0],
5063 shutdown_function_entry->arg_count - 1,
5170 php_shutdown_function_entry shutdown_function_entry; local
5173 shutdown_function_entry.arg_count = ZEND_NUM_ARGS();
5175 if (shutdown_function_entry.arg_count < 1) {
5179shutdown_function_entry.arguments = (zval *) safe_emalloc(sizeof(zval), shutdown_function_entry.ar…
5181 …if (zend_get_parameters_array(ZEND_NUM_ARGS(), shutdown_function_entry.arg_count, shutdown_functio…
5182 efree(shutdown_function_entry.arguments);
[all …]
/PHP-7.3/ext/session/
H A Dsession.c2005 php_shutdown_function_entry shutdown_function_entry; in PHP_FUNCTION() local
2006 shutdown_function_entry.arg_count = 1; in PHP_FUNCTION()
2013 zval_ptr_dtor(&shutdown_function_entry.arguments[0]); in PHP_FUNCTION()
2014 efree(shutdown_function_entry.arguments); in PHP_FUNCTION()
2631 php_shutdown_function_entry shutdown_function_entry; in PHP_FUNCTION() local
2640 shutdown_function_entry.arg_count = 1; in PHP_FUNCTION()
2641 shutdown_function_entry.arguments = (zval *) safe_emalloc(sizeof(zval), 1, 0); in PHP_FUNCTION()
2643 ZVAL_STRING(&shutdown_function_entry.arguments[0], "session_write_close"); in PHP_FUNCTION()
2645 if (!append_user_shutdown_function(shutdown_function_entry)) { in PHP_FUNCTION()
2646 zval_ptr_dtor(&shutdown_function_entry.arguments[0]); in PHP_FUNCTION()
[all …]

Completed in 32 milliseconds