| /PHP_5_3/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_3/ext/intl/collator/ |
| H A D | collator_class.c | 77 retval.handlers = &Collator_handlers;
|
| /PHP_5_3/ext/intl/dateformat/ |
| H A D | dateformat_class.c | 79 retval.handlers = &IntlDateFormatter_handlers;
|
| /PHP_5_3/ext/intl/formatter/ |
| H A D | formatter_class.c | 74 retval.handlers = &NumberFormatter_handlers;
|
| /PHP_5_3/ext/intl/msgformat/ |
| H A D | msgformat_class.c | 72 retval.handlers = &MessageFormatter_handlers;
|
| /PHP_5_3/ext/intl/resourcebundle/ |
| H A D | resourcebundle_class.c | 71 retval.handlers = &ResourceBundle_object_handlers;
|
| /PHP_5_3/ext/com_dotnet/ |
| H A D | com_misc.c | 65 z->value.obj.handlers = &php_com_object_handlers; 90 z->value.obj.handlers = &php_com_object_handlers;
|
| /PHP_5_3/ext/curl/ |
| H A D | interface.c | 211 if (!ch || !ch->handlers) { 215 if (ch->handlers->std_err) { 216 stream = (php_stream *) zend_fetch_resource(&ch->handlers->std_err TSRMLS_CC, -1, NULL, NULL, 2, php_file_le_stream(), php_file_le_pstream()); 221 zval_ptr_dtor(&ch->handlers->std_err); 222 ch->handlers->std_err = NULL; 227 if (ch->handlers->read && ch->handlers->read->stream) { 228 stream = (php_stream *) zend_fetch_resource(&ch->handlers->read->stream TSRMLS_CC, -1, NULL, NULL, 2, php_file_le_stream(), php_file_le_pstream()); 233 zval_ptr_dtor(&ch->handlers->read->stream); 234 ch->handlers [all...] |
| H A D | multi.c | 252 if (ch->handlers->write->method == PHP_CURL_RETURN && ch->handlers->write->buf.len > 0) { 253 smart_str_0(&ch->handlers->write->buf); 254 RETURN_STRINGL(ch->handlers->write->buf.c, ch->handlers->write->buf.len, 1);
|
| H A D | php_curl.h | 138 php_curl_handlers *handlers; member in struct:__anon21
|
| /PHP_5_3/ext/dba/ |
| H A D | dba.c | 510 smart_str handlers = {0}; local 513 smart_str_appends(&handlers, hptr->name); 514 smart_str_appendc(&handlers, ' '); 519 if (handlers.c) { 520 smart_str_0(&handlers); 521 php_info_print_table_row(2, "Supported handlers", handlers.c); 522 smart_str_free(&handlers); 524 php_info_print_table_row(2, "Supported handlers", "none"); 1197 List configured database handlers */ [all...] |
| /PHP_5_3/ext/dom/ |
| H A D | php_dom.c | 610 retval.handlers = Z_OBJ_HT_P(zobject); 1122 baseobj->value.obj.handlers = dom_get_obj_handlers(TSRMLS_C); 1210 retval.handlers = dom_get_obj_handlers(TSRMLS_C); 1233 retval.handlers = dom_get_obj_handlers(TSRMLS_C); 1298 retval.handlers = dom_get_obj_handlers(TSRMLS_C); 1337 return_value->value.obj.handlers = dom_get_obj_handlers(TSRMLS_C);
|
| /PHP_5_3/ext/fileinfo/ |
| H A D | fileinfo.c | 113 retval.handlers = (zend_object_handlers *) &finfo_object_handlers; 225 /* copy the standard object handlers to you handler table */
|
| /PHP_5_3/ext/spl/ |
| H A D | spl_observer.c | 129 zvalue.handlers = Z_OBJ_HT_P(obj); 163 zvalue.handlers = Z_OBJ_HT_P(obj); 178 zvalue.handlers = Z_OBJ_HT_P(obj); 214 retval.handlers = &spl_handler_SplObjectStorage; 386 zvalue.handlers = Z_OBJ_HT_P(obj);
|
| H A D | spl_dllist.c | 410 retval.handlers = &spl_handler_SplDoublyLinkedList; 413 retval.handlers = &spl_handler_SplDoublyLinkedList; 417 retval.handlers = &spl_handler_SplDoublyLinkedList;
|
| /PHP_5_3/ext/standard/ |
| H A D | incomplete_class.c | 110 value.handlers = &php_incomplete_object_handlers;
|
| /PHP_5_3/ext/xsl/ |
| H A D | php_xsl.c | 139 retval.handlers = &xsl_object_handlers;
|
| /PHP_5_3/Zend/ |
| H A D | zend_alloc.c | 165 ret = storage->handlers->_alloc(storage, size); 168 storage->handlers->_free(storage, segment); 320 # define ZEND_MM_STORAGE_DTOR() heap->storage->handlers->dtor(heap->storage) 321 # define ZEND_MM_STORAGE_ALLOC(size) heap->storage->handlers->_alloc(heap->storage, size) 322 # define ZEND_MM_STORAGE_REALLOC(ptr, size) heap->storage->handlers->_realloc(heap->storage, ptr, size) 323 # define ZEND_MM_STORAGE_FREE(ptr) heap->storage->handlers->_free(heap->storage, ptr) 1016 ZEND_API zend_mm_heap *zend_mm_startup_ex(const zend_mm_mem_handlers *handlers, size_t block_size, size_t reserve_size, int internal, void *params) argument 1061 storage = handlers->init(params); 1063 fprintf(stderr, "Cannot initialize zend_mm storage [%s]\n", handlers->name); 1070 storage->handlers 1142 const zend_mm_mem_handlers *handlers; local [all...] |
| H A D | zend_alloc.h | 243 const zend_mm_mem_handlers *handlers; member in struct:_zend_mm_storage 247 ZEND_API zend_mm_heap *zend_mm_startup_ex(const zend_mm_mem_handlers *handlers, size_t block_size, size_t reserve_size, int internal, void *params);
|
| H A D | zend_gc.c | 240 newRoot->u.handlers = Z_OBJ_HT_P(zv); 426 Z_OBJ_HT(z) = current->u.handlers; 534 Z_OBJ_HT(z) = current->u.handlers; 638 Z_OBJ_HT(z) = current->u.handlers;
|
| H A D | zend_gc.h | 87 zend_object_handlers *handlers; member in union:_gc_root_buffer::__anon11
|
| H A D | zend_objects.c | 93 if (!obj_bucket->bucket.obj.handlers) { 94 obj_bucket->bucket.obj.handlers = &std_object_handlers; 96 Z_OBJ_HT_P(obj) = obj_bucket->bucket.obj.handlers; 137 retval.handlers = &std_object_handlers;
|
| H A D | zend_objects_API.c | 127 obj->handlers = NULL; 181 ZEND_API void zend_objects_store_del_ref_by_handle_ex(zend_object_handle handle, const zend_object_handlers *handlers TSRMLS_DC) /* {{{ */ 202 if (handlers && !obj->handlers) { 203 obj->handlers = handlers; 262 retval.handlers = Z_OBJ_HT_P(zobject); 263 EG(objects_store).object_buckets[handle].bucket.obj.handlers = retval.handlers; 304 obj_bucket->bucket.obj.handlers [all...] |
| H A D | zend_objects_API.h | 40 const zend_object_handlers *handlers; member in struct:_zend_object_store_bucket::_store_bucket::_store_object 70 ZEND_API void zend_objects_store_del_ref_by_handle_ex(zend_object_handle handle, const zend_object_handlers *handlers TSRMLS_DC);
|
| H A D | zend_types.h | 58 zend_object_handlers *handlers; member in struct:_zend_object_value
|