handler          2068 Zend/zend_API.c 		internal_function->handler = ptr->handler;
handler          2126 Zend/zend_API.c 			if (!internal_function->handler) {
handler          2643 Zend/zend_API.c 		func->handler = ZEND_FN(display_disabled_function);
handler          2884 Zend/zend_API.c 				fcc->function_handler->internal_function.handler = zend_std_call_user_call;
handler            37 Zend/zend_API.h 	void (*handler)(INTERNAL_FUNCTION_PARAMETERS);
handler          1389 Zend/zend_builtin_functions.c 		func->internal_function.handler == zif_display_disabled_function) {
handler           176 Zend/zend_closures.c 	invoke->internal_function.handler = ZEND_MN(Closure___invoke);
handler           112 Zend/zend_compile.h 	opcode_handler_t handler;
handler           336 Zend/zend_compile.h 	void (*handler)(INTERNAL_FUNCTION_PARAMETERS);
handler          1521 Zend/zend_execute.c 		execute_data_ptr->function_state.function->internal_function.handler(
handler          1527 Zend/zend_execute.c 		execute_data_ptr->function_state.function->internal_function.handler(
handler          1800 Zend/zend_execute.c ZEND_API int zend_set_user_opcode_handler(zend_uchar opcode, user_opcode_handler_t handler)
handler          1803 Zend/zend_execute.c 		if (handler == NULL) {
handler          1809 Zend/zend_execute.c 		zend_user_opcode_handlers[opcode] = handler;
handler           387 Zend/zend_execute.h ZEND_API int zend_set_user_opcode_handler(zend_uchar opcode, user_opcode_handler_t handler);
handler           847 Zend/zend_execute_API.c 			EX(function_state).function->internal_function.handler(fci->param_count, *fci->retval_ptr_ptr, fci->retval_ptr_ptr, fci->object_ptr, 1 TSRMLS_CC);
handler          1026 Zend/zend_object_handlers.c 	call_user_call->handler = zend_std_call_user_call;
handler          1166 Zend/zend_object_handlers.c 	callstatic_user_call->handler  = zend_std_callstatic_user_call;
handler            55 Zend/zend_signal.c static int zend_signal_register(int signo, void (*handler)(int, siginfo_t*, void*) TSRMLS_DC);
handler           164 Zend/zend_signal.c 	if (p_sig.handler == SIG_DFL) { /* raise default handler */
handler           178 Zend/zend_signal.c 	} else if (p_sig.handler != SIG_IGN) { /* ignore SIG_IGN */
handler           182 Zend/zend_signal.c 				SIGG(handlers)[signo-1].handler = SIG_DFL;
handler           184 Zend/zend_signal.c 			(*(void (*)(int, siginfo_t*, void*))p_sig.handler)(signo, siginfo, context);
handler           186 Zend/zend_signal.c 			(*(void (*)(int))p_sig.handler)(signo);
handler           202 Zend/zend_signal.c 		oldact->sa_handler = (void *) SIGG(handlers)[signo-1].handler;
handler           208 Zend/zend_signal.c 			SIGG(handlers)[signo-1].handler = (void *) act->sa_sigaction;
handler           210 Zend/zend_signal.c 			SIGG(handlers)[signo-1].handler = (void *) act->sa_handler;
handler           233 Zend/zend_signal.c ZEND_API int zend_signal(int signo, void (*handler)(int) TSRMLS_DC)
handler           238 Zend/zend_signal.c 	sa.sa_handler = handler;
handler           249 Zend/zend_signal.c static int zend_signal_register(int signo, void (*handler)(int, siginfo_t*, void*) TSRMLS_DC)
handler           254 Zend/zend_signal.c 		if ((sa.sa_flags & SA_SIGINFO) && sa.sa_sigaction == handler) {
handler           260 Zend/zend_signal.c 			SIGG(handlers)[signo-1].handler = (void *)sa.sa_sigaction;
handler           262 Zend/zend_signal.c 			SIGG(handlers)[signo-1].handler = (void *)sa.sa_handler;
handler           266 Zend/zend_signal.c 		sa.sa_sigaction = handler;
handler           384 Zend/zend_signal.c 				global_orig_handlers[signo-1].handler = (void *) sa.sa_sigaction;
handler           386 Zend/zend_signal.c 				global_orig_handlers[signo-1].handler = (void *) sa.sa_handler;
handler            41 Zend/zend_signal.h 	void* handler;      /* signal handler or context */
handler            91 Zend/zend_signal.h ZEND_API int zend_signal(int signo, void (*handler)(int) TSRMLS_DC);
handler          1989 Zend/zend_vm_def.h 				fbc->internal_function.handler(num_args, ret->var.ptr, &ret->var.ptr, EX(object), RETURN_VALUE_USED(opline) TSRMLS_CC);
handler           363 Zend/zend_vm_execute.h 		if ((ret = OPLINE->handler(execute_data TSRMLS_CC)) > 0) {
handler           558 Zend/zend_vm_execute.h 				fbc->internal_function.handler(num_args, ret->var.ptr, &ret->var.ptr, EX(object), RETURN_VALUE_USED(opline) TSRMLS_CC);
handler          45613 Zend/zend_vm_execute.h 	op->handler = zend_vm_get_opcode_handler(zend_user_opcodes[op->opcode], op);
handler           288 ext/com_dotnet/com_handlers.c 		f.handler = PHP_FN(com_method_handler);
handler           417 ext/com_dotnet/com_handlers.c 	f.handler = ZEND_FN(fn); \
handler           317 ext/dba/dba.c  static dba_handler handler[] = {
handler           478 ext/dba/dba.c  	for (hptr = handler; hptr->name && strcasecmp(hptr->name, new_value); hptr++);
handler           531 ext/dba/dba.c  	for(hptr = handler; hptr->name; hptr++) {
handler           684 ext/dba/dba.c  		for (hptr = handler; hptr->name && strcasecmp(hptr->name, Z_STRVAL_PP(args[2])); hptr++);
handler          1216 ext/dba/dba.c  	for(hptr = handler; hptr->name; hptr++) {
handler           355 ext/dom/document.c 	xmlCharEncodingHandlerPtr handler;
handler           366 ext/dom/document.c 	handler = xmlFindCharEncodingHandler(Z_STRVAL_P(newval));
handler           368 ext/dom/document.c     if (handler != NULL) {
handler           369 ext/dom/document.c 		xmlCharEncCloseFunc(handler);
handler            99 ext/dom/node.c 	ZEND_ARG_INFO(0, handler)
handler            82 ext/dom/xpath.c 	zval handler;
handler           196 ext/dom/xpath.c 	INIT_PZVAL(&handler);
handler           197 ext/dom/xpath.c 	ZVAL_STRING(&handler, obj->stringval, 1);
handler           200 ext/dom/xpath.c 	fci.function_name = &handler;
handler           206 ext/dom/xpath.c 	if (!zend_make_callable(&handler, &callable TSRMLS_CC)) {
handler           216 ext/dom/xpath.c 			if (Z_TYPE(handler) == IS_STRING) {
handler           217 ext/dom/xpath.c 				php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to call handler %s()", Z_STRVAL_P(&handler));
handler           247 ext/dom/xpath.c 	zval_dtor(&handler);
handler           310 ext/interbase/interbase.c 	ZEND_ARG_INFO(0, handler)
handler           453 ext/mysql/php_mysql.c 	void (*handler) (int);
handler           455 ext/mysql/php_mysql.c 	handler = signal(SIGPIPE, SIG_IGN);
handler           457 ext/mysql/php_mysql.c 	signal(SIGPIPE, handler);
handler           468 ext/mysql/php_mysql.c 	void (*handler) (int);
handler           470 ext/mysql/php_mysql.c 	handler = signal(SIGPIPE, SIG_IGN);
handler           472 ext/mysql/php_mysql.c 	signal(SIGPIPE, handler);
handler           729 ext/mysql/php_mysql.c 	void (*handler) (int);
handler           391 ext/opcache/Optimizer/pass1_5.c 							   func->handler != ZEND_FN(display_disabled_function))	{
handler            44 ext/opcache/Optimizer/zend_optimizer_internal.h # define MAKE_NOP(opline)	{ opline->opcode = ZEND_NOP;  memset(&opline->result,0,sizeof(opline->result)); memset(&opline->op1,0,sizeof(opline->op1)); memset(&opline->op2,0,sizeof(opline->op2)); opline->result_type=opline->op1_type=opline->op2_type=IS_UNUSED; opline->handler = zend_opcode_handlers[ZEND_NOP]; }
handler            49 ext/opcache/Optimizer/zend_optimizer_internal.h # define MAKE_NOP(opline)	{ opline->opcode = ZEND_NOP;  memset(&opline->result,0,sizeof(znode)); memset(&opline->op1,0,sizeof(znode)); memset(&opline->op2,0,sizeof(znode)); opline->result.op_type=opline->op1.op_type=opline->op2.op_type=IS_UNUSED; opline->handler = zend_opcode_handlers[ZEND_NOP]; }
handler          2641 ext/opcache/ZendAccelerator.c 		orig_chdir = func->internal_function.handler;
handler          2642 ext/opcache/ZendAccelerator.c 		func->internal_function.handler = ZEND_FN(accel_chdir);
handler           399 ext/opcache/zend_accelerator_module.c 			orig_file_exists = old_function->internal_function.handler;
handler           400 ext/opcache/zend_accelerator_module.c 			old_function->internal_function.handler = accel_file_exists;
handler           403 ext/opcache/zend_accelerator_module.c 			orig_is_file = old_function->internal_function.handler;
handler           404 ext/opcache/zend_accelerator_module.c 			old_function->internal_function.handler = accel_is_file;
handler           407 ext/opcache/zend_accelerator_module.c 			orig_is_readable = old_function->internal_function.handler;
handler           408 ext/opcache/zend_accelerator_module.c 			old_function->internal_function.handler = accel_is_readable;
handler           680 ext/opcache/zend_accelerator_util_funcs.c #define zend_update_inherited_handler(handler) \
handler           682 ext/opcache/zend_accelerator_util_funcs.c 	if (ce->handler != NULL) { \
handler           683 ext/opcache/zend_accelerator_util_funcs.c 		if (accel_xlat_get(ce->handler, new_func) == SUCCESS) { \
handler           684 ext/opcache/zend_accelerator_util_funcs.c 			ce->handler = *new_func; \
handler           125 ext/opcache/zend_shared_alloc.c 	g_shared_alloc_handler = he->handler;
handler            89 ext/opcache/zend_shared_alloc.h 	zend_shared_memory_handlers *handler;
handler            69 ext/pcntl/pcntl.c 	ZEND_ARG_INFO(0, handler)
handler          1309 ext/pdo/pdo_dbh.c 		ifunc->handler = funcs->handler;
handler          2713 ext/pdo/pdo_stmt.c 	ctor.handler = ZEND_FN(dbstmt_constructor);
handler           485 ext/pdo_mysql/mysql_driver.c 	void (*handler) (int);
handler           497 ext/pdo_mysql/mysql_driver.c 	handler = signal(SIGPIPE, SIG_IGN);
handler           502 ext/pdo_mysql/mysql_driver.c 			signal(SIGPIPE, handler);
handler           507 ext/pdo_mysql/mysql_driver.c 	signal(SIGPIPE, handler);
handler          1059 ext/phar/func_interceptors.c 		PHAR_G(orig_##func) = orig->internal_function.handler; \
handler          1060 ext/phar/func_interceptors.c 		orig->internal_function.handler = phar_##func; \
handler          1096 ext/phar/func_interceptors.c 		orig->internal_function.handler = PHAR_G(orig_##func); \
handler          1829 ext/reflection/php_reflection.c 	RETURN_BOOL(fptr->type == ZEND_INTERNAL_FUNCTION && fptr->internal_function.handler == zif_display_disabled_function);
handler           386 ext/soap/soap.c 	ZEND_ARG_INFO(0, handler)
handler           635 ext/soap/soap.c 		fe.handler = ZEND_MN(SoapClient___call);
handler          2304 ext/soap/soap.c 	zend_bool handler = 1;
handler          2307 ext/soap/soap.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|b", &handler) == SUCCESS) {
handler          2308 ext/soap/soap.c 		SOAP_GLOBAL(use_soap_error_handler) = handler;
handler          1153 ext/spl/spl_array.c 		zend_object_get_properties_t handler = Z_OBJ_HANDLER_PP(array, get_properties);
handler          1154 ext/spl/spl_array.c 		if ((handler != std_object_handlers.get_properties && handler != spl_array_get_properties)
handler           480 ext/xml/xml.c  static void xml_set_handler(zval **handler, zval **data)
handler           483 ext/xml/xml.c  	if (*handler) {
handler           484 ext/xml/xml.c  		zval_ptr_dtor(handler);
handler           492 ext/xml/xml.c  			*handler = NULL;
handler           499 ext/xml/xml.c  	*handler = *data;
handler           504 ext/xml/xml.c  static zval *xml_call_handler(xml_parser *parser, zval *handler, zend_function *function_ptr, int argc, zval **argv)
handler           509 ext/xml/xml.c  	if (parser && handler && !EG(exception)) {
handler           522 ext/xml/xml.c  		fci.function_name = handler;
handler           536 ext/xml/xml.c  			if (Z_TYPE_P(handler) == IS_STRING) {
handler           537 ext/xml/xml.c  				php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to call handler %s()", Z_STRVAL_P(handler));
handler           538 ext/xml/xml.c  			} else if (zend_hash_index_find(Z_ARRVAL_P(handler), 0, (void **) &obj) == SUCCESS &&
handler           539 ext/xml/xml.c  					   zend_hash_index_find(Z_ARRVAL_P(handler), 1, (void **) &method) == SUCCESS &&
handler           190 ext/xsl/xsltprocessor.c 	zval handler;
handler           326 ext/xsl/xsltprocessor.c 	INIT_PZVAL(&handler);
handler           327 ext/xsl/xsltprocessor.c 	ZVAL_STRING(&handler, obj->stringval, 1);
handler           330 ext/xsl/xsltprocessor.c 	fci.function_name = &handler;
handler           336 ext/xsl/xsltprocessor.c 	if (!zend_make_callable(&handler, &callable TSRMLS_CC)) {
handler           346 ext/xsl/xsltprocessor.c 			if (Z_TYPE(handler) == IS_STRING) {
handler           347 ext/xsl/xsltprocessor.c 				php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to call handler %s()", Z_STRVAL_P(&handler));
handler           378 ext/xsl/xsltprocessor.c 	zval_dtor(&handler);
handler            59 main/output.c  static inline php_output_handler_status_t php_output_handler_op(php_output_handler *handler, php_output_context *context);
handler            60 main/output.c  static inline int php_output_handler_append(php_output_handler *handler, const php_output_buffer *buf TSRMLS_DC);
handler            61 main/output.c  static inline zval *php_output_handler_status(php_output_handler *handler, zval *entry);
handler           173 main/output.c  	php_output_handler **handler = NULL;
handler           184 main/output.c  			while (SUCCESS == zend_stack_top(&OG(handlers), (void *) &handler)) {
handler           185 main/output.c  				php_output_handler_free(handler TSRMLS_CC);
handler           423 main/output.c  	php_output_handler *handler;
handler           425 main/output.c  	handler = php_output_handler_create_internal(ZEND_STRL(php_output_default_handler_name), php_output_handler_default_func, 0, PHP_OUTPUT_HANDLER_STDFLAGS TSRMLS_CC);
handler           426 main/output.c  	if (SUCCESS == php_output_handler_start(handler TSRMLS_CC)) {
handler           429 main/output.c  	php_output_handler_free(&handler TSRMLS_CC);
handler           438 main/output.c  	php_output_handler *handler;
handler           440 main/output.c  	handler = php_output_handler_create_internal(ZEND_STRL(php_output_devnull_handler_name), php_output_handler_devnull_func, PHP_OUTPUT_HANDLER_DEFAULT_SIZE, 0 TSRMLS_CC);
handler           441 main/output.c  	if (SUCCESS == php_output_handler_start(handler TSRMLS_CC)) {
handler           444 main/output.c  	php_output_handler_free(&handler TSRMLS_CC);
handler           453 main/output.c  	php_output_handler *handler;
handler           456 main/output.c  		handler = php_output_handler_create_user(output_handler, chunk_size, flags TSRMLS_CC);
handler           458 main/output.c  		handler = php_output_handler_create_internal(ZEND_STRL(php_output_default_handler_name), php_output_handler_default_func, chunk_size, flags TSRMLS_CC);
handler           460 main/output.c  	if (SUCCESS == php_output_handler_start(handler TSRMLS_CC)) {
handler           463 main/output.c  	php_output_handler_free(&handler TSRMLS_CC);
handler           472 main/output.c  	php_output_handler *handler;
handler           474 main/output.c  	handler = php_output_handler_create_internal(name, name_len, php_output_handler_compat_func, chunk_size, flags TSRMLS_CC);
handler           475 main/output.c  	php_output_handler_set_context(handler, output_handler, NULL TSRMLS_CC);
handler           476 main/output.c  	if (SUCCESS == php_output_handler_start(handler TSRMLS_CC)) {
handler           479 main/output.c  	php_output_handler_free(&handler TSRMLS_CC);
handler           489 main/output.c  	php_output_handler *handler = NULL;
handler           495 main/output.c  			handler = php_output_handler_create_internal(ZEND_STRL(php_output_default_handler_name), php_output_handler_default_func, chunk_size, flags TSRMLS_CC);
handler           499 main/output.c  				handler = (*alias)(Z_STRVAL_P(output_handler), Z_STRLEN_P(output_handler), chunk_size, flags TSRMLS_CC);
handler           505 main/output.c  				handler = php_output_handler_init(handler_name, strlen(handler_name), chunk_size, (flags & ~0xf) | PHP_OUTPUT_HANDLER_USER TSRMLS_CC);
handler           508 main/output.c  				handler->func.user = user;
handler           521 main/output.c  	return handler;
handler           529 main/output.c  	php_output_handler *handler;
handler           531 main/output.c  	handler = php_output_handler_init(name, name_len, chunk_size, (flags & ~0xf) | PHP_OUTPUT_HANDLER_INTERNAL TSRMLS_CC);
handler           532 main/output.c  	handler->func.internal = output_handler;
handler           534 main/output.c  	return handler;
handler           540 main/output.c  PHPAPI void php_output_handler_set_context(php_output_handler *handler, void *opaq, void (*dtor)(void* TSRMLS_DC) TSRMLS_DC)
handler           542 main/output.c  	if (handler->dtor && handler->opaq) {
handler           543 main/output.c  		handler->dtor(handler->opaq TSRMLS_CC);
handler           545 main/output.c  	handler->dtor = dtor;
handler           546 main/output.c  	handler->opaq = opaq;
handler           552 main/output.c  PHPAPI int php_output_handler_start(php_output_handler *handler TSRMLS_DC)
handler           558 main/output.c  	if (php_output_lock_error(PHP_OUTPUT_HANDLER_START TSRMLS_CC) || !handler) {
handler           561 main/output.c  	if (SUCCESS == zend_hash_find(&php_output_handler_conflicts, handler->name, handler->name_len+1, (void *) &conflict)) {
handler           562 main/output.c  		if (SUCCESS != (*conflict)(handler->name, handler->name_len TSRMLS_CC)) {
handler           566 main/output.c  	if (SUCCESS == zend_hash_find(&php_output_handler_reverse_conflicts, handler->name, handler->name_len+1, (void *) &rconflicts)) {
handler           571 main/output.c  			if (SUCCESS != (*conflict)(handler->name, handler->name_len TSRMLS_CC)) {
handler           577 main/output.c  	if (FAILURE == (handler->level = zend_stack_push(&OG(handlers), &handler, sizeof(php_output_handler *)))) {
handler           580 main/output.c  	OG(active) = handler;
handler           716 main/output.c  PHPAPI void php_output_handler_dtor(php_output_handler *handler TSRMLS_DC)
handler           718 main/output.c  	STR_FREE(handler->name);
handler           719 main/output.c  	STR_FREE(handler->buffer.data);
handler           720 main/output.c  	if (handler->flags & PHP_OUTPUT_HANDLER_USER) {
handler           721 main/output.c  		zval_ptr_dtor(&handler->func.user->zoh);
handler           722 main/output.c  		efree(handler->func.user);
handler           724 main/output.c  	if (handler->dtor && handler->opaq) {
handler           725 main/output.c  		handler->dtor(handler->opaq TSRMLS_CC);
handler           727 main/output.c  	memset(handler, 0, sizeof(*handler));
handler           879 main/output.c  	php_output_handler *handler;
handler           881 main/output.c  	handler = ecalloc(1, sizeof(php_output_handler));
handler           882 main/output.c  	handler->name = estrndup(name, name_len);
handler           883 main/output.c  	handler->name_len = name_len;
handler           884 main/output.c  	handler->size = chunk_size;
handler           885 main/output.c  	handler->flags = flags;
handler           886 main/output.c  	handler->buffer.size = PHP_OUTPUT_HANDLER_INITBUF_SIZE(chunk_size);
handler           887 main/output.c  	handler->buffer.data = emalloc(handler->buffer.size);
handler           889 main/output.c  	return handler;
handler           895 main/output.c  static inline int php_output_handler_append(php_output_handler *handler, const php_output_buffer *buf TSRMLS_DC)
handler           900 main/output.c  		if ((handler->buffer.size - handler->buffer.used) <= buf->used) {
handler           901 main/output.c  			size_t grow_int = PHP_OUTPUT_HANDLER_INITBUF_SIZE(handler->size);
handler           902 main/output.c  			size_t grow_buf = PHP_OUTPUT_HANDLER_INITBUF_SIZE(buf->used - (handler->buffer.size - handler->buffer.used));
handler           905 main/output.c  			handler->buffer.data = erealloc(handler->buffer.data, handler->buffer.size + grow_max);
handler           906 main/output.c  			handler->buffer.size += grow_max;
handler           908 main/output.c  		memcpy(handler->buffer.data + handler->buffer.used, buf->data, buf->used);
handler           909 main/output.c  		handler->buffer.used += buf->used;
handler           912 main/output.c  		if (handler->size && (handler->buffer.used >= handler->size)) {
handler           923 main/output.c  static inline php_output_handler_status_t php_output_handler_op(php_output_handler *handler, php_output_context *context)
handler           940 main/output.c  			handler,
handler           941 main/output.c  			handler->name,
handler           942 main/output.c  			handler->flags,
handler           943 main/output.c  			handler->buffer.used?handler->buffer.data:"",
handler           944 main/output.c  			handler->buffer.used,
handler           945 main/output.c  			handler->buffer.size,
handler           957 main/output.c  	if (php_output_handler_append(handler, &context->in TSRMLS_CC) && !context->op) {
handler           962 main/output.c  		if (!(handler->flags & PHP_OUTPUT_HANDLER_STARTED)) {
handler           966 main/output.c  		OG(running) = handler;
handler           967 main/output.c  		if (handler->flags & PHP_OUTPUT_HANDLER_USER) {
handler           971 main/output.c  			ZVAL_STRINGL(ob_data, handler->buffer.data, handler->buffer.used, 1);
handler           974 main/output.c  			zend_fcall_info_argn(&handler->func.user->fci TSRMLS_CC, 2, &ob_data, &ob_mode);
handler           977 main/output.c  			if (SUCCESS == zend_fcall_info_call(&handler->func.user->fci, &handler->func.user->fcc, &retval, NULL TSRMLS_CC) && PHP_OUTPUT_USER_SUCCESS(retval)) {
handler           994 main/output.c  			zend_fcall_info_argn(&handler->func.user->fci TSRMLS_CC, 0);
handler          1003 main/output.c  			php_output_context_feed(context, handler->buffer.data, handler->buffer.size, handler->buffer.used, 0);
handler          1005 main/output.c  			if (SUCCESS == handler->func.internal(&handler->opaq, context)) {
handler          1015 main/output.c  		handler->flags |= PHP_OUTPUT_HANDLER_STARTED;
handler          1022 main/output.c  			handler->flags |= PHP_OUTPUT_HANDLER_DISABLED;
handler          1028 main/output.c  			context->out.data = handler->buffer.data;
handler          1029 main/output.c  			context->out.used = handler->buffer.used;
handler          1031 main/output.c  			handler->buffer.data = NULL;
handler          1032 main/output.c  			handler->buffer.used = 0;
handler          1033 main/output.c  			handler->buffer.size = 0;
handler          1041 main/output.c  			handler->buffer.used = 0;
handler          1042 main/output.c  			handler->flags |= PHP_OUTPUT_HANDLER_PROCESSED;
handler          1113 main/output.c  	php_output_handler *handler = *(php_output_handler **) h;
handler          1116 main/output.c  	if ((was_disabled = (handler->flags & PHP_OUTPUT_HANDLER_DISABLED))) {
handler          1119 main/output.c  		status = php_output_handler_op(handler, context);
handler          1132 main/output.c  			if (handler->level) {
handler          1141 main/output.c  				if (!handler->level) {
handler          1146 main/output.c  				if (handler->level) {
handler          1159 main/output.c  	php_output_handler *handler = *(php_output_handler **) h;
handler          1162 main/output.c  	handler->buffer.used = 0;
handler          1163 main/output.c  	php_output_handler_op(handler, context);
handler          1173 main/output.c  	php_output_handler *handler = *(php_output_handler **) h;
handler          1176 main/output.c  	add_next_index_stringl(array, handler->name, handler->name_len, 1);
handler          1185 main/output.c  	php_output_handler *handler = *(php_output_handler **) h;
handler          1188 main/output.c  	add_next_index_zval(array, php_output_handler_status(handler, NULL));
handler          1195 main/output.c  static inline zval *php_output_handler_status(php_output_handler *handler, zval *entry)
handler          1202 main/output.c  	add_assoc_stringl(entry, "name", handler->name, handler->name_len, 1);
handler          1203 main/output.c  	add_assoc_long(entry, "type", (long) (handler->flags & 0xf));
handler          1204 main/output.c  	add_assoc_long(entry, "flags", (long) handler->flags);
handler          1205 main/output.c  	add_assoc_long(entry, "level", (long) handler->level);
handler          1206 main/output.c  	add_assoc_long(entry, "chunk_size", (long) handler->size);
handler          1207 main/output.c  	add_assoc_long(entry, "buffer_size", (long) handler->buffer.size);
handler          1208 main/output.c  	add_assoc_long(entry, "buffer_used", (long) handler->buffer.used);
handler           235 main/php_output.h PHPAPI php_output_handler *php_output_handler_create_user(zval *handler, size_t chunk_size, int flags TSRMLS_DC);
handler           236 main/php_output.h PHPAPI php_output_handler *php_output_handler_create_internal(const char *name, size_t name_len, php_output_handler_context_func_t handler, size_t chunk_size, int flags TSRMLS_DC);
handler           238 main/php_output.h PHPAPI void php_output_handler_set_context(php_output_handler *handler, void *opaq, void (*dtor)(void* TSRMLS_DC) TSRMLS_DC);
handler           239 main/php_output.h PHPAPI int php_output_handler_start(php_output_handler *handler TSRMLS_DC);
handler           242 main/php_output.h PHPAPI void php_output_handler_dtor(php_output_handler *handler TSRMLS_DC);
handler           243 main/php_output.h PHPAPI void php_output_handler_free(php_output_handler **handler TSRMLS_DC);
handler           129 sapi/apache/mod_php5.c 	void (*handler)(int);
handler           141 sapi/apache/mod_php5.c 	handler = signal(SIGPIPE, SIG_IGN);
handler           151 sapi/apache/mod_php5.c 	signal(SIGPIPE, handler);	
handler           489 sapi/apache/php_apache.c 	if (rr->handler) {
handler           490 sapi/apache/php_apache.c 		add_property_string(return_value,"handler", (char *)rr->handler, 1);		
handler           128 sapi/apache2filter/php_functions.c 		ADD_STRING(handler);
handler           148 sapi/apache2handler/php_functions.c 		ADD_STRING(handler);
handler           568 sapi/apache2handler/sapi_apache2.c 	if (strcmp(r->handler, PHP_MAGIC_TYPE) && strcmp(r->handler, PHP_SOURCE_MAGIC_TYPE) && strcmp(r->handler, PHP_SCRIPT)) {
handler           570 sapi/apache2handler/sapi_apache2.c 		if (!AP2(xbithack) || strcmp(r->handler, "text/html") || !(r->finfo.protection & APR_UEXECUTE)) {
handler           625 sapi/apache2handler/sapi_apache2.c 		if (parent_req && parent_req->handler &&
handler           626 sapi/apache2handler/sapi_apache2.c 				strcmp(parent_req->handler, PHP_MAGIC_TYPE) &&
handler           627 sapi/apache2handler/sapi_apache2.c 				strcmp(parent_req->handler, PHP_SOURCE_MAGIC_TYPE) &&
handler           628 sapi/apache2handler/sapi_apache2.c 				strcmp(parent_req->handler, PHP_SCRIPT)) {
handler           654 sapi/apache2handler/sapi_apache2.c 	if (strncmp(r->handler, PHP_SOURCE_MAGIC_TYPE, sizeof(PHP_SOURCE_MAGIC_TYPE) - 1) == 0) {
handler           274 sapi/apache_hooks/mod_php5.c 	void (*handler)(int);
handler           286 sapi/apache_hooks/mod_php5.c 	handler = signal(SIGPIPE, SIG_IGN);
handler           296 sapi/apache_hooks/mod_php5.c 	signal(SIGPIPE, handler);	
handler           932 sapi/apache_hooks/mod_php5.c 	php_handler *handler;
handler           933 sapi/apache_hooks/mod_php5.c 	handler = (php_handler *) malloc(sizeof(php_handler));
handler           934 sapi/apache_hooks/mod_php5.c 	handler->type = handler_type;
handler           935 sapi/apache_hooks/mod_php5.c 	handler->stage = handler_stage;
handler           936 sapi/apache_hooks/mod_php5.c 	handler->name = strdup(arg1);
handler           940 sapi/apache_hooks/mod_php5.c 			sapi_stack_push(&conf->uri_handlers, handler);
handler           943 sapi/apache_hooks/mod_php5.c 			sapi_stack_push(&conf->requires, handler);
handler           951 sapi/apache_hooks/mod_php5.c 	php_handler *handler;
handler           952 sapi/apache_hooks/mod_php5.c 	handler = (php_handler *) malloc(sizeof(php_handler));
handler           953 sapi/apache_hooks/mod_php5.c 	handler->type = handler_type;
handler           954 sapi/apache_hooks/mod_php5.c 	handler->stage = handler_stage;
handler           955 sapi/apache_hooks/mod_php5.c 	handler->name = strdup(arg1);
handler           958 sapi/apache_hooks/mod_php5.c 			sapi_stack_push(&conf->post_read_handlers, handler);
handler           961 sapi/apache_hooks/mod_php5.c 			sapi_stack_push(&conf->headers_handlers, handler);
handler           964 sapi/apache_hooks/mod_php5.c 			sapi_stack_push(&conf->access_handlers, handler);
handler           967 sapi/apache_hooks/mod_php5.c 			sapi_stack_push(&conf->auth_handlers, handler);
handler           972 sapi/apache_hooks/mod_php5.c 			sapi_stack_push(&conf->type_handlers, handler);
handler           975 sapi/apache_hooks/mod_php5.c 			sapi_stack_push(&conf->fixup_handlers, handler);
handler           978 sapi/apache_hooks/mod_php5.c 			sapi_stack_push(&conf->response_handlers, handler);
handler           981 sapi/apache_hooks/mod_php5.c 			sapi_stack_push(&conf->logger_handlers, handler);
handler          1261 sapi/apache_hooks/mod_php5.c static int php_run_hook(php_handler *handler, request_rec *r)
handler          1274 sapi/apache_hooks/mod_php5.c 	if (!handler->name) {
handler          1285 sapi/apache_hooks/mod_php5.c 	apache_php_module_hook(r, handler, &ret TSRMLS_CC);
handler           362 sapi/apache_hooks/php_apache.c 	apache_request_string_slot(offsetof(request_rec, handler), INTERNAL_FUNCTION_PARAM_PASSTHRU);
handler          1300 sapi/apache_hooks/php_apache.c 	PHP_FALIAS(handler,						apache_request_handler,				NULL)
handler          1864 sapi/apache_hooks/php_apache.c 	if (rr->handler) {
handler          1865 sapi/apache_hooks/php_apache.c 		add_property_string(return_value,"handler", (char *)rr->handler, 1);		
handler            44 sapi/apache_hooks/php_apache_http.h int apache_php_module_hook(request_rec *r, php_handler *handler, zval **ret TSRMLS_DC);
handler            63 sapi/apache_hooks/sapi_apache.c int apache_php_module_hook(request_rec *r, php_handler *handler, zval **ret TSRMLS_DC)
handler            84 sapi/apache_hooks/sapi_apache.c     switch(handler->type) {
handler            86 sapi/apache_hooks/sapi_apache.c             php_register_variable("PHP_SELF_HOOK", handler->name, PG(http_globals)[TRACK_VARS_SERVER] TSRMLS_CC);
handler            89 sapi/apache_hooks/sapi_apache.c 	        file_handle.filename = handler->name;
handler            93 sapi/apache_hooks/sapi_apache.c             if( (tmp = strstr(handler->name, "::")) != NULL &&  *(tmp+2) != '\0' ) {
handler            98 sapi/apache_hooks/sapi_apache.c                 ZVAL_STRING(class, handler->name, 1);
handler           107 sapi/apache_hooks/sapi_apache.c                 php_error(E_ERROR, "Unable to call %s - not a Class::Method\n", handler->name);
handler           200 sapi/litespeed/lsapilib.c static void lsapi_signal(int signo, sighandler_t handler)
handler           210 sapi/litespeed/lsapilib.c         sa.sa_handler = handler;
handler           575 sapi/phpdbg/phpdbg_cmd.c 	while (command && command->name && command->handler) {
handler           673 sapi/phpdbg/phpdbg_cmd.c 	const phpdbg_command_t *handler = NULL;
handler           700 sapi/phpdbg/phpdbg_cmd.c 			handler = phpdbg_stack_resolve(
handler           703 sapi/phpdbg/phpdbg_cmd.c 			if (handler) {
handler           704 sapi/phpdbg/phpdbg_cmd.c 				if (phpdbg_stack_verify(handler, &top, why TSRMLS_CC) == SUCCESS) {
handler           705 sapi/phpdbg/phpdbg_cmd.c 					return handler->handler(top TSRMLS_CC);
handler            98 sapi/phpdbg/phpdbg_cmd.h 	phpdbg_command_handler_t handler;   /* Command handler */
handler           157 sapi/phpdbg/phpdbg_cmd.h #define PHPDBG_COMMAND_D_EXP(name, tip, alias, handler, children, args, parent) \
handler           158 sapi/phpdbg/phpdbg_cmd.h 	{PHPDBG_STRL(#name), tip, sizeof(tip)-1, alias, phpdbg_do_##handler, children, args, parent}
handler           160 sapi/phpdbg/phpdbg_cmd.h #define PHPDBG_COMMAND_D_EX(name, tip, alias, handler, children, args) \
handler           161 sapi/phpdbg/phpdbg_cmd.h 	{PHPDBG_STRL(#name), tip, sizeof(tip)-1, alias, phpdbg_do_##handler, children, args, NULL}
handler           243 sapi/phpdbg/phpdbg_help.c 					return cmd->handler(param TSRMLS_CC);
handler          1311 sapi/phpdbg/phpdbg_prompt.c 		PHPDBG_G(vmret) = execute_data->opline->handler(execute_data TSRMLS_CC);