/php-src/ext/dom/lexbor/lexbor/html/ |
H A D | interface.h | 20 #define lxb_html_interface_document(obj) ((lxb_html_document_t *) (obj)) argument 22 #define lxb_html_interface_area(obj) ((lxb_html_area_element_t *) (obj)) argument 23 #define lxb_html_interface_audio(obj) ((lxb_html_audio_element_t *) (obj)) argument 24 #define lxb_html_interface_br(obj) ((lxb_html_br_element_t *) (obj)) argument 25 #define lxb_html_interface_base(obj) ((lxb_html_base_element_t *) (obj)) argument 26 #define lxb_html_interface_body(obj) ((lxb_html_body_element_t *) (obj)) argument 30 #define lxb_html_interface_data(obj) ((lxb_html_data_element_t *) (obj)) argument 35 #define lxb_html_interface_div(obj) ((lxb_html_div_element_t *) (obj)) argument 36 #define lxb_html_interface_element(obj) ((lxb_html_element_t *) (obj)) argument 43 #define lxb_html_interface_hr(obj) ((lxb_html_hr_element_t *) (obj)) argument [all …]
|
/php-src/Zend/ |
H A D | zend_atomic.c | 26 ZEND_API void zend_atomic_bool_init(zend_atomic_bool *obj, bool desired) { in zend_atomic_bool_init() 30 ZEND_API void zend_atomic_int_init(zend_atomic_int *obj, int desired) { in zend_atomic_int_init() 34 ZEND_API bool zend_atomic_bool_exchange(zend_atomic_bool *obj, bool desired) { in zend_atomic_bool_exchange() 38 ZEND_API int zend_atomic_int_exchange(zend_atomic_int *obj, int desired) { in zend_atomic_int_exchange() 47 ZEND_API bool zend_atomic_int_compare_exchange(zend_atomic_int *obj, int *expected, int desired) in zend_atomic_int_compare_exchange() 52 ZEND_API void zend_atomic_bool_store(zend_atomic_bool *obj, bool desired) { in zend_atomic_bool_store() 56 ZEND_API void zend_atomic_int_store(zend_atomic_int *obj, int desired) { in zend_atomic_int_store() 62 ZEND_API bool zend_atomic_bool_load(zend_atomic_bool *obj) { in zend_atomic_bool_load() 65 ZEND_API int zend_atomic_int_load(zend_atomic_int *obj) { in zend_atomic_int_load() 69 ZEND_API bool zend_atomic_bool_load(const zend_atomic_bool *obj) { in zend_atomic_bool_load() [all …]
|
H A D | zend_atomic.h | 92 #define ZEND_ATOMIC_BOOL_INIT(obj, desired) ((obj)->value = (desired)) in BEGIN_EXTERN_C() argument 93 #define ZEND_ATOMIC_INT_INIT(obj, desired) ((obj)->value = (desired)) in BEGIN_EXTERN_C() argument 102 static zend_always_inline int zend_atomic_int_exchange_ex(zend_atomic_int *obj, int desired) { in zend_atomic_int_exchange_ex() 106 static zend_always_inline bool zend_atomic_bool_compare_exchange_ex(zend_atomic_bool *obj, bool *ex… in zend_atomic_bool_compare_exchange_ex() 116 static zend_always_inline bool zend_atomic_int_compare_exchange_ex(zend_atomic_int *obj, int *expec… in zend_atomic_int_compare_exchange_ex() 127 static zend_always_inline bool zend_atomic_bool_load_ex(zend_atomic_bool *obj) { in zend_atomic_bool_load_ex() 132 static zend_always_inline int zend_atomic_int_load_ex(zend_atomic_int *obj) { in zend_atomic_int_load_ex() 137 static zend_always_inline void zend_atomic_bool_store_ex(zend_atomic_bool *obj, bool desired) { in zend_atomic_bool_store_ex() 141 static zend_always_inline void zend_atomic_int_store_ex(zend_atomic_int *obj, int desired) { in zend_atomic_int_store_ex()
|
H A D | zend_lazy_objects.c | 105 static zend_lazy_object_info* zend_lazy_object_get_info(zend_object *obj) in zend_lazy_object_get_info() 115 static bool zend_lazy_object_has_stale_info(zend_object *obj) in zend_lazy_object_has_stale_info() 120 zval* zend_lazy_object_get_initializer_zv(zend_object *obj) in zend_lazy_object_get_initializer_zv() 142 zend_object* zend_lazy_object_get_instance(zend_object *obj) in zend_lazy_object_get_instance() 157 zend_lazy_object_flags_t zend_lazy_object_get_flags(zend_object *obj) in zend_lazy_object_get_flags() 162 void zend_lazy_object_del_info(zend_object *obj) in zend_lazy_object_del_info() 168 bool zend_lazy_object_decr_lazy_props(zend_object *obj) in zend_lazy_object_decr_lazy_props() 225 ZEND_API zend_object *zend_object_make_lazy(zend_object *obj, in zend_object_make_lazy() 462 static zend_object *zend_lazy_object_init_proxy(zend_object *obj) in zend_lazy_object_init_proxy() 551 ZEND_API zend_object *zend_lazy_object_init(zend_object *obj) in zend_lazy_object_init() [all …]
|
H A D | zend_lazy_objects.h | 81 static zend_always_inline bool zend_object_is_lazy(zend_object *obj) in zend_object_is_lazy() 86 static zend_always_inline bool zend_object_is_lazy_proxy(zend_object *obj) in zend_object_is_lazy_proxy() 91 static zend_always_inline bool zend_lazy_object_initialized(zend_object *obj) in zend_lazy_object_initialized() 98 static zend_always_inline bool zend_lazy_object_must_init(zend_object *obj) in zend_lazy_object_must_init() 103 static inline bool zend_lazy_object_initialize_on_serialize(zend_object *obj) in zend_lazy_object_initialize_on_serialize()
|
H A D | zend_objects_API.h | 45 #define OBJ_RELEASE(obj) zend_object_release(obj) argument 67 static zend_always_inline void zend_object_store_ctor_failed(zend_object *obj) in zend_object_store_ctor_failed() 94 void *obj = emalloc(obj_size + zend_object_properties_size(ce)); in zend_object_alloc() local 101 static inline zend_property_info *zend_get_property_info_for_slot_self(zend_object *obj, zval *slot) in zend_get_property_info_for_slot_self() 109 static inline zend_property_info *zend_get_property_info_for_slot(zend_object *obj, zval *slot) in zend_get_property_info_for_slot() 121 static inline zend_property_info *zend_get_typed_property_info_for_slot(zend_object *obj, zval *slo… in zend_get_typed_property_info_for_slot()
|
/php-src/ext/dom/lexbor/lexbor/dom/ |
H A D | interface.h | 22 #define lxb_dom_interface_cdata_section(obj) ((lxb_dom_cdata_section_t *) (obj)) argument 23 #define lxb_dom_interface_character_data(obj) ((lxb_dom_character_data_t *) (obj)) argument 24 #define lxb_dom_interface_comment(obj) ((lxb_dom_comment_t *) (obj)) argument 25 #define lxb_dom_interface_document(obj) ((lxb_dom_document_t *) (obj)) argument 27 #define lxb_dom_interface_document_type(obj) ((lxb_dom_document_type_t *) (obj)) argument 28 #define lxb_dom_interface_element(obj) ((lxb_dom_element_t *) (obj)) argument 29 #define lxb_dom_interface_attr(obj) ((lxb_dom_attr_t *) (obj)) argument 30 #define lxb_dom_interface_event_target(obj) ((lxb_dom_event_target_t *) (obj)) argument 31 #define lxb_dom_interface_node(obj) ((lxb_dom_node_t *) (obj)) argument 33 #define lxb_dom_interface_shadow_root(obj) ((lxb_dom_shadow_root_t *) (obj)) argument [all …]
|
/php-src/ext/intl/ |
H A D | intl_data.h | 33 #define INTL_METHOD_INIT_VARS(oclass, obj) \ argument 38 #define INTL_DATA_ERROR(obj) (((intl_object *)(obj))->error) argument 39 #define INTL_DATA_ERROR_P(obj) (&(INTL_DATA_ERROR((obj)))) argument 40 #define INTL_DATA_ERROR_CODE(obj) INTL_ERROR_CODE(INTL_DATA_ERROR((obj))) argument 42 #define INTL_METHOD_FETCH_OBJECT(oclass, obj) \ argument 66 #define INTL_METHOD_CHECK_STATUS(obj, msg) \ argument 75 #define INTL_METHOD_CHECK_STATUS_OR_GOTO(obj, msg, label) \ argument 85 #define INTL_METHOD_CHECK_STATUS_OR_NULL(obj, msg) \ argument 95 #define INTL_CTOR_CHECK_STATUS(obj, msg) \ argument 103 #define INTL_METHOD_RETVAL_UTF8(obj, ustring, ulen, free_it) \ argument
|
/php-src/ext/dom/ |
H A D | entity.c | 40 zend_result dom_entity_public_id_read(dom_object *obj, zval *retval) in dom_entity_public_id_read() 60 zend_result dom_entity_system_id_read(dom_object *obj, zval *retval) in dom_entity_system_id_read() 80 zend_result dom_entity_notation_name_read(dom_object *obj, zval *retval) in dom_entity_notation_name_read() 105 zend_result dom_entity_actual_encoding_read(dom_object *obj, zval *retval) in dom_entity_actual_encoding_read() 120 zend_result dom_entity_encoding_read(dom_object *obj, zval *retval) in dom_entity_encoding_read() 135 zend_result dom_entity_version_read(dom_object *obj, zval *retval) in dom_entity_version_read()
|
H A D | documenttype.c | 32 zend_result dom_documenttype_name_read(dom_object *obj, zval *retval) in dom_documenttype_name_read() 46 zend_result dom_documenttype_entities_read(dom_object *obj, zval *retval) in dom_documenttype_entities_read() 67 zend_result dom_documenttype_notations_read(dom_object *obj, zval *retval) in dom_documenttype_notations_read() 88 zend_result dom_documenttype_public_id_read(dom_object *obj, zval *retval) in dom_documenttype_public_id_read() 108 zend_result dom_documenttype_system_id_read(dom_object *obj, zval *retval) in dom_documenttype_system_id_read() 128 zend_result dom_documenttype_internal_subset_read(dom_object *obj, zval *retval) in dom_documenttype_internal_subset_read()
|
H A D | attr.c | 80 zend_result dom_attr_name_read(dom_object *obj, zval *retval) in dom_attr_name_read() 101 zend_result dom_attr_specified_read(dom_object *obj, zval *retval) in dom_attr_specified_read() 110 void dom_attr_value_will_change(dom_object *obj, xmlAttrPtr attrp) in dom_attr_value_will_change() 125 zend_result dom_attr_value_read(dom_object *obj, zval *retval) in dom_attr_value_read() 132 zend_result dom_attr_value_write(dom_object *obj, zval *newval) in dom_attr_value_write() 161 zend_result dom_attr_owner_element_read(dom_object *obj, zval *retval) in dom_attr_owner_element_read() 178 zend_result dom_attr_schema_type_info_read(dom_object *obj, zval *retval) in dom_attr_schema_type_info_read()
|
H A D | inner_outer_html_mixin.c | 59 static zend_string *dom_element_html_fragment_serialize(dom_object *obj, xmlNodePtr node) in dom_element_html_fragment_serialize() 111 zend_result dom_element_inner_html_read(dom_object *obj, zval *retval) in dom_element_inner_html_read() 189 static xmlNodePtr dom_html_fragment_parsing_algorithm(dom_object *obj, xmlNodePtr context_node, con… in dom_html_fragment_parsing_algorithm() 276 static xmlNodePtr dom_xml_fragment_parsing_algorithm(dom_object *obj, const xmlNode *context_node, … in dom_xml_fragment_parsing_algorithm() 345 static xmlNodePtr dom_parse_fragment(dom_object *obj, xmlNodePtr context_node, const zend_string *i… in dom_parse_fragment() 355 zend_result dom_element_inner_html_write(dom_object *obj, zval *newval) in dom_element_inner_html_write() 386 zend_result dom_element_outer_html_read(dom_object *obj, zval *retval) in dom_element_outer_html_read() 416 zend_result dom_element_outer_html_write(dom_object *obj, zval *newval) in dom_element_outer_html_write()
|
H A D | processinginstruction.c | 74 zend_result dom_processinginstruction_target_read(dom_object *obj, zval *retval) in dom_processinginstruction_target_read() 88 zend_result dom_processinginstruction_data_read(dom_object *obj, zval *retval) in dom_processinginstruction_data_read() 95 zend_result dom_processinginstruction_data_write(dom_object *obj, zval *newval) in dom_processinginstruction_data_write()
|
H A D | entityreference.c | 83 zend_result dom_entity_reference_child_read(dom_object *obj, zval *retval) in dom_entity_reference_child_read() 93 zend_result dom_entity_reference_text_content_read(dom_object *obj, zval *retval) in dom_entity_reference_text_content_read() 101 zend_result dom_entity_reference_child_nodes_read(dom_object *obj, zval *retval) in dom_entity_reference_child_nodes_read()
|
H A D | notation.c | 41 zend_result dom_notation_public_id_read(dom_object *obj, zval *retval) in dom_notation_public_id_read() 61 zend_result dom_notation_system_id_read(dom_object *obj, zval *retval) in dom_notation_system_id_read()
|
H A D | document.c | 48 zend_result dom_document_doctype_read(dom_object *obj, zval *retval) in dom_document_doctype_read() 65 zend_result dom_document_implementation_read(dom_object *obj, zval *retval) in dom_document_implementation_read() 93 zend_result dom_document_encoding_read(dom_object *obj, zval *retval) in dom_document_encoding_read() 115 zend_result dom_document_encoding_write(dom_object *obj, zval *newval) in dom_document_encoding_write() 154 zend_result dom_document_standalone_read(dom_object *obj, zval *retval) in dom_document_standalone_read() 161 zend_result dom_document_standalone_write(dom_object *obj, zval *newval) in dom_document_standalone_write() 178 zend_result dom_document_version_read(dom_object *obj, zval *retval) in dom_document_version_read() 193 zend_result dom_document_version_write(dom_object *obj, zval *newval) in dom_document_version_write() 331 zend_result dom_document_recover_read(dom_object *obj, zval *retval) in dom_document_recover_read() 338 zend_result dom_document_recover_write(dom_object *obj, zval *newval) in dom_document_recover_write() [all …]
|
H A D | node.c | 80 zend_result dom_node_node_name_read(dom_object *obj, zval *retval) in dom_node_node_name_read() 140 zend_result dom_node_node_value_read(dom_object *obj, zval *retval) in dom_node_node_value_read() 178 zend_result dom_node_node_value_write(dom_object *obj, zval *newval) in dom_node_node_value_write() 221 zend_result dom_node_node_type_read(dom_object *obj, zval *retval) in dom_node_node_type_read() 256 zend_result dom_node_parent_node_read(dom_object *obj, zval *retval) in dom_node_parent_node_read() 280 zend_result dom_node_child_nodes_read(dom_object *obj, zval *retval) in dom_node_child_nodes_read() 317 zend_result dom_node_last_child_read(dom_object *obj, zval *retval) in dom_node_last_child_read() 413 zend_result dom_node_attributes_read(dom_object *obj, zval *retval) in dom_node_attributes_read() 508 zend_result dom_node_prefix_read(dom_object *obj, zval *retval) in dom_node_prefix_read() 549 zend_result dom_node_prefix_write(dom_object *obj, zval *newval) in dom_node_prefix_write() [all …]
|
/php-src/ext/mysqli/ |
H A D | mysqli_driver.c | 29 static zend_result driver_report_read(mysqli_object *obj, zval *retval, bool quiet) in driver_report_read() 37 static zend_result driver_report_write(mysqli_object *obj, zval *value) in driver_report_write() 46 static zend_result driver_client_version_read(mysqli_object *obj, zval *retval, bool quiet) in driver_client_version_read() 54 static zend_result driver_client_info_read(mysqli_object *obj, zval *retval, bool quiet) in driver_client_info_read() 62 static zend_result driver_driver_version_read(mysqli_object *obj, zval *retval, bool quiet) in driver_driver_version_read()
|
H A D | mysqli_prop.c | 127 static zend_result link_client_version_read(mysqli_object *obj, zval *retval, bool quiet) in link_client_version_read() 136 static zend_result link_client_info_read(mysqli_object *obj, zval *retval, bool quiet) in link_client_info_read() 145 static zend_result link_connect_errno_read(mysqli_object *obj, zval *retval, bool quiet) in link_connect_errno_read() 154 static zend_result link_connect_error_read(mysqli_object *obj, zval *retval, bool quiet) in link_connect_error_read() 167 static zend_result link_affected_rows_read(mysqli_object *obj, zval *retval, bool quiet) in link_affected_rows_read() 195 static zend_result link_error_list_read(mysqli_object *obj, zval *retval, bool quiet) in link_error_list_read() 258 static zend_result result_lengths_read(mysqli_object *obj, zval *retval, bool quiet) in result_lengths_read() 306 static zend_result stmt_affected_rows_read(mysqli_object *obj, zval *retval, bool quiet) in stmt_affected_rows_read() 334 static zend_result stmt_error_list_read(mysqli_object *obj, zval *retval, bool quiet) in stmt_error_list_read()
|
H A D | mysqli_warning.c | 121 mysqli_object *obj = Z_MYSQLI_P(ZEND_THIS); in PHP_METHOD() local 141 static zend_result mysqli_warning_message(mysqli_object *obj, zval *retval, bool quiet) in mysqli_warning_message() 161 static zend_result mysqli_warning_sqlstate(mysqli_object *obj, zval *retval, bool quiet) in mysqli_warning_sqlstate() 181 static zend_result mysqli_warning_errno(mysqli_object *obj, zval *retval, bool quiet) in mysqli_warning_errno()
|
/php-src/ext/com_dotnet/ |
H A D | com_handlers.c | 30 php_com_dotnet_object *obj; in com_property_read() local 62 php_com_dotnet_object *obj; in com_property_write() local 82 php_com_dotnet_object *obj; in com_read_dimension() local 118 php_com_dotnet_object *obj; in com_write_dimension() local 188 php_com_dotnet_object *obj; in com_property_exists() local 254 php_com_dotnet_object *obj = CDNO_FETCH(object); in PHP_FUNCTION() local 393 php_com_dotnet_object *obj = (php_com_dotnet_object *)object; in com_class_name_get() local 435 php_com_dotnet_object *obj; in com_object_cast() local 496 php_com_dotnet_object *obj; in com_object_count() local 567 php_com_dotnet_object *obj = (php_com_dotnet_object*)object; in php_com_object_free_storage() local [all …]
|
H A D | com_com.c | 34 php_com_dotnet_object *obj; in PHP_METHOD() local 283 IDispatch *obj = NULL; in PHP_FUNCTION() local 332 HRESULT php_com_invoke_helper(php_com_dotnet_object *obj, DISPID id_member, in php_com_invoke_helper() 410 HRESULT php_com_get_id_of_name(php_com_dotnet_object *obj, zend_string *name, in php_com_get_id_of_name() 456 zend_result php_com_do_invoke_byref(php_com_dotnet_object *obj, zend_internal_function *f, in php_com_do_invoke_byref() 584 zend_result php_com_do_invoke_by_id(php_com_dotnet_object *obj, DISPID dispid, in php_com_do_invoke_by_id() 631 zend_result php_com_do_invoke(php_com_dotnet_object *obj, zend_string *name, in php_com_do_invoke() 681 php_com_dotnet_object *obj; in PHP_FUNCTION() local 743 php_com_dotnet_object *obj = NULL; in PHP_FUNCTION() local
|
H A D | com_variant.c | 98 php_com_dotnet_object *obj; in php_com_variant_from_zval_ex() local 440 php_com_dotnet_object *obj; in PHP_METHOD() local 509 php_com_dotnet_object *obj; in PHP_FUNCTION() local 553 php_com_dotnet_object *obj; in variant_binary_operation() local 748 php_com_dotnet_object *obj; in variant_unary_operation() local 840 php_com_dotnet_object *obj; in PHP_FUNCTION() local 874 php_com_dotnet_object *obj; in PHP_FUNCTION() local 930 php_com_dotnet_object *obj; in PHP_FUNCTION() local 1015 php_com_dotnet_object *obj; in PHP_FUNCTION() local 1031 php_com_dotnet_object *obj; in PHP_FUNCTION() local [all …]
|
/php-src/ext/spl/ |
H A D | spl_observer.c | 61 zend_object *obj; member 342 zval obj; in spl_object_storage_debug_info() local 427 zend_object *obj; in PHP_METHOD() local 506 zend_object *obj; in PHP_METHOD() local 521 zend_object *obj; in PHP_METHOD() local 560 zval *obj; in PHP_METHOD() local 578 zval *obj; in PHP_METHOD() local 605 zval *obj; in PHP_METHOD() local 829 zval obj; in PHP_METHOD() local 941 zval obj; in PHP_METHOD() local [all …]
|
/php-src/ext/zend_test/ |
H A D | object_handlers.c | 26 zend_object *obj = zend_objects_new(ce); in donc_object_create_ex() local 129 zend_object *obj = zend_objects_new(ce); in long_castable_no_operation_object_create_ex() local 141 static zend_result long_castable_no_operation_cast_object(zend_object *obj, zval *result, int type) in long_castable_no_operation_cast_object() 165 zend_object *obj = zend_objects_new(ce); in float_castable_no_operation_object_create_ex() local 177 static zend_result float_castable_no_operation_cast_object(zend_object *obj, zval *result, int type) in float_castable_no_operation_cast_object() 201 zend_object *obj = zend_objects_new(ce); in numeric_castable_no_operation_object_create_ex() local 215 static zend_result numeric_castable_no_operation_cast_object(zend_object *obj, zval *result, int ty… in numeric_castable_no_operation_cast_object()
|