Home
last modified time | relevance | path

Searched refs:object (Results 1 – 25 of 2475) sorted by last modified time

12345678910>>...99

/php-src/ext/sqlite3/
H A Dsqlite3.c106 zval *object = ZEND_THIS; in PHP_METHOD() local
186 zval *object = ZEND_THIS; in PHP_METHOD() local
214 zval *object = ZEND_THIS; in PHP_METHOD() local
258 zval *object = ZEND_THIS; in PHP_METHOD() local
275 zval *object = ZEND_THIS; in PHP_METHOD() local
296 zval *object = ZEND_THIS; in PHP_METHOD() local
317 zval *object = ZEND_THIS; in PHP_METHOD() local
344 zval *object = ZEND_THIS; in PHP_METHOD() local
365 zval *object = ZEND_THIS; in PHP_METHOD() local
398 zval *object = ZEND_THIS; in PHP_METHOD() local
[all …]
/php-src/ext/sqlite3/tests/
H A Dsqlite3_trampoline_create_aggregate_no_leak.phpt58 echo "Invalid SQLite3 object:\n";
81 Invalid SQLite3 object:
82 Error: The SQLite3 object has not been correctly initialised or is already closed
H A Dsqlite3_trampoline_createcollation_no_leak.phpt32 echo "Invalid SQLite3 object:\n";
49 Invalid SQLite3 object:
50 Error: The SQLite3 object has not been correctly initialised or is already closed
H A Dsqlite3_trampoline_createfunction_no_leak.phpt33 echo "Invalid SQLite3 object:\n";
50 Invalid SQLite3 object:
51 Error: The SQLite3 object has not been correctly initialised or is already closed
H A Dsqlite3_trampoline_setauthorizer_no_leak.phpt24 echo "Invalid SQLite3 object:\n";
39 Invalid SQLite3 object:
40 Error: The SQLite3 object has not been correctly initialised or is already closed
/php-src/ext/curl/
H A Dinterface.c235 static void curl_free_obj(zend_object *object);
236 static HashTable *curl_get_gc(zend_object *object, zval **table, int *n);
237 static zend_function *curl_get_constructor(zend_object *object);
238 static zend_object *curl_clone_obj(zend_object *object);
432 static zend_function *curl_get_constructor(zend_object *object) { in curl_get_constructor() argument
437 static zend_object *curl_clone_obj(zend_object *object) { in curl_clone_obj() argument
448 ch = curl_from_obj(object); in curl_clone_obj()
471 php_curl *curl = curl_from_obj(object); in curl_get_gc()
520 return zend_std_get_properties(object); in curl_get_gc()
2669 static void curl_free_obj(zend_object *object) in curl_free_obj() argument
[all …]
H A Dmulti.c514 static zend_function *curl_multi_get_constructor(zend_object *object) { in curl_multi_get_constructor() argument
519 static void curl_multi_free_obj(zend_object *object) in curl_multi_free_obj() argument
521 php_curlm *mh = curl_multi_from_obj(object); in curl_multi_free_obj()
551 static HashTable *curl_multi_get_gc(zend_object *object, zval **table, int *n) in curl_multi_get_gc() argument
553 php_curlm *curl_multi = curl_multi_from_obj(object); in curl_multi_get_gc()
569 return zend_std_get_properties(object); in curl_multi_get_gc()
/php-src/
H A DNEWS22 . Implement GH-13609 (Dump wrapped object in WeakReference class). (nielsdos)
86 ResourceBundle object now throw:
H A DUPGRADING44 object. This is no longer possible, and cloning a DOMXPath object now throws
49 ResourceBundle object now throw:
72 object rather than a resource. Return value checks using is_resource()
75 an Odbc\Result object rather than a resource. Return value checks using
135 . Calling simplexml_import_dom() with a non-XML object now throws a TypeError
155 of object set with xml_set_object() are now checked to see if the method
156 exists on the class of the previously passed object.
169 . Calling XSLTProcessor::importStyleSheet() with a non-XML object now throws
180 . Getting the debug info for WeakReference will now also output the object
/php-src/ext/dom/
H A Dphp_dom.h155 zend_object_iterator *php_dom_get_iterator(zend_class_entry *ce, zval *object, int by_ref);
H A Dphp_dom.c341 dom_object *obj = php_dom_obj_from_obj(object); in dom_get_property_ptr_ptr()
353 dom_object *obj = php_dom_obj_from_obj(object); in dom_read_property()
378 dom_object *obj = php_dom_obj_from_obj(object); in dom_write_property()
411 dom_object *obj = php_dom_obj_from_obj(object); in dom_property_exists()
441 dom_object *obj = php_dom_obj_from_obj(object); in dom_get_debug_info_helper()
451 std_props = zend_std_get_properties(object); in dom_get_debug_info_helper()
486 return dom_get_debug_info_helper(object, is_temp); in dom_get_debug_info()
490 void *php_dom_export_node(zval *object) /* {{{ */ in php_dom_export_node() argument
656 void dom_objects_free_storage(zend_object *object);
1435 dom_objects_free_storage(object); in dom_object_namespace_node_free_storage()
[all …]
H A Dnodelist.c281 zval *dom_modern_nodelist_read_dimension(zend_object *object, zval *offset, int type, zval *rv) in dom_modern_nodelist_read_dimension() argument
284 zend_throw_error(NULL, "Cannot append to %s", ZSTR_VAL(object->ce->name)); in dom_modern_nodelist_read_dimension()
290 zend_illegal_container_offset(object->ce->name, offset, type); in dom_modern_nodelist_read_dimension()
294 php_dom_nodelist_get_item_into_zval(php_dom_obj_from_obj(object)->ptr, index.lval, rv); in dom_modern_nodelist_read_dimension()
298 int dom_modern_nodelist_has_dimension(zend_object *object, zval *member, int check_empty) in dom_modern_nodelist_has_dimension() argument
305 zend_illegal_container_offset(object->ce->name, member, BP_VAR_IS); in dom_modern_nodelist_has_dimension()
309 return index.lval >= 0 && index.lval < php_dom_get_nodelist_length(php_dom_obj_from_obj(object)); in dom_modern_nodelist_has_dimension()
H A Dnodelist.h37 zval *dom_modern_nodelist_read_dimension(zend_object *object, zval *offset, int type, zval *rv);
38 int dom_modern_nodelist_has_dimension(zend_object *object, zval *member, int check_empty);
H A Ddom_iterators.c124 zval *object = &iterator->intern.data; in php_dom_iterator_current_key() local
125 zend_class_entry *ce = Z_OBJCE_P(object); in php_dom_iterator_current_key()
169 zval *object = &iterator->intern.data; in php_dom_iterator_move_forward() local
170 dom_object *nnmap = Z_DOMOBJ_P(object); in php_dom_iterator_move_forward()
249 zend_object_iterator *php_dom_get_iterator(zend_class_entry *ce, zval *object, int by_ref) /* {{{ */ in php_dom_get_iterator() argument
266 ZVAL_OBJ_COPY(&iterator->intern.data, Z_OBJ_P(object)); in php_dom_get_iterator()
271 intern = Z_DOMOBJ_P(object); in php_dom_get_iterator()
/php-src/ext/dom/tests/
H A Dentity_reference_stale_01.phpt31 object(DOMNodeList)#4 (1) {
38 object(DOMNodeList)#2 (1) {
H A Dentity_reference_stale_03.phpt31 object(DOM\NodeList)#1 (1) {
/php-src/ext/odbc/
H A Dphp_odbc.c183 static zend_function *odbc_connection_get_constructor(zend_object *object) in odbc_connection_get_constructor() argument
215 static zend_function *odbc_result_get_constructor(zend_object *object) in odbc_result_get_constructor() argument
/php-src/docs/source/core/data-structures/
H A Dreference-counting.rst137 object is referenced. Value types, on the other hand, are copied when passed to another party.
/php-src/ext/random/
H A Dengine_user.c31 zend_call_known_instance_method_with_0_params(s->generate_method, s->object, &retval); in generate()
/php-src/ext/reflection/
H A Dphp_reflection.stub.php52 public function getClosureThis(): ?object {}
162 public function getThis(): ?object {}
213 public function getClosure(?object $object = null): Closure {} argument
219 public function invoke(?object $object, mixed ...$args): mixed {} argument
222 public function invokeArgs(?object $object, array $args): mixed {} argument
360 public function isInstance(object $object): bool {} argument
363 public function newInstance(mixed ...$args): object {}
421 public function __construct(object $object) {} argument
452 public function getValue(?object $object = null): mixed {} argument
458 public function isInitialized(?object $object = null): bool {} argument
[all …]
H A Dphp_reflection_arginfo.h157 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, object, IS_OBJECT, 1, "null")
163 ZEND_ARG_TYPE_INFO(0, object, IS_OBJECT, 1)
168 ZEND_ARG_TYPE_INFO(0, object, IS_OBJECT, 1)
274 ZEND_ARG_TYPE_INFO(0, object, IS_OBJECT, 0)
330 ZEND_ARG_TYPE_INFO(0, object, IS_OBJECT, 0)
345 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, object, IS_OBJECT, 1, "null")
354 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, object, IS_OBJECT, 1, "null")
H A Dphp_reflection.c294 return object; in reflection_instantiate()
1613 zval *object; in ZEND_METHOD() local
2422 zval *object; in ZEND_METHOD() local
3248 zval *object; in instantiate_reflection_method() local
3811 zval *object; in ZEND_METHOD() local
4087 zval *object; in reflection_class_object_ctor() local
5052 zval *object; in ZEND_METHOD() local
5562 zval *object; in ZEND_METHOD() local
5782 zval *object; in ZEND_METHOD() local
6033 zval *object; in ZEND_METHOD() local
[all …]
/php-src/ext/zend_test/
H A Dtest.stub.php219 function zend_string_or_object(object|string $param): object|string {}
221 function zend_string_or_object_or_null(object|string|null $param): object|string|null {}
235 function zend_weakmap_attach(object $object, mixed $value): bool {} argument
236 function zend_weakmap_remove(object $object): bool {} argument
248 …function zend_call_method(object|string $obj_or_class, string $method, mixed $arg1 = UNKNOWN, mixe…
H A Dtest_arginfo.h76 ZEND_ARG_TYPE_INFO(0, object, IS_OBJECT, 0)
81 ZEND_ARG_TYPE_INFO(0, object, IS_OBJECT, 0)
/php-src/ext/libxml/
H A Dlibxml.c1268 ce = Z_OBJCE_P(object); in php_libxml_import_node()
1284 if (object->node != NULL) { in php_libxml_increment_node_ptr()
1301 object->node->node = node; in php_libxml_increment_node_ptr()
1302 object->node->refcount = 1; in php_libxml_increment_node_ptr()
1316 if (object != NULL && object->node != NULL) { in php_libxml_decrement_node_ptr()
1325 object->node = NULL; in php_libxml_decrement_node_ptr()
1336 object->document->refcount++; in php_libxml_increment_doc_ref()
1379 if (object != NULL && object->document != NULL) { in php_libxml_decrement_doc_ref()
1381 object->document = NULL; in php_libxml_decrement_doc_ref()
1422 if (object != NULL && object->node != NULL) { in php_libxml_node_decrement_resource()
[all …]

Completed in 107 milliseconds

12345678910>>...99