Home
last modified time | relevance | path

Searched refs:handlers (Results 1 – 25 of 86) sorted by relevance

1234

/PHP-5.5/ext/curl/
H A Dinterface.c243 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()
2022 dupch->handlers->write->stream = ch->handlers->write->stream; in PHP_FUNCTION()
2023 dupch->handlers->write->method = ch->handlers->write->method; in PHP_FUNCTION()
2027 dupch->handlers->read->stream = ch->handlers->read->stream; in PHP_FUNCTION()
2028 dupch->handlers->read->method = ch->handlers->read->method; in PHP_FUNCTION()
2035 dupch->handlers->write->fp = ch->handlers->write->fp; in PHP_FUNCTION()
2037 dupch->handlers->read->fp = ch->handlers->read->fp; in PHP_FUNCTION()
2038 dupch->handlers->read->fd = ch->handlers->read->fd; in PHP_FUNCTION()
[all …]
H A Dmulti.c247 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.5/ext/dba/tests/
H A Dskipif.inc4 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.5/ext/standard/tests/general_functions/
H A Dob_start_closures.phpt2 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.5/Zend/
H A Dzend_signal.c162 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 Dzend_objects_API.c133 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 Dzend_objects_API.h41 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 Dzend_objects.c104 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 Dzend_types.h59 const zend_object_handlers *handlers; member
H A DREADME.ZEND_VM4 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 DOBJECTS2_HOWTO31 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.5/main/
H A Doutput.c162 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.5/tests/output/
H A Dob_010.phpt13 Fatal error: print_r(): Cannot use output buffering in output buffering display handlers in %sob_01…
H A Dob_011.phpt13 Fatal error: ob_get_flush(): Cannot use output buffering in output buffering display handlers in %s…
H A Dob_start_error_005.phpt23 Fatal error: ob_start(): Cannot use output buffering in output buffering display handlers in %s on …
H A Dob_013.phpt2 output buffering - handlers/status
/PHP-5.5/Zend/tests/
H A Dclosure_031.phpt2 Closure 031: Closure properties with custom error handlers
H A Dgc_024.phpt2 GC 024: GC and objects with non-standard handlers
/PHP-5.5/ext/com_dotnet/
H A Dcom_misc.c65 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.5/ext/standard/tests/streams/
H A Dbug67626.phpt2 Bug #67626: Exceptions not properly handled in user stream handlers
/PHP-5.5/
H A D.gdbinit70 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.5/sapi/apache2filter/
H A DREADME7 In Apache 2.0, you have handlers which generate content (like
70 Protocol handlers
/PHP-5.5/ext/xml/tests/
H A Dxml011.phpt2 XML Parser test: concat character data and set empty handlers
/PHP-5.5/sapi/apache2handler/
H A DREADME7 In Apache 2.0, you have handlers which generate content (like
75 Protocol handlers
/PHP-5.5/sapi/apache_hooks/
H A DREADME48 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'.

Completed in 49 milliseconds

1234