Lines Matching refs:bcmath_number_obj_handlers
853 static zend_object_handlers bcmath_number_obj_handlers; variable
1005 bcmath_number_ce->default_object_handlers = &bcmath_number_obj_handlers; in bcmath_number_register_class()
1007 memcpy(&bcmath_number_obj_handlers, &std_object_handlers, sizeof(zend_object_handlers)); in bcmath_number_register_class()
1008 bcmath_number_obj_handlers.offset = XtOffsetOf(bcmath_number_obj_t, std); in bcmath_number_register_class()
1009 bcmath_number_obj_handlers.free_obj = bcmath_number_free; in bcmath_number_register_class()
1010 bcmath_number_obj_handlers.clone_obj = bcmath_number_clone; in bcmath_number_register_class()
1011 bcmath_number_obj_handlers.do_operation = bcmath_number_do_operation; in bcmath_number_register_class()
1012 bcmath_number_obj_handlers.compare = bcmath_number_compare; in bcmath_number_register_class()
1013 bcmath_number_obj_handlers.write_property = bcmath_number_write_property; in bcmath_number_register_class()
1014 bcmath_number_obj_handlers.unset_property = bcmath_number_unset_property; in bcmath_number_register_class()
1015 bcmath_number_obj_handlers.has_property = bcmath_number_has_property; in bcmath_number_register_class()
1016 bcmath_number_obj_handlers.read_property = bcmath_number_read_property; in bcmath_number_register_class()
1017 bcmath_number_obj_handlers.get_properties_for = bcmath_number_get_properties_for; in bcmath_number_register_class()
1018 bcmath_number_obj_handlers.cast_object = bcmath_number_cast_object; in bcmath_number_register_class()