Searched defs:shutdown_function_entry (Results 1 - 2 of 2) sorted by relevance
| /PHP_5_5/ext/standard/ |
| H A D | basic_functions.c | 128 static void user_shutdown_function_dtor(php_shutdown_function_entry *shutdown_function_entry); 4957 void user_shutdown_function_dtor(php_shutdown_function_entry *shutdown_function_entry) /* {{{ */ argument 4961 for (i = 0; i < shutdown_function_entry->arg_count; i++) { 4962 zval_ptr_dtor(&shutdown_function_entry->arguments[i]); 4964 efree(shutdown_function_entry->arguments); 4979 static int user_shutdown_function_call(php_shutdown_function_entry *shutdown_function_entry TSRMLS_DC) /* {{{ */ 4984 if (!zend_is_callable(shutdown_function_entry->arguments[0], 0, &function_name TSRMLS_CC)) { 4996 shutdown_function_entry->arguments[0], 4998 shutdown_function_entry->arg_count - 1, 4999 shutdown_function_entry 5114 php_shutdown_function_entry shutdown_function_entry; local 5145 zend_hash_next_index_insert(BG(user_shutdown_function_names), &shutdown_function_entry, sizeof(php_shutdown_function_entry), NULL); local [all...] |
| /PHP_5_5/ext/session/ |
| H A D | session.c | 1603 php_shutdown_function_entry shutdown_function_entry; local 1638 shutdown_function_entry.arg_count = 1; 1639 shutdown_function_entry.arguments = (zval **) safe_emalloc(sizeof(zval *), 1, 0); 1643 shutdown_function_entry.arguments[0] = callback; 1646 if (!register_user_shutdown_function("session_shutdown", sizeof("session_shutdown"), &shutdown_function_entry TSRMLS_CC)) { 1648 efree(shutdown_function_entry.arguments); 1934 php_shutdown_function_entry shutdown_function_entry; local 1944 shutdown_function_entry.arg_count = 1; 1945 shutdown_function_entry.arguments = (zval **) safe_emalloc(sizeof(zval *), 1, 0); 1949 shutdown_function_entry [all...] |
Completed in 11 milliseconds