/PHP-5.6/ext/curl/ |
H A D | interface.c | 243 if (ch->handlers->read && ch->handlers->read->stream) { in _php_curl_verify_handlers() 257 if (ch->handlers->write_header && ch->handlers->write_header->stream) { in _php_curl_verify_handlers() 271 if (ch->handlers->write && ch->handlers->write->stream) { in _php_curl_verify_handlers() 1981 dupch->handlers->write->stream = ch->handlers->write->stream; in PHP_FUNCTION() 1982 dupch->handlers->write->method = ch->handlers->write->method; in PHP_FUNCTION() 1986 dupch->handlers->read->stream = ch->handlers->read->stream; in PHP_FUNCTION() 1987 dupch->handlers->read->method = ch->handlers->read->method; in PHP_FUNCTION() 1994 dupch->handlers->write->fp = ch->handlers->write->fp; in PHP_FUNCTION() 1996 dupch->handlers->read->fp = ch->handlers->read->fp; in PHP_FUNCTION() 1997 dupch->handlers->read->fd = ch->handlers->read->fd; in PHP_FUNCTION() [all …]
|
H A D | multi.c | 247 if (ch->handlers->write->method == PHP_CURL_RETURN) { in PHP_FUNCTION() 248 if (ch->handlers->write->buf.len == 0) { in PHP_FUNCTION() 251 smart_str_0(&ch->handlers->write->buf); in PHP_FUNCTION() 252 RETURN_STRINGL(ch->handlers->write->buf.c, ch->handlers->write->buf.len, 1); in PHP_FUNCTION()
|
/PHP-5.6/ext/dba/tests/ |
H A D | skipif.inc | 4 if (!sizeof(dba_handlers())) die('skip no handlers installed'); 6 $handlers = dba_handlers(); 7 if (in_array('flatfile', $handlers)) { 10 $handlers = array_diff($handlers, array('cdb', 'cdb_make')); /* these can only read OR write */ 11 if (count($handlers)==0) { 14 $handler = array_shift($handlers);
|
/PHP-5.6/ext/standard/tests/general_functions/ |
H A D | ob_start_closures.phpt | 2 Test ob_start() function : closures as output handlers 7 echo "*** Testing ob_start() : closures as output handlers ***\n"; 32 *** Testing ob_start() : closures as output handlers ***
|
/PHP-5.6/Zend/ |
H A D | zend_signal.c | 162 zend_signal_entry_t p_sig = SIGG(handlers)[signo-1]; in zend_signal_handler() 181 SIGG(handlers)[signo-1].flags = 0; in zend_signal_handler() local 182 SIGG(handlers)[signo-1].handler = SIG_DFL; in zend_signal_handler() local 201 oldact->sa_flags = SIGG(handlers)[signo-1].flags; in zend_sigaction() 202 oldact->sa_handler = (void *) SIGG(handlers)[signo-1].handler; in zend_sigaction() 206 SIGG(handlers)[signo-1].flags = act->sa_flags; in zend_sigaction() local 208 SIGG(handlers)[signo-1].handler = (void *) act->sa_sigaction; in zend_sigaction() local 210 SIGG(handlers)[signo-1].handler = (void *) act->sa_handler; in zend_sigaction() local 258 SIGG(handlers)[signo-1].flags = sa.sa_flags; in zend_signal_register() local 260 SIGG(handlers)[signo-1].handler = (void *)sa.sa_sigaction; in zend_signal_register() local [all …]
|
H A D | zend_objects_API.c | 133 obj->handlers = NULL; in zend_objects_store_put() 187 …ref_by_handle_ex(zend_object_handle handle, const zend_object_handlers *handlers TSRMLS_DC) /* {{{… in zend_objects_store_del_ref_by_handle_ex() 208 if (handlers && !obj->handlers) { in zend_objects_store_del_ref_by_handle_ex() 209 obj->handlers = handlers; in zend_objects_store_del_ref_by_handle_ex() 268 retval.handlers = Z_OBJ_HT_P(zobject); in zend_objects_store_clone_obj() 269 EG(objects_store).object_buckets[handle].bucket.obj.handlers = retval.handlers; in zend_objects_store_clone_obj() 310 obj_bucket->bucket.obj.handlers = Z_OBJ_HT_P(zobject); in zend_object_store_ctor_failed()
|
H A D | zend_objects_API.h | 41 const zend_object_handlers *handlers; member 71 …re_del_ref_by_handle_ex(zend_object_handle handle, const zend_object_handlers *handlers TSRMLS_DC);
|
H A D | zend_objects.c | 104 if (!obj_bucket->bucket.obj.handlers) { in zend_objects_destroy_object() 105 obj_bucket->bucket.obj.handlers = &std_object_handlers; in zend_objects_destroy_object() 107 Z_OBJ_HT_P(obj) = obj_bucket->bucket.obj.handlers; in zend_objects_destroy_object() 151 retval.handlers = &std_object_handlers; in zend_objects_new()
|
H A D | zend_types.h | 59 const zend_object_handlers *handlers; member
|
H A D | README.ZEND_VM | 4 ZEND_VM architecture allows specializing opcode handlers according to op_type 13 find opcode handlers and helpers. The typical opcode handler template looks 27 <HANDLER'S CODE> is a handler's code itself. For most handlers it stills the 106 function handlers. By default Zend Engine II uses the specialized one but you
|
H A D | OBJECTS2_HOWTO | 31 The handlers add_ref and del_ref are called when a new zval referring 68 get and set handlers are used when engine needs to access the object 98 different object types (i.e., having different handlers) can not be 109 Objects - data structures and handlers 116 zend_object_handlers *handlers;
|
/PHP-5.6/main/ |
H A D | output.c | 162 zend_stack_init(&OG(handlers)); in php_output_activate() 183 if (OG(handlers).elements) { in php_output_deactivate() 186 zend_stack_del_top(&OG(handlers)); in php_output_deactivate() 188 zend_stack_destroy(&OG(handlers)); in php_output_deactivate() 287 zend_stack_del_top(&OG(handlers)); in php_output_flush() 380 return OG(active) ? zend_stack_count(&OG(handlers)) : 0; in php_output_get_level() 589 php_output_handler ***handlers; in php_output_handler_started() local 593 handlers = (php_output_handler ***) zend_stack_base(&OG(handlers)); in php_output_handler_started() 596 if (name_len == (*(handlers[i]))->name_len && !memcmp((*(handlers[i]))->name, name, name_len)) { in php_output_handler_started() 1071 if (OG(active) && (obh_cnt = zend_stack_count(&OG(handlers)))) { in php_output_op() [all …]
|
/PHP-5.6/Zend/tests/ |
H A D | closure_031.phpt | 2 Closure 031: Closure properties with custom error handlers
|
H A D | gc_024.phpt | 2 GC 024: GC and objects with non-standard handlers
|
/PHP-5.6/tests/output/ |
H A D | ob_010.phpt | 13 Fatal error: print_r(): Cannot use output buffering in output buffering display handlers in %sob_01…
|
H A D | ob_011.phpt | 13 Fatal error: ob_get_flush(): Cannot use output buffering in output buffering display handlers in %s…
|
H A D | ob_start_error_005.phpt | 23 Fatal error: ob_start(): Cannot use output buffering in output buffering display handlers in %s on …
|
H A D | ob_013.phpt | 2 output buffering - handlers/status
|
/PHP-5.6/ext/com_dotnet/ |
H A D | com_misc.c | 65 z->value.obj.handlers = &php_com_object_handlers; in php_com_wrap_dispatch() 90 z->value.obj.handlers = &php_com_object_handlers; in php_com_wrap_variant()
|
/PHP-5.6/ext/standard/tests/streams/ |
H A D | bug67626.phpt | 2 Bug #67626: Exceptions not properly handled in user stream handlers
|
/PHP-5.6/ |
H A D | .gdbinit | 70 set $handlers = $t->object.value.obj.handlers 73 if $handlers->get_class_entry == &zend_std_object_get_class 76 if $handlers.get_class_name 77 if $handlers.get_class_name != &zend_std_object_get_class_name 218 set $handlers = $zvalue->value.obj.handlers 224 if $handlers->get_class_entry == &zend_std_object_get_class 231 if $handlers->get_properties == &zend_std_get_properties
|
/PHP-5.6/sapi/apache2filter/ |
H A D | README | 7 In Apache 2.0, you have handlers which generate content (like 70 Protocol handlers
|
/PHP-5.6/ext/xml/tests/ |
H A D | xml011.phpt | 2 XML Parser test: concat character data and set empty handlers
|
/PHP-5.6/sapi/apache2handler/ |
H A D | README | 7 In Apache 2.0, you have handlers which generate content (like 75 Protocol handlers
|
/PHP-5.6/sapi/apache_hooks/ |
H A D | README | 48 All handlers may be stacked, i.e. you can list multiple handler directives 193 This allows you to make decisions and pass data between your handlers 199 One note: all handlers can be validly re-entered 'in sub-requests'.
|