Home
last modified time | relevance | path

Searched refs:object_ptr (Results 1 – 25 of 30) sorted by relevance

12

/PHP-5.3/Zend/
H A Dzend_API.c2374 if (!fcc->object_ptr) { in zend_is_callable_check_class()
2388 if (!fcc->object_ptr) { in zend_is_callable_check_class()
2401 if (!fcc->object_ptr) { in zend_is_callable_check_class()
2681 if (fcc->object_ptr) { in zend_is_callable_check_func()
2715 fcc->object_ptr = NULL; in zend_is_callable_ex()
2717 if (object_ptr && Z_TYPE_P(object_ptr) != IS_OBJECT) { in zend_is_callable_ex()
2718 object_ptr = NULL; in zend_is_callable_ex()
2720 if (object_ptr && in zend_is_callable_ex()
2728 if (object_ptr) { in zend_is_callable_ex()
2729 fcc->object_ptr = object_ptr; in zend_is_callable_ex()
[all …]
H A Dzend_execute.c429 static inline void make_real_object(zval **object_ptr TSRMLS_DC) in make_real_object()
431 if (Z_TYPE_PP(object_ptr) == IS_NULL in make_real_object()
432 || (Z_TYPE_PP(object_ptr) == IS_BOOL && Z_LVAL_PP(object_ptr) == 0) in make_real_object()
433 || (Z_TYPE_PP(object_ptr) == IS_STRING && Z_STRLEN_PP(object_ptr) == 0) in make_real_object()
435 SEPARATE_ZVAL_IF_NOT_REF(object_ptr); in make_real_object()
436 zval_dtor(*object_ptr); in make_real_object()
437 object_init(*object_ptr); in make_real_object()
517 static inline void zend_assign_to_object(znode *result, zval **object_ptr, zval *property_name, zno… in zend_assign_to_object() argument
520 zval *object = *object_ptr; in zend_assign_to_object()
537 SEPARATE_ZVAL_IF_NOT_REF(object_ptr); in zend_assign_to_object()
[all …]
H A Dzend_execute_API.c748 fci.object_ptr = object_pp ? *object_pp : NULL; in call_user_function_ex()
838 fci->object_ptr = fci_cache->object_ptr; in zend_call_function()
839 EX(object) = fci->object_ptr; in zend_call_function()
840 if (fci->object_ptr && Z_TYPE_P(fci->object_ptr) == IS_OBJECT && in zend_call_function()
841 …ore).object_buckets || !EG(objects_store).object_buckets[Z_OBJ_HANDLE_P(fci->object_ptr)].valid)) { in zend_call_function()
928 if (fci->object_ptr) { in zend_call_function()
932 EG(This) = fci->object_ptr; in zend_call_function()
1009 if (fci->object_ptr) { in zend_call_function()
1010object_ptr)->call_method(EX(function_state).function->common.function_name, fci->param_count, *fci… in zend_call_function()
1114 fcall_info.object_ptr = NULL; in zend_lookup_class_ex()
[all …]
H A Dzend_vm_execute.h9490 object = *object_ptr; in zend_binary_assign_op_obj_helper_SPEC_VAR_CONST()
9736 object = *object_ptr; in zend_pre_incdec_property_helper_SPEC_VAR_CONST()
9833 object = *object_ptr; in zend_post_incdec_property_helper_SPEC_VAR_CONST()
11300 object = *object_ptr; in zend_binary_assign_op_obj_helper_SPEC_VAR_TMP()
11547 object = *object_ptr; in zend_pre_incdec_property_helper_SPEC_VAR_TMP()
11644 object = *object_ptr; in zend_post_incdec_property_helper_SPEC_VAR_TMP()
13054 object = *object_ptr; in zend_binary_assign_op_obj_helper_SPEC_VAR_VAR()
13301 object = *object_ptr; in zend_pre_incdec_property_helper_SPEC_VAR_VAR()
13398 object = *object_ptr; in zend_post_incdec_property_helper_SPEC_VAR_VAR()
14615 object = *object_ptr; in zend_binary_assign_op_obj_helper_SPEC_VAR_UNUSED()
[all …]
H A Dzend_object_handlers.h90 typedef union _zend_function *(*zend_object_get_method_t)(zval **object_ptr, char *method, int meth…
H A Dzend_closures.c114 static zend_function *zend_closure_get_method(zval **object_ptr, char *method_name, int method_len … in zend_closure_get_method() argument
125 return zend_get_closure_invoke_method(*object_ptr TSRMLS_CC); in zend_closure_get_method()
H A Dzend_vm_def.h306 if (OP1_TYPE == IS_VAR && !object_ptr) {
311 make_real_object(object_ptr TSRMLS_CC);
312 object = *object_ptr;
554 if (OP1_TYPE == IS_VAR && !object_ptr) {
559 object = *object_ptr;
651 if (OP1_TYPE == IS_VAR && !object_ptr) {
656 object = *object_ptr;
1477 if (OP1_TYPE == IS_VAR && !object_ptr) {
1497 zval **object_ptr = GET_OP1_ZVAL_PTR_PTR(BP_VAR_W);
1499 if (OP1_TYPE == IS_VAR && !object_ptr) {
[all …]
H A Dzend_interfaces.c49 fci.object_ptr = object_pp ? *object_pp : NULL; in zend_call_method()
96 fcic.object_ptr = object_pp ? *object_pp : NULL; in zend_call_method()
H A Dzend_API.h51 zval *object_ptr; member
60 zval *object_ptr; member
287 ZEND_API zend_bool zend_is_callable_ex(zval *callable, zval *object_ptr, uint check_flags, char **c…
H A Dzend_object_handlers.c846 static union _zend_function *zend_std_get_method(zval **object_ptr, char *method_name, int method_l… in zend_std_get_method() argument
851 zval *object = *object_ptr; in zend_std_get_method()
H A Dzend_exceptions.c593 fci.object_ptr = exception; in ZEND_METHOD()
/PHP-5.3/ext/spl/
H A Dspl_iterators.c845 …_it_object *object = (spl_recursive_it_object*)zend_object_store_get_object(*object_ptr TSRMLS_CC); in spl_recursive_it_get_method()
854 function_handler = std_object_handlers.get_method(object_ptr, method, method_len TSRMLS_CC); in spl_recursive_it_get_method()
858 *object_ptr = zobj; in spl_recursive_it_get_method()
859 … function_handler = Z_OBJ_HT_P(*object_ptr)->get_method(object_ptr, method, method_len TSRMLS_CC); in spl_recursive_it_get_method()
862 *object_ptr = zobj; in spl_recursive_it_get_method()
1285 static union _zend_function *spl_dual_it_get_method(zval **object_ptr, char *method, int method_len… in spl_dual_it_get_method() argument
1290 intern = (spl_dual_it_object*)zend_object_store_get_object(*object_ptr TSRMLS_CC); in spl_dual_it_get_method()
1292 function_handler = std_object_handlers.get_method(object_ptr, method, method_len TSRMLS_CC); in spl_dual_it_get_method()
1296 *object_ptr = intern->inner.zobject; in spl_dual_it_get_method()
1297 … function_handler = Z_OBJ_HT_P(*object_ptr)->get_method(object_ptr, method, method_len TSRMLS_CC); in spl_dual_it_get_method()
[all …]
H A Dphp_spl.c467 obj_ptr = fcc.object_ptr; in PHP_FUNCTION()
510 obj_ptr = fcc.object_ptr; in PHP_FUNCTION()
614 obj_ptr = fcc.object_ptr; in PHP_FUNCTION()
H A Dspl_directory.c659 zend_function *spl_filesystem_object_get_method_check(zval **object_ptr, char *method, int method_l… in spl_filesystem_object_get_method_check() argument
661 spl_filesystem_object *fsobj = zend_object_store_get_object(*object_ptr TSRMLS_CC); in spl_filesystem_object_get_method_check()
668 return zend_get_std_object_handlers()->get_method(object_ptr, method, method_len TSRMLS_CC); in spl_filesystem_object_get_method_check()
2121 fci.object_ptr = NULL; in spl_filesystem_file_call()
2133 fcic.object_ptr = NULL; in spl_filesystem_file_call()
/PHP-5.3/ext/reflection/
H A Dphp_reflection.c1386 fci.object_ptr = NULL; in _reflection_export()
1765 fci.object_ptr = NULL; in ZEND_METHOD()
1775 fcc.object_ptr = NULL; in ZEND_METHOD()
1832 fci.object_ptr = NULL; in ZEND_METHOD()
1842 fcc.object_ptr = NULL; in ZEND_METHOD()
2557 zval *object_ptr; in ZEND_METHOD() local
2598 object_ptr = NULL; in ZEND_METHOD()
2624 fci.object_ptr = object_ptr; in ZEND_METHOD()
2634 fcc.object_ptr = object_ptr; in ZEND_METHOD()
2733 fci.object_ptr = object; in ZEND_METHOD()
[all …]
/PHP-5.3/ext/com_dotnet/
H A Dcom_handlers.c262 static union _zend_function *com_method_get(zval **object_ptr, char *name, int len TSRMLS_DC) in com_method_get() argument
268 zval *object = *object_ptr; in com_method_get()
/PHP-5.3/ext/pdo_sqlite/
H A Dsqlite_driver.c332 fc->fci.object_ptr = NULL; in do_callback()
496 collation->fc.fci.object_ptr = NULL; in php_sqlite3_collation_callback()
/PHP-5.3/ext/curl/
H A Dinterface.c1027 fci.object_ptr = NULL; in curl_write()
1103 fci.object_ptr = NULL; in curl_progress()
1177 fci.object_ptr = NULL; in curl_read()
1254 fci.object_ptr = NULL; in curl_write_header()
/PHP-5.3/ext/dom/
H A Dxpath.c202 fci.object_ptr = NULL; in dom_xpath_ext_function_php()
/PHP-5.3/ext/pdo/
H A Dpdo_stmt.c978 stmt->fetch.cls.fci.object_ptr = return_value; in do_fetch()
979 stmt->fetch.cls.fcc.object_ptr = return_value; in do_fetch()
1178 stmt->fetch.cls.fci.object_ptr = return_value; in do_fetch()
1179 stmt->fetch.cls.fcc.object_ptr = return_value; in do_fetch()
H A Dpdo_dbh.c463 fci.object_ptr = object; in pdo_stmt_construct()
487 fcc.object_ptr = object; in pdo_stmt_construct()
/PHP-5.3/main/streams/
H A Duserspace.c307 fci.object_ptr = us->object; in user_wrapper_opener()
317 fcc.object_ptr = us->object; in user_wrapper_opener()
/PHP-5.3/ext/mysqli/
H A Dmysqli.c1276 fci.object_ptr = return_value; in php_mysqli_fetch_into_hash()
1310 fcc.object_ptr = return_value; in php_mysqli_fetch_into_hash()
/PHP-5.3/ext/xsl/
H A Dxsltprocessor.c311 fci.object_ptr = NULL; in xsl_ext_function_php()
/PHP-5.3/ext/sqlite3/
H A Dsqlite3.c702 fc->fci.object_ptr = NULL;
867 collation->fci.fci.object_ptr = NULL;

Completed in 227 milliseconds

12