| /PHP_5_5/Zend/ |
| H A D | zend_signal.c | 55 static int zend_signal_register(int signo, void (*handler)(int, siginfo_t*, void*) TSRMLS_DC); 125 /* need to just run handler if we're inactive and getting a signal */ 155 * Call the previously registered handler for a signal 164 if (p_sig.handler == SIG_DFL) { /* raise default handler */ 178 } else if (p_sig.handler != SIG_IGN) { /* ignore SIG_IGN */ 182 SIGG(handlers)[signo-1].handler = SIG_DFL; 184 (*(void (*)(int, siginfo_t*, void*))p_sig.handler)(signo, siginfo, context); 186 (*(void (*)(int))p_sig.handler)(signo); 194 * Register a signal handler tha 249 zend_signal_register(int signo, void (*handler)(int, siginfo_t*, void*) TSRMLS_DC) argument [all...] |
| H A D | zend_signal.h | 41 void* handler; /* signal handler or context */ member in struct:_zend_signal_entry_t 59 int running; /* in signal handler execution */ 91 ZEND_API int zend_signal(int signo, void (*handler)(int) TSRMLS_DC);
|
| H A D | zend_vm_gen.php | 306 // Generates code for opcode handler or helper 495 // Generates opcode handler 503 // Generate opcode handler's entry point according to selected threading model 515 // This handler is used by other handlers. We will add label to call it. 526 // Generate opcode handler's code 573 // to handler of undefined opcode 582 // Emit pointer to handler of undefined opcode 606 // Try to use unspecialized handler 614 // Try to use unspecialized handler 617 // Check if specialized handler i 1048 $handler = null; variable 1083 $handler = $code; variable 1101 $handler = null; variable 1123 $handler = null; variable [all...] |
| H A D | zend_compile.h | 110 opcode_handler_t handler; member in struct:_zend_op 330 void (*handler)(INTERNAL_FUNCTION_PARAMETERS); member in struct:_zend_internal_function 867 /* call op_array handler of extendions */
|
| H A D | zend_execute.c | 681 /* object was removed by error handler, nothing to assign to */ 1480 ((zend_internal_function *) execute_data_ptr->function_state.function)->handler(fci->param_count, 1485 ((zend_internal_function *) execute_data_ptr->function_state.function)->handler(execute_data_ptr->opline->extended_value, *return_value_ptr, 1712 ZEND_API int zend_set_user_opcode_handler(zend_uchar opcode, user_opcode_handler_t handler) argument 1715 if (handler == NULL) { 1716 /* restore the original handler */ 1721 zend_user_opcode_handlers[opcode] = handler;
|
| H A D | zend_API.h | 37 void (*handler)(INTERNAL_FUNCTION_PARAMETERS); member in struct:_zend_function_entry
|
| /PHP_5_5/ext/dom/ |
| H A D | document.c | 355 xmlCharEncodingHandlerPtr handler; local 373 handler = xmlFindCharEncodingHandler(Z_STRVAL_P(newval)); 375 if (handler != NULL) { 376 xmlCharEncCloseFunc(handler);
|
| H A D | xpath.c | 82 zval handler; local 196 INIT_PZVAL(&handler); 197 ZVAL_STRING(&handler, obj->stringval, 1); 200 fci.function_name = &handler; 206 if (!zend_make_callable(&handler, &callable TSRMLS_CC)) { 207 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to call handler %s()", callable); 210 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Not allowed to call handler '%s()'.", callable); 216 if (Z_TYPE(handler) == IS_STRING) { 217 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to call handler %s()", Z_STRVAL_P(&handler)); [all...] |
| /PHP_5_5/ext/xml/ |
| H A D | xml.c | 480 static void xml_set_handler(zval **handler, zval **data) argument 482 /* If we have already a handler, release it */ 483 if (*handler) { 484 zval_ptr_dtor(handler); 492 *handler = NULL; 499 *handler = *data; 504 static zval *xml_call_handler(xml_parser *parser, zval *handler, zend_function *function_ptr, int argc, zval **argv) argument 509 if (parser && handler && !EG(exception)) { 522 fci.function_name = handler; 536 if (Z_TYPE_P(handler) [all...] |
| /PHP_5_5/ext/xsl/ |
| H A D | xsltprocessor.c | 190 zval handler; local 315 INIT_PZVAL(&handler); 316 ZVAL_STRING(&handler, obj->stringval, 1); 319 fci.function_name = &handler; 325 if (!zend_make_callable(&handler, &callable TSRMLS_CC)) { 326 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to call handler %s()", callable); 329 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Not allowed to call handler '%s()'", callable); 335 if (Z_TYPE(handler) == IS_STRING) { 336 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to call handler %s()", Z_STRVAL_P(&handler)); [all...] |
| /PHP_5_5/main/ |
| H A D | output.c | 40 const char php_output_default_handler_name[sizeof("default output handler")] = "default output handler"; 41 const char php_output_devnull_handler_name[sizeof("null output handler")] = "null output handler"; 59 static inline php_output_handler_status_t php_output_handler_op(php_output_handler *handler, php_output_context *context); 60 static inline int php_output_handler_append(php_output_handler *handler, const php_output_buffer *buf TSRMLS_DC); 61 static inline zval *php_output_handler_status(php_output_handler *handler, zval *entry); 153 * Reset output globals and setup the output handler stack */ 170 * Destroy the output handler stack */ 173 php_output_handler **handler local 408 php_output_handler *handler; local 423 php_output_handler *handler; local 438 php_output_handler *handler; local 457 php_output_handler *handler; local 474 php_output_handler *handler = NULL; local 514 php_output_handler *handler; local 525 php_output_handler_set_context(php_output_handler *handler, void *opaq, void (*dtor)(void* TSRMLS_DC) TSRMLS_DC) argument 864 php_output_handler *handler; local 880 php_output_handler_append(php_output_handler *handler, const php_output_buffer *buf TSRMLS_DC) argument 908 php_output_handler_op(php_output_handler *handler, php_output_context *context) argument 1098 php_output_handler *handler = *(php_output_handler **) h; local 1144 php_output_handler *handler = *(php_output_handler **) h; local 1158 php_output_handler *handler = *(php_output_handler **) h; local 1170 php_output_handler *handler = *(php_output_handler **) h; local 1180 php_output_handler_status(php_output_handler *handler, zval *entry) argument [all...] |
| /PHP_5_5/sapi/apache_hooks/ |
| H A D | mod_php5.c | 274 void (*handler)(int); 286 handler = signal(SIGPIPE, SIG_IGN); 296 signal(SIGPIPE, handler); 352 *p = ':'; /* a well behaved header handler shouldn't change its original arguments */ 529 php_error, /* error handler */ 531 sapi_apache_header_handler, /* header handler */ 532 sapi_apache_send_headers, /* send headers handler */ 533 NULL, /* send header handler */ 932 php_handler *handler; local 933 handler 951 php_handler *handler; local 1261 php_run_hook(php_handler *handler, request_rec *r) argument [all...] |
| H A D | sapi_apache.c | 63 int apache_php_module_hook(request_rec *r, php_handler *handler, zval **ret TSRMLS_DC) argument 84 switch(handler->type) { 86 php_register_variable("PHP_SELF_HOOK", handler->name, PG(http_globals)[TRACK_VARS_SERVER] TSRMLS_CC); 89 file_handle.filename = handler->name; 93 if( (tmp = strstr(handler->name, "::")) != NULL && *(tmp+2) != '\0' ) { 98 ZVAL_STRING(class, handler->name, 1); 107 php_error(E_ERROR, "Unable to call %s - not a Class::Method\n", handler->name);
|
| /PHP_5_5/sapi/litespeed/ |
| H A D | lsapilib.c | 157 static void lsapi_signal(int signo, sighandler_t handler) argument 166 sa.sa_handler = handler; 1806 perror( "Can't set signal handler for SIGCHILD" ); 1810 /* Set up handler to kill children upon exit */
|
| /PHP_5_5/ext/spl/ |
| H A D | spl_array.c | 1131 zend_object_get_properties_t handler = Z_OBJ_HANDLER_PP(array, get_properties); local 1132 if ((handler != std_object_handlers.get_properties && handler != spl_array_get_properties) 1142 /* iterator handler table */
|
| /PHP_5_5/ext/dba/ |
| H A D | dba.c | 282 /* a DBA handler must have specific routines */ 304 static dba_handler handler[] = { variable 390 for (hptr = handler; hptr->name && strcasecmp(hptr->name, handler_name); hptr++); 465 for (hptr = handler; hptr->name && strcasecmp(hptr->name, new_value); hptr++); 468 php_error_docref(NULL TSRMLS_CC, E_WARNING, "No such handler: %s", new_value); 518 for(hptr = handler; hptr->name; hptr++) { 621 /* we pass additional args to the respective handler */ 665 php_error_docref2(NULL TSRMLS_CC, Z_STRVAL_PP(args[0]), Z_STRVAL_PP(args[1]), E_WARNING, "No default handler selected"); 670 for (hptr = handler; hptr->name && strcasecmp(hptr->name, Z_STRVAL_PP(args[2])); hptr++); 674 php_error_docref2(NULL TSRMLS_CC, Z_STRVAL_PP(args[0]), Z_STRVAL_PP(args[1]), E_WARNING, "No such handler [all...] |
| /PHP_5_5/ext/opcache/ |
| H A D | zend_shared_alloc.h | 89 zend_shared_memory_handlers *handler; member in struct:_handler_entry
|
| /PHP_5_5/ext/soap/ |
| H A D | soap.c | 380 ZEND_ARG_INFO(0, handler) 628 fe.handler = ZEND_MN(SoapClient___call); 2295 zend_bool handler = 1; local 2298 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|b", &handler) == SUCCESS) { 2299 SOAP_GLOBAL(use_soap_error_handler) = handler;
|