| /PHP_5_4/ext/soap/tests/interop/Round2/GroupB/ |
| H A D | round2_groupB.inc | 13 return (object)array("varString" => $string,
|
| /PHP_5_4/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_5_4/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_5_4/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_5_4/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_5_4/ext/intl/locale/ |
| H A D | locale_class.h | 45 zval* object = NULL; \
|
| /PHP_5_4/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_5_4/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_5_4/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...] |
| H A D | transliterator_methods.c | 30 static int create_transliterator( char *str_id, int str_id_len, long direction, zval *object TSRMLS_DC ) 47 object_init_ex( object, Transliterator_ce_ptr ); 48 TRANSLITERATOR_METHOD_FETCH_OBJECT_NO_CHECK; /* fetch zend object from zval "object" into "to" */ 56 zval_dtor( object ); 82 zval_dtor( object ); 86 transliterator_object_construct( object, utrans, TRANSLITERATOR_ERROR_CODE_P( to ) TSRMLS_CC ); 93 zval_dtor( object ); 123 object = return_value; 124 res = create_transliterator( str_id, str_id_len, direction, object TSRMLS_C [all...] |
| /PHP_5_4/Zend/ |
| 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...] |
| 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...] |
| /PHP_5_4/ext/fileinfo/ |
| H A D | fileinfo.c | 59 #define FILEINFO_DECLARE_INIT_OBJECT(object) \ 60 zval *object = getThis(); 69 #define FILEINFO_FROM_OBJECT(finfo, object) \ 71 struct finfo_object *obj = zend_object_store_get_object(object TSRMLS_CC); \ 74 php_error_docref(NULL TSRMLS_CC, E_WARNING, "The invalid fileinfo object."); \ 81 static void finfo_objects_free(void *object TSRMLS_DC) 83 struct finfo_object *intern = (struct finfo_object *) object; 224 /* copy the standard object handlers to you handler table */ 279 #define FILEINFO_DESTROY_OBJECT(object) \ 281 if (object) { \ [all...] |
| /PHP_5_4/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_5_4/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 206 spl_recursive_it_move_forward_ex(spl_recursive_it_object *object, zval *zthis TSRMLS_DC) argument 374 spl_recursive_it_rewind_ex(spl_recursive_it_object *object, zval *zthis TSRMLS_DC) argument 416 spl_recursive_it_object *object; local 446 zval *object = getThis(); local 586 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(getThis() TSRMLS_CC); local 599 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(getThis() TSRMLS_CC); local 612 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(getThis() TSRMLS_CC); local 643 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(getThis() TSRMLS_CC); local 661 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(getThis() TSRMLS_CC); local 674 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(getThis() TSRMLS_CC); local 687 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(getThis() TSRMLS_CC); local 703 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(getThis() TSRMLS_CC); local 737 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(getThis() TSRMLS_CC); local 762 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(getThis() TSRMLS_CC); local 815 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(getThis() TSRMLS_CC); local 832 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(getThis() TSRMLS_CC); local 848 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(*object_ptr TSRMLS_CC); local 872 spl_recursive_it_object *object = (spl_recursive_it_object *)_object; local 893 spl_recursive_it_object *object = (spl_recursive_it_object *)_object; local 984 spl_recursive_tree_iterator_get_prefix(spl_recursive_it_object *object, zval *return_value TSRMLS_DC) argument 1019 spl_recursive_tree_iterator_get_entry(spl_recursive_it_object * object, zval * return_value TSRMLS_DC) argument 1040 spl_recursive_tree_iterator_get_postfix(spl_recursive_it_object * object, zval * return_value TSRMLS_DC) argument 1056 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(getThis() TSRMLS_CC); local 1077 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(getThis() TSRMLS_CC); local 1089 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(getThis() TSRMLS_CC); local 1102 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(getThis() TSRMLS_CC); local 1115 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(getThis() TSRMLS_CC); local 1163 spl_recursive_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(getThis() TSRMLS_CC); local 2234 spl_dual_it_object *object = (spl_dual_it_object *)_object; local 2250 spl_dual_it_object *object = (spl_dual_it_object *)_object; local [all...] |
| H A D | spl_array.c | 146 static void spl_array_object_free_storage(void *object TSRMLS_DC) 148 spl_array_object *intern = (spl_array_object *)object; 160 efree(object); 164 zend_object_iterator *spl_array_get_iterator(zend_class_entry *ce, zval *object, int by_ref TSRMLS_DC); 302 static zval **spl_array_get_dimension_ptr_ptr(int check_inherited, zval *object, zval *offset, int type TSRMLS_DC) /* {{{ */ argument 304 spl_array_object *intern = (spl_array_object*)zend_object_store_get_object(object TSRMLS_CC); 376 static zval *spl_array_read_dimension_ex(int check_inherited, zval *object, zval *offset, int type TSRMLS_DC) /* {{{ */ argument 381 spl_array_object *intern = (spl_array_object*)zend_object_store_get_object(object TSRMLS_CC); 389 zend_call_method_with_1_params(&object, Z_OBJCE_P(object), 426 spl_array_read_dimension(zval *object, zval *offset, int type TSRMLS_DC) argument 431 spl_array_write_dimension_ex(int check_inherited, zval *object, zval *offset, zval *value TSRMLS_DC) argument 500 spl_array_write_dimension(zval *object, zval *offset, zval *value TSRMLS_DC) argument 505 spl_array_unset_dimension_ex(int check_inherited, zval *object, zval *offset TSRMLS_DC) argument 587 spl_array_unset_dimension(zval *object, zval *offset TSRMLS_DC) argument 592 spl_array_has_dimension_ex(int check_inherited, zval *object, zval *offset, int check_empty TSRMLS_DC) argument 657 spl_array_has_dimension(zval *object, zval *offset, int check_empty TSRMLS_DC) argument 663 spl_array_object_verify_pos_ex(spl_array_object *object, HashTable *ht, const char *msg_prefix TSRMLS_DC) argument 679 spl_array_object_verify_pos(spl_array_object *object, HashTable *ht TSRMLS_DC) argument 721 spl_array_iterator_append(zval *object, zval *append_value TSRMLS_DC) argument 772 zval *object = getThis(), *tmp; local 834 spl_array_read_property(zval *object, zval *member, int type, const zend_literal *key TSRMLS_DC) argument 845 spl_array_write_property(zval *object, zval *member, zval *value, const zend_literal *key TSRMLS_DC) argument 857 spl_array_get_property_ptr_ptr(zval *object, zval *member, const zend_literal *key TSRMLS_DC) argument 868 spl_array_has_property(zval *object, zval *member, int has_set_exists, const zend_literal *key TSRMLS_DC) argument 879 spl_array_unset_property(zval *object, zval *member, const zend_literal *key TSRMLS_DC) argument 973 spl_array_object *object; member in struct:__anon1 990 spl_array_object *object = iterator->object; local 1008 spl_array_object *object = iterator->object; local 1024 spl_array_object *object = iterator->object; local 1042 spl_array_object *object = iterator->object; local 1088 spl_array_object *object = iterator->object; local 1100 spl_array_set_array(zval *object, spl_array_object *intern, zval **array, long ar_flags, int just_array TSRMLS_DC) argument 1152 spl_array_get_iterator(zend_class_entry *ce, zval *object, int by_ref TSRMLS_DC) argument 1179 zval *object = getThis(); local 1216 zval *object = getThis(); local 1232 zval *object = getThis(); local 1247 zval *object = getThis(); local 1262 zval *object = getThis(); local 1278 zval *object = getThis(), *tmp, **array; local 1297 zval *object = getThis(); local 1322 zval *object = getThis(); local 1338 zval *object = getThis(); local 1395 spl_array_object_count_elements(zval *object, long *count TSRMLS_DC) argument 1516 zval *object = getThis(); local 1547 spl_array_iterator_key(zval *object, zval *return_value TSRMLS_DC) argument 1576 zval *object = getThis(); local 1596 zval *object = getThis(); local 1616 zval *object = getThis(), **entry; local 1640 zval *object = getThis(), **entry, *flags; local 1676 zval *object = getThis(); local [all...] |
| /PHP_5_4/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, 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...] |
| /PHP_5_4/ext/libxml/ |
| H A D | libxml.c | 153 static int php_libxml_clear_object(php_libxml_node_object *object TSRMLS_DC) 155 if (object->properties) { 156 object->properties = NULL; 158 php_libxml_decrement_node_ptr(object TSRMLS_CC); 159 return php_libxml_decrement_doc_ref(object TSRMLS_CC); 972 /* {{{ proto object libxml_get_last_error() 1002 /* {{{ proto object libxml_get_errors() 1141 PHP_LIBXML_API xmlNodePtr php_libxml_import_node(zval *object TSRMLS_DC) 1147 if (object->type == IS_OBJECT) { 1148 ce = Z_OBJCE_P(object); 1159 php_libxml_increment_node_ptr(php_libxml_node_object *object, xmlNodePtr node, void *private_data TSRMLS_DC) argument 1211 php_libxml_increment_doc_ref(php_libxml_node_object *object, xmlDocPtr docp TSRMLS_DC) argument [all...] |
| 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);
|