Home
last modified time | relevance | path

Searched refs:obj (Results 376 – 400 of 413) sorted by relevance

1...<<11121314151617

/PHP-5.6/ext/snmp/
H A Dsnmp.c1980 php_snmp_object *obj; in php_snmp_read_property() local
1985 obj = (php_snmp_object *)zend_objects_get_address(object TSRMLS_CC); in php_snmp_read_property()
1997 ret = hnd->read_func(obj, &retval TSRMLS_CC); in php_snmp_read_property()
2021 php_snmp_object *obj; in php_snmp_write_property() local
2033 obj = (php_snmp_object *)zend_objects_get_address(object TSRMLS_CC); in php_snmp_write_property()
2038 hnd->write_func(obj, value TSRMLS_CC); in php_snmp_write_property()
2108 php_snmp_object *obj; in php_snmp_get_properties() local
2117 obj = (php_snmp_object *)zend_objects_get_address(object TSRMLS_CC); in php_snmp_get_properties()
2124 if (!hnd->read_func || hnd->read_func(obj, &val TSRMLS_CC) != SUCCESS) { in php_snmp_get_properties()
2131 return obj->zo.properties; in php_snmp_get_properties()
/PHP-5.6/ext/standard/tests/strings/
H A Dstr_split_variation1.phpt223 string(3) "obj"
H A Dexplode1.phpt77 $obj = new string1;
78 var_dump( explode("b", $obj) );
H A Dstrtok_variation2.phpt25 return "obj-ect";
/PHP-5.6/main/
H A DSAPI.c1061 SAPI_API int sapi_get_target_uid(uid_t *obj TSRMLS_DC) in sapi_get_target_uid()
1064 return sapi_module.get_target_uid(obj TSRMLS_CC); in sapi_get_target_uid()
1070 SAPI_API int sapi_get_target_gid(gid_t *obj TSRMLS_DC) in sapi_get_target_gid()
1073 return sapi_module.get_target_gid(obj TSRMLS_CC); in sapi_get_target_gid()
/PHP-5.6/win32/build/
H A Dconfutils.js1398 var src, obj, sym, flags;
1456 obj = src.replace(re, ".obj");
1457 tv += " " + sub_build + obj;
1461 objs_line += " " + sub_build + obj;
1464 objs_line = sub_build + obj;
1468 MFO.WriteLine(sub_build + obj + ": " + dir + "\\" + src);
1474 … flags + ") $(CFLAGS) $(" + bd_flags_name + ") /c " + dir + "\\" + src + " /Fo" + sub_build + obj);
/PHP-5.6/Zend/
H A Dzend_object_handlers.h113 typedef int (*zend_object_get_closure_t)(zval *obj, zend_class_entry **ce_ptr, union _zend_function…
H A Dzend_object_handlers.c36 ((zend_object*)(EG(objects_store).object_buckets[Z_OBJ_HANDLE_P(zval_p)].bucket.obj.object))
1628 int zend_std_get_closure(zval *obj, zend_class_entry **ce_ptr, zend_function **fptr_ptr, zval **zob… in zend_std_get_closure() argument
1631 if (Z_TYPE_P(obj) != IS_OBJECT) { in zend_std_get_closure()
1635 ce = Z_OBJCE_P(obj); in zend_std_get_closure()
1648 *zobj_ptr = obj; in zend_std_get_closure()
H A Dzend_vm_def.h2732 zval **obj = NULL; variable
2737 if (!obj || !method) {
2741 if (Z_TYPE_PP(obj) != IS_STRING && Z_TYPE_PP(obj) != IS_OBJECT) {
2749 if (Z_TYPE_PP(obj) == IS_STRING) {
2750 ce = zend_fetch_class_by_name(Z_STRVAL_PP(obj), Z_STRLEN_PP(obj), NULL, 0 TSRMLS_CC);
2764 call->object = *obj;
2765 ce = call->called_scope = Z_OBJCE_PP(obj);
3656 zval *obj; variable
3662 obj = GET_OP1_OBJ_ZVAL_PTR(BP_VAR_R);
3672 ce = Z_OBJCE_P(obj);
[all …]
H A DOBJECTS2_HOWTO71 $foo =& $obj->bar;
/PHP-5.6/ext/standard/tests/array/
H A Dcount_recursive.phpt93 $obj = new count_class();
94 print "COUNT_NORMAL: should be 3, is ".count($obj)."\n";
/PHP-5.6/ext/standard/tests/general_functions/
H A Dis_callable_basic2.phpt80 $obj = new contains_object_class;
97 $obj,
98 $obj->class_object1,
99 $obj->no_member_class_object,
/PHP-5.6/ext/exif/tests/
H A Dexif_tagname_variation1.phpt23 return "obj'ct";
/PHP-5.6/ext/session/
H A Dsession.c1802 zval *obj = NULL, *callback = NULL;
1811 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "O|b", &obj, php_session_iface_entry, &regist…
1821 …if (zend_hash_find(&Z_OBJCE_P(obj)->function_table, func_name, func_name_len, (void **)&current_mp…
1828 Z_ADDREF_P(obj);
1829 add_next_index_zval(callback, obj);
1846 …if (zend_hash_find(&Z_OBJCE_P(obj)->function_table, func_name, func_name_len, (void **)&current_mp…
1853 Z_ADDREF_P(obj);
1854 add_next_index_zval(callback, obj);
/PHP-5.6/ext/xml/
H A Dxml.c115 ZEND_ARG_INFO(1, obj)
538 zval **obj; in xml_call_handler() local
543 zend_hash_index_find(Z_ARRVAL_P(handler), 0, (void **) &obj) == SUCCESS && in xml_call_handler()
545 Z_TYPE_PP(obj) == IS_OBJECT && in xml_call_handler()
547 …php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to call handler %s::%s()", Z_OBJCE_PP(obj)->na… in xml_call_handler()
/PHP-5.6/ext/spl/
H A Dspl_dllist.c367 …spl_dllist_object_new_ex(zend_class_entry *class_type, spl_dllist_object **obj, zval *orig, int cl… in spl_dllist_object_new_ex() argument
375 *obj = intern; in spl_dllist_object_new_ex()
506 static HashTable* spl_dllist_object_get_debug_info(zval *obj, int *is_temp TSRMLS_DC) /* {{{{ */ in spl_dllist_object_get_debug_info() argument
508 spl_dllist_object *intern = (spl_dllist_object*)zend_object_store_get_object(obj TSRMLS_CC); in spl_dllist_object_get_debug_info()
H A Dspl_iterators.c3561 PHPAPI int spl_iterator_apply(zval *obj, spl_iterator_apply_func_t apply_func, void *puser TSRMLS_D… in spl_iterator_apply() argument
3564 zend_class_entry *ce = Z_OBJCE_P(obj); in spl_iterator_apply()
3566 iter = ce->get_iterator(ce, obj, 0 TSRMLS_CC); in spl_iterator_apply()
3650 zval *obj; in PHP_FUNCTION() local
3653 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "O|b", &obj, zend_ce_traversable, &use_keys) … in PHP_FUNCTION()
3659 …if (spl_iterator_apply(obj, use_keys ? spl_iterator_to_array_apply : spl_iterator_to_values_apply,… in PHP_FUNCTION()
3676 zval *obj; in PHP_FUNCTION() local
3679 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "O", &obj, zend_ce_traversable) == FAILURE) { in PHP_FUNCTION()
3683 if (spl_iterator_apply(obj, spl_iterator_count_apply, (void*)&count TSRMLS_CC) == SUCCESS) { in PHP_FUNCTION()
3690 zval *obj; member
[all …]
H A Dspl_directory.c147 …e spl_filesystem_object_new_ex(zend_class_entry *class_type, spl_filesystem_object **obj TSRMLS_DC) in spl_filesystem_object_new_ex()
157 if (obj) *obj = intern; in spl_filesystem_object_new_ex()
451 return_value->value.obj = spl_filesystem_object_new_ex(ce, &intern TSRMLS_CC); in spl_filesystem_object_create_info()
494 return_value->value.obj = spl_filesystem_object_new_ex(ce, &intern TSRMLS_CC); in spl_filesystem_object_create_type()
515 return_value->value.obj = spl_filesystem_object_new_ex(ce, &intern TSRMLS_CC); in spl_filesystem_object_create_type()
589 static HashTable* spl_filesystem_object_get_debug_info(zval *obj, int *is_temp TSRMLS_DC) /* {{{ */ in spl_filesystem_object_get_debug_info() argument
591 …spl_filesystem_object *intern = (spl_filesystem_object*)zend_object_store_get_object(obj TSRMLS_CC… in spl_filesystem_object_get_debug_info()
/PHP-5.6/ext/mysqli/tests/
H A Dmysqli_connect_oo.phpt16 $obj = new stdClass();
/PHP-5.6/ext/dom/
H A Delement.c238 int dom_element_tag_name_read(dom_object *obj, zval **retval TSRMLS_DC) in dom_element_tag_name_read() argument
244 nodep = dom_object_get_node(obj); in dom_element_tag_name_read()
273 int dom_element_schema_type_info_read(dom_object *obj, zval **retval TSRMLS_DC) in dom_element_schema_type_info_read() argument
/PHP-5.6/
H A D.gitignore180 ext/mbstring/libmbfl/*.obj
/PHP-5.6/ext/mysqli/
H A Dmysqli_api.c1262 zval *obj; local
1277 MAKE_STD_ZVAL(obj);
1278 object_init(obj);
1280 php_add_field_properties(obj, field TSRMLS_CC);
1281 add_index_zval(return_value, i, obj);
/PHP-5.6/ext/date/
H A Dphp_date.c606 php_date_obj *obj; \
617 obj = (php_date_obj *) zend_object_store_get_object(object TSRMLS_CC); \
4044 php_interval_obj *obj; in date_interval_read_property() local
4057 obj = (php_interval_obj *)zend_objects_get_address(object TSRMLS_CC); in date_interval_read_property()
4059 if (!obj->initialized) { in date_interval_read_property()
4069 value = obj->diff->n; \ in date_interval_read_property()
4111 php_interval_obj *obj; in date_interval_write_property() local
4122 obj = (php_interval_obj *)zend_objects_get_address(object TSRMLS_CC); in date_interval_write_property()
4124 if (!obj->initialized) { in date_interval_write_property()
4140 obj->diff->n = Z_LVAL_P(value); \ in date_interval_write_property()
/PHP-5.6/ext/simplexml/
H A Dsimplexml.c87 value->value.obj = php_sxe_register_object(subnode TSRMLS_CC); in _node_as_zval()
1030 (*value)->value.obj = php_sxe_register_object(subnode TSRMLS_CC); in _get_base_node_value()
2206 return_value->value.obj = php_sxe_register_object(sxe TSRMLS_CC); in PHP_FUNCTION()
2244 return_value->value.obj = php_sxe_register_object(sxe TSRMLS_CC); in PHP_FUNCTION()
2502 return_value->value.obj = php_sxe_register_object(sxe TSRMLS_CC); in PHP_FUNCTION()
/PHP-5.6/ext/openssl/
H A Dopenssl.c636 ASN1_OBJECT * obj; in add_assoc_name_entry() local
651 obj = X509_NAME_ENTRY_get_object(ne); in add_assoc_name_entry()
652 nid = OBJ_obj2nid(obj); in add_assoc_name_entry()
3997 ASN1_OBJECT *obj; in PHP_FUNCTION() local
4017 obj = OBJ_nid2obj(nid); in PHP_FUNCTION()
4018 if (obj != NULL) { in PHP_FUNCTION()
4019 int oir_len = OBJ_obj2txt(oir_buf, sizeof(oir_buf), obj, 1); in PHP_FUNCTION()
4021 ASN1_OBJECT_free(obj); in PHP_FUNCTION()

Completed in 163 milliseconds

1...<<11121314151617