Home
last modified time | relevance | path

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

1234

/PHP-7.0/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-7.0/ext/curl/
H A Dinterface.c244 if (ch->handlers->read && !Z_ISUNDEF(ch->handlers->read->stream)) { in _php_curl_verify_handlers()
272 if (ch->handlers->write && !Z_ISUNDEF(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->res = ch->handlers->read->res; in PHP_FUNCTION()
2041 ZVAL_COPY(&dupch->handlers->passwd, &ch->handlers->passwd); in PHP_FUNCTION()
[all …]
H A Dmulti.c262 if (ch->handlers->write->method == PHP_CURL_RETURN) { in PHP_FUNCTION()
263 if (!ch->handlers->write->buf.s) { in PHP_FUNCTION()
266 smart_str_0(&ch->handlers->write->buf); in PHP_FUNCTION()
267 RETURN_STR_COPY(ch->handlers->write->buf.s); in PHP_FUNCTION()
/PHP-7.0/Zend/
H A Dzend_objects_API.c54 obj->handlers->dtor_obj(obj); in zend_objects_store_call_destructors()
97 if (obj->handlers->free_obj) { in zend_objects_store_free_object_storage()
99 obj->handlers->free_obj(obj); in zend_objects_store_free_object_storage()
135 void *ptr = ((char*)object) - object->handlers->offset; in zend_objects_store_free()
157 if (object->handlers->dtor_obj) { in zend_objects_store_del()
160 object->handlers->dtor_obj(object); in zend_objects_store_del()
175 if (object->handlers->free_obj) { in zend_objects_store_del()
178 object->handlers->free_obj(object); in zend_objects_store_del()
185 ptr = ((char*)object) - object->handlers->offset; in zend_objects_store_del()
H A Dzend_signal.c177 p_sig = SIGG(handlers)[signo-1]; in zend_signal_handler()
196 SIGG(handlers)[signo-1].flags = 0; in zend_signal_handler() local
197 SIGG(handlers)[signo-1].handler = SIG_DFL; in zend_signal_handler() local
216 oldact->sa_flags = SIGG(handlers)[signo-1].flags; in zend_sigaction()
217 oldact->sa_handler = (void *) SIGG(handlers)[signo-1].handler; in zend_sigaction()
221 SIGG(handlers)[signo-1].flags = act->sa_flags; in zend_sigaction() local
223 SIGG(handlers)[signo-1].handler = (void *) act->sa_sigaction; in zend_sigaction() local
225 SIGG(handlers)[signo-1].handler = (void *) act->sa_handler; in zend_sigaction() local
273 SIGG(handlers)[signo-1].flags = sa.sa_flags; in zend_signal_register() local
275 SIGG(handlers)[signo-1].handler = (void *)sa.sa_sigaction; in zend_signal_register() local
[all …]
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 Dzend_gc.c333 (get_gc = obj->handlers->get_gc) != NULL)) { in gc_scan_black()
443 (get_gc = obj->handlers->get_gc) != NULL)) { in gc_mark_grey()
571 (get_gc = obj->handlers->get_gc) != NULL)) { in gc_scan()
734 (get_gc = obj->handlers->get_gc) != NULL)) {
747 if (obj->handlers->dtor_obj &&
748 ((obj->handlers->dtor_obj != zend_objects_destroy_object) ||
928 (get_gc = obj->handlers->get_gc) != NULL)) {
1087 if (obj->handlers->dtor_obj) {
1089 obj->handlers->dtor_obj(obj);
1126 if (obj->handlers->free_obj) {
[all …]
H A Dzend_iterators.c79 iter->std.handlers = &iterator_object_handlers; in zend_iterator_init()
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;
H A Dzend_signal.h62 zend_signal_entry_t handlers[NSIG]; member
/PHP-7.0/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-7.0/main/
H A Doutput.c190 if (OG(handlers).elements) { in php_output_deactivate()
191 while ((handler = zend_stack_top(&OG(handlers)))) { in php_output_deactivate()
193 zend_stack_del_top(&OG(handlers)); in php_output_deactivate()
196 zend_stack_destroy(&OG(handlers)); in php_output_deactivate()
277 zend_stack_del_top(&OG(handlers)); in php_output_flush()
279 zend_stack_push(&OG(handlers), &OG(active)); in php_output_flush()
575 php_output_handler **handlers; in php_output_handler_started() local
579 handlers = (php_output_handler **) zend_stack_base(&OG(handlers)); in php_output_handler_started()
582 …if (name_len == ZSTR_LEN(handlers[i]->name) && !memcmp(ZSTR_VAL(handlers[i]->name), name, name_len… in php_output_handler_started()
1225 zend_stack_del_top(&OG(handlers)); in php_output_stack_pop()
[all …]
/PHP-7.0/tests/output/
H A Dbug65593.phpt12 Fatal error: ob_start(): Cannot use output buffering in output buffering display handlers in %sbug6…
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 Dbug70970.phpt28 Fatal error: ob_start(): Cannot use output buffering in output buffering display handlers in %sbug7…
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-7.0/Zend/tests/
H A Dgc_024.phpt2 GC 024: GC and objects with non-standard handlers
H A Dclosure_031.phpt2 Closure 031: Closure properties with custom error handlers
/PHP-7.0/ext/com_dotnet/
H A Dcom_misc.c68 obj->zo.handlers = &php_com_object_handlers; in php_com_wrap_dispatch()
92 obj->zo.handlers = &php_com_object_handlers; in php_com_wrap_variant()
/PHP-7.0/ext/standard/tests/streams/
H A Dbug67626.phpt2 Bug #67626: Exceptions not properly handled in user stream handlers
/PHP-7.0/ext/xml/tests/
H A Dxml011.phpt2 XML Parser test: concat character data and set empty handlers
H A Dxml_set_element_handler_error.phpt12 * Description: Set up start and end element handlers
/PHP-7.0/sapi/apache2handler/
H A DREADME7 In Apache 2.0, you have handlers which generate content (like
75 Protocol handlers

Completed in 53 milliseconds

1234