Home
last modified time | relevance | path

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

/PHP-7.4/ext/standard/
H A Dbasic_functions.h266 …on(char *function_name, size_t function_len, php_shutdown_function_entry *shutdown_function_entry);
268 …xtern zend_bool append_user_shutdown_function(php_shutdown_function_entry shutdown_function_entry);
H A Dbasic_functions.c5050 efree(shutdown_function_entry->arguments);
5051 efree(shutdown_function_entry);
5080 &shutdown_function_entry->arguments[0],
5082 shutdown_function_entry->arg_count - 1,
5189 php_shutdown_function_entry shutdown_function_entry; local
5192 shutdown_function_entry.arg_count = ZEND_NUM_ARGS();
5194 if (shutdown_function_entry.arg_count < 1) {
5198shutdown_function_entry.arguments = (zval *) safe_emalloc(sizeof(zval), shutdown_function_entry.ar…
5200 …if (zend_get_parameters_array(ZEND_NUM_ARGS(), shutdown_function_entry.arg_count, shutdown_functio…
5201 efree(shutdown_function_entry.arguments);
[all …]
/PHP-7.4/ext/session/
H A Dsession.c2027 php_shutdown_function_entry shutdown_function_entry; in PHP_FUNCTION() local
2028 shutdown_function_entry.arg_count = 1; in PHP_FUNCTION()
2035 zval_ptr_dtor(&shutdown_function_entry.arguments[0]); in PHP_FUNCTION()
2036 efree(shutdown_function_entry.arguments); in PHP_FUNCTION()
2644 php_shutdown_function_entry shutdown_function_entry; in PHP_FUNCTION() local
2653 shutdown_function_entry.arg_count = 1; in PHP_FUNCTION()
2654 shutdown_function_entry.arguments = (zval *) safe_emalloc(sizeof(zval), 1, 0); in PHP_FUNCTION()
2656 ZVAL_STRING(&shutdown_function_entry.arguments[0], "session_write_close"); in PHP_FUNCTION()
2658 if (!append_user_shutdown_function(shutdown_function_entry)) { in PHP_FUNCTION()
2659 zval_ptr_dtor(&shutdown_function_entry.arguments[0]); in PHP_FUNCTION()
[all …]

Completed in 25 milliseconds