| /PHP_TRUNK/ext/soap/tests/interop/Round2/GroupB/ |
| H A D | round2_groupB.inc | 13 return (object)array("varString" => $string,
|
| /PHP_TRUNK/ext/spl/internal/ |
| H A D | splobjectstorage.inc | 49 /** @return current object 57 /** @return get current object's associated information 66 /** @return set current object's associated information 91 /** @param $obj object to look for 100 if ($object === $element[0]) 109 /** @param $obj new object to attach to storage or object whose 111 * @param $inf associative information stored along the object 121 /** @param $obj object to remove from storage 129 if ($object [all...] |
| /PHP_TRUNK/ext/intl/breakiterator/ |
| H A D | breakiterator_iterators.h | 34 zval *object, 39 zend_class_entry *ce, zval *object, int by_ref TSRMLS_DC);
|
| H A D | codepointiterator_methods.cpp | 33 object = getThis();
|
| /PHP_TRUNK/ext/intl/calendar/ |
| H A D | calendar_class.h | 57 void calendar_object_create(zval *object, Calendar *calendar TSRMLS_DC); 59 Calendar *calendar_fetch_native_calendar(zval *object TSRMLS_DC); 61 void calendar_object_construct(zval *object, Calendar *calendar TSRMLS_DC);
|
| /PHP_TRUNK/ext/intl/collator/ |
| H A D | collator_attr.c | 42 &object, Collator_ce_ptr, &attribute ) == FAILURE ) 50 /* Fetch the object. */ 73 &object, Collator_ce_ptr, &attribute, &value ) == FAILURE) 81 /* Fetch the object. */ 103 &object, Collator_ce_ptr ) == FAILURE ) 111 /* Fetch the object. */ 132 &object, Collator_ce_ptr, &strength ) == FAILURE ) 140 /* Fetch the object. */
|
| H A D | collator_error.c | 37 &object, Collator_ce_ptr ) == FAILURE ) 45 /* Fetch the object (without resetting its last error code). */ 46 co = (Collator_object *) zend_object_store_get_object(object TSRMLS_CC); 68 &object, Collator_ce_ptr ) == FAILURE ) 76 /* Fetch the object (without resetting its last error code). */ 77 co = (Collator_object *) zend_object_store_get_object( object TSRMLS_CC );
|
| /PHP_TRUNK/ext/intl/dateformat/ |
| H A D | dateformat.c | 78 &object, IntlDateFormatter_ce_ptr ) == FAILURE ) 85 dfo = (IntlDateFormatter_object *) zend_object_store_get_object( object TSRMLS_CC ); 104 &object, IntlDateFormatter_ce_ptr ) == FAILURE ) 112 dfo = (IntlDateFormatter_object *) zend_object_store_get_object( object TSRMLS_CC );
|
| /PHP_TRUNK/ext/intl/formatter/ |
| H A D | formatter_main.c | 49 object = return_value; 86 * NumberFormatter object constructor. 106 &object, NumberFormatter_ce_ptr ) == FAILURE ) 114 nfo = (NumberFormatter_object *) zend_object_store_get_object( object TSRMLS_CC ); 133 &object, NumberFormatter_ce_ptr ) == FAILURE ) 141 nfo = (NumberFormatter_object *) zend_object_store_get_object( object TSRMLS_CC );
|
| /PHP_TRUNK/ext/intl/ |
| H A D | intl_data.h | 26 /* Mock object to generalize error handling in sub-modules. 36 zval* object = NULL; \ 45 obj = (oclass##_object *) zend_object_store_get_object( object TSRMLS_CC ); \ 57 /* Check status in object, if error - exit */ 97 #define INTL_CHECK_LOCALE_LEN_OBJ(locale_len, object) \ 101 zval_dtor(object); \ 102 ZVAL_NULL(object); \
|
| /PHP_TRUNK/ext/intl/locale/ |
| H A D | locale_class.h | 45 zval* object = NULL; \
|
| /PHP_TRUNK/ext/intl/msgformat/ |
| H A D | msgformat.c | 36 zval* object; local 40 object = return_value; 104 * MessageFormatter object constructor. 120 zval* object = NULL; local 125 &object, MessageFormatter_ce_ptr ) == FAILURE ) 133 mfo = (MessageFormatter_object *) zend_object_store_get_object( object TSRMLS_CC ); 148 zval* object = NULL; local 153 &object, MessageFormatter_ce_ptr ) == FAILURE ) 161 mfo = (MessageFormatter_object *) zend_object_store_get_object( object TSRMLS_CC );
|
| /PHP_TRUNK/ext/intl/resourcebundle/ |
| H A D | resourcebundle_iterator.h | 34 zend_object_iterator *resourcebundle_get_iterator( zend_class_entry *ce, zval *object, int byref TSRMLS_DC );
|
| /PHP_TRUNK/Zend/ |
| H A D | zend_objects.c | 29 ZEND_API void zend_object_std_init(zend_object *object, zend_class_entry *ce TSRMLS_DC) argument 31 object->ce = ce; 32 object->properties = NULL; 33 object->properties_table = NULL; 34 object->guards = NULL; 37 ZEND_API void zend_object_std_dtor(zend_object *object TSRMLS_DC) 39 if (object->guards) { 40 zend_hash_destroy(object->guards); 41 FREE_HASHTABLE(object->guards); 43 if (object 61 zend_objects_destroy_object(zend_object *object, zend_object_handle handle TSRMLS_DC) argument 141 zend_objects_new(zend_object **object, zend_class_entry *class_type TSRMLS_DC) argument [all...] |
| H A D | zend_objects.h | 28 ZEND_API void zend_object_std_init(zend_object *object, zend_class_entry *ce TSRMLS_DC); 29 ZEND_API void zend_object_std_dtor(zend_object *object TSRMLS_DC); 30 ZEND_API zend_object_value zend_objects_new(zend_object **object, zend_class_entry *class_type TSRMLS_DC); 31 ZEND_API void zend_objects_destroy_object(zend_object *object, zend_object_handle handle TSRMLS_DC); 32 ZEND_API zend_object *zend_objects_get_address(const zval *object TSRMLS_DC); 34 ZEND_API zend_object_value zend_objects_clone_obj(zval *object TSRMLS_DC); 35 ZEND_API void zend_objects_free_object_storage(zend_object *object TSRMLS_DC);
|
| H A D | zend_objects_API.c | 55 if (obj->dtor && obj->object) { 57 obj->dtor(obj->object, i TSRMLS_CC); 92 obj->free_storage(obj->object TSRMLS_CC); 102 ZEND_API zend_object_handle zend_objects_store_put(void *object, zend_objects_store_dtor_t dtor, zend_objects_free_object_storage_t free_storage, zend_objects_store_clone_t clone TSRMLS_DC) argument 124 obj->object = object; 131 fprintf(stderr, "Allocated object id #%d\n", handle); 136 ZEND_API zend_uint zend_objects_store_get_refcount(zval *object TSRMLS_DC) 138 zend_object_handle handle = Z_OBJ_HANDLE_P(object); 143 ZEND_API void zend_objects_store_add_ref(zval *object TSRMLS_D 312 zval *object; member in struct:_zend_proxy_object 318 zend_objects_proxy_destroy(zend_object *object, zend_object_handle handle TSRMLS_DC) argument 329 zend_objects_proxy_clone(zend_proxy_object *object, zend_proxy_object **object_clone TSRMLS_DC) argument 338 zend_object_create_proxy(zval *object, zval *member TSRMLS_DC) argument [all...] |
| H A D | zend_objects_API.h | 27 typedef void (*zend_objects_store_dtor_t)(void *object, zend_object_handle handle TSRMLS_DC); 28 typedef void (*zend_objects_free_object_storage_t)(void *object TSRMLS_DC); 29 typedef void (*zend_objects_store_clone_t)(void *object, void **object_clone TSRMLS_DC); 37 void *object; member in struct:_zend_object_store_bucket::_store_bucket::_store_object 66 ZEND_API zend_object_handle zend_objects_store_put(void *object, zend_objects_store_dtor_t dtor, zend_objects_free_object_storage_t storage, zend_objects_store_clone_t clone TSRMLS_DC); 68 ZEND_API void zend_objects_store_add_ref(zval *object TSRMLS_DC); 69 ZEND_API void zend_objects_store_del_ref(zval *object TSRMLS_DC); 75 ZEND_API zend_uint zend_objects_store_get_refcount(zval *object TSRMLS_DC); 76 ZEND_API zend_object_value zend_objects_store_clone_obj(zval *object TSRMLS_DC); 77 ZEND_API void *zend_object_store_get_object(const zval *object TSRMLS_D [all...] |
| H A D | zend_object_handlers.h | 33 /* Used to fetch property from the object, read-only */ 34 typedef zval *(*zend_object_read_property_t)(zval *object, zval *member, int type, const struct _zend_literal *key TSRMLS_DC); 36 /* Used to fetch dimension from the object, read-only */ 37 typedef zval *(*zend_object_read_dimension_t)(zval *object, zval *offset, int type TSRMLS_DC); 45 /* Used to set property of the object */ 46 typedef void (*zend_object_write_property_t)(zval *object, zval *member, zval *value, const struct _zend_literal *key TSRMLS_DC); 48 /* Used to set dimension of the object */ 49 typedef void (*zend_object_write_dimension_t)(zval *object, zval *offset, zval *value TSRMLS_DC); 52 /* Used to create pointer to the property of the object, for future direct r/w access */ 53 typedef zval **(*zend_object_get_property_ptr_ptr_t)(zval *object, zva [all...] |
| /PHP_TRUNK/ext/simplexml/ |
| H A D | php_simplexml_exports.h | 46 php_sxe_fetch_object(zval *object TSRMLS_DC) 48 return (php_sxe_object *) zend_object_store_get_object(object TSRMLS_CC);
|
| /PHP_TRUNK/ext/spl/ |
| H A D | spl_array.h | 34 extern void spl_array_iterator_append(zval *object, zval *append_value TSRMLS_DC); 35 extern void spl_array_iterator_key(zval *object, zval *return_value TSRMLS_DC);
|
| H A D | spl_engine.c | 35 PHPAPI void spl_instantiate(zend_class_entry *pce, zval **object, int alloc TSRMLS_DC) argument 38 ALLOC_ZVAL(*object); 40 object_init_ex(*object, pce); 41 Z_SET_REFCOUNT_PP(object, 1); 42 Z_SET_ISREF_PP(object); /* check if this can be hold always */
|
| H A D | spl_iterators.c | 135 "The object is in an invalid state as the parent constructor was not called"); \ 144 spl_recursive_it_object *object = (spl_recursive_it_object*)_iter->data; local 147 while (object->level > 0) { 148 sub_iter = object->iterators[object->level].iterator; 150 zval_ptr_dtor(&object->iterators[object->level--].zobject); 152 object->iterators = erealloc(object->iterators, sizeof(spl_sub_iterator)); 153 object 159 spl_recursive_it_valid_ex(spl_recursive_it_object *object, zval *zthis TSRMLS_DC) argument 180 spl_recursive_it_object *object = (spl_recursive_it_object*)iter->data; local 187 spl_recursive_it_object *object = (spl_recursive_it_object*)iter->data; local 195 spl_recursive_it_object *object = (spl_recursive_it_object*)iter->data; local 205 spl_recursive_it_move_forward_ex(spl_recursive_it_object *object, zval *zthis TSRMLS_DC) argument 373 spl_recursive_it_rewind_ex(spl_recursive_it_object *object, zval *zthis TSRMLS_DC) argument 415 spl_recursive_it_object *object; local 445 zval *object = getThis(); local 585 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(getThis() TSRMLS_CC); local 598 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(getThis() TSRMLS_CC); local 611 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(getThis() TSRMLS_CC); local 629 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(getThis() TSRMLS_CC); local 647 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(getThis() TSRMLS_CC); local 660 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(getThis() TSRMLS_CC); local 673 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(getThis() TSRMLS_CC); local 689 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(getThis() TSRMLS_CC); local 723 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(getThis() TSRMLS_CC); local 748 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(getThis() TSRMLS_CC); local 801 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(getThis() TSRMLS_CC); local 818 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(getThis() TSRMLS_CC); local 834 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(*object_ptr TSRMLS_CC); local 858 spl_recursive_it_object *object = (spl_recursive_it_object *)_object; local 879 spl_recursive_it_object *object = (spl_recursive_it_object *)_object; local 970 spl_recursive_tree_iterator_get_prefix(spl_recursive_it_object *object, zval *return_value TSRMLS_DC) argument 1005 spl_recursive_tree_iterator_get_entry(spl_recursive_it_object * object, zval * return_value TSRMLS_DC) argument 1026 spl_recursive_tree_iterator_get_postfix(spl_recursive_it_object * object, zval * return_value TSRMLS_DC) argument 1042 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(getThis() TSRMLS_CC); local 1063 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(getThis() TSRMLS_CC); local 1075 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(getThis() TSRMLS_CC); local 1088 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(getThis() TSRMLS_CC); local 1101 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(getThis() TSRMLS_CC); local 1156 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(getThis() TSRMLS_CC); local 2197 spl_dual_it_object *object = (spl_dual_it_object *)_object; local 2213 spl_dual_it_object *object = (spl_dual_it_object *)_object; local [all...] |
| /PHP_TRUNK/ext/libxml/ |
| H A D | php_libxml.h | 83 typedef void * (*php_libxml_export_node) (zval *object TSRMLS_DC); 85 PHP_LIBXML_API int php_libxml_increment_node_ptr(php_libxml_node_object *object, xmlNodePtr node, void *private_data TSRMLS_DC); 86 PHP_LIBXML_API int php_libxml_decrement_node_ptr(php_libxml_node_object *object TSRMLS_DC); 87 PHP_LIBXML_API int php_libxml_increment_doc_ref(php_libxml_node_object *object, xmlDocPtr docp TSRMLS_DC); 88 PHP_LIBXML_API int php_libxml_decrement_doc_ref(php_libxml_node_object *object TSRMLS_DC); 89 PHP_LIBXML_API xmlNodePtr php_libxml_import_node(zval *object TSRMLS_DC); 93 /* When object dtor is called as node may still be referenced */ 94 PHP_LIBXML_API void php_libxml_node_decrement_resource(php_libxml_node_object *object TSRMLS_DC);
|
| /PHP_TRUNK/ext/intl/transliterator/ |
| H A D | transliterator_class.c | 30 /* {{{ int transliterator_object_construct( zval *object, UTransliterator *utrans, UErrorCode *status TSRMLS_DC ) 33 int transliterator_object_construct( zval *object, argument 47 * caller relies on it always being made (so it can just destroy the object 58 zend_update_property_stringl( Transliterator_ce_ptr, object, 101 void *object, 104 zend_objects_destroy_object( object, handle TSRMLS_CC ); 109 static void Transliterator_objects_free( zend_object *object TSRMLS_DC ) 111 Transliterator_object* to = (Transliterator_object*) object; 156 static zend_object_value Transliterator_clone_obj( zval *object TSRMLS_DC ) 163 to_orig = zend_object_store_get_object( object TSRMLS_C 100 Transliterator_objects_dtor( void *object, zend_object_handle handle TSRMLS_DC ) argument 248 Transliterator_get_property_ptr_ptr( zval *object, zval *member TSRMLS_DC ) argument 280 Transliterator_read_property( zval *object, zval *member, int type TSRMLS_DC ) argument 315 Transliterator_write_property( zval *object, zval *member, zval *value TSRMLS_DC ) argument [all...] |
| /PHP_TRUNK/ext/standard/ |
| H A D | incomplete_class.c | 27 "access a property of an incomplete object. " \ 28 "Please ensure that the class definition \"%s\" of the object " \ 37 static void incomplete_class_message(zval *object, int error_type TSRMLS_DC) argument 42 class_name = php_lookup_class_name(object, NULL); 57 static zval *incomplete_class_get_property(zval *object, zval *member, int type, const zend_literal *key TSRMLS_DC) /* {{{ */ argument 59 incomplete_class_message(object, E_NOTICE TSRMLS_CC); 69 static void incomplete_class_write_property(zval *object, zval *member, zval *value, const zend_literal *key TSRMLS_DC) /* {{{ */ argument 71 incomplete_class_message(object, E_NOTICE TSRMLS_CC); 75 static zval **incomplete_class_get_property_ptr_ptr(zval *object, zval *member, int type, const zend_literal *key TSRMLS_DC) /* {{{ */ argument 77 incomplete_class_message(object, E_NOTIC 82 incomplete_class_unset_property(zval *object, zval *member, const zend_literal *key TSRMLS_DC) argument 88 incomplete_class_has_property(zval *object, zval *member, int check_empty, const zend_literal *key TSRMLS_DC) argument 95 incomplete_class_get_method(zval **object, char *method, int method_len, const zend_literal *key TSRMLS_DC) argument 106 zend_object *object; local 138 php_lookup_class_name(zval *object, zend_uint *nlen) argument 161 php_store_class_name(zval *object, const char *name, zend_uint len) argument [all...] |