Lines Matching refs:pdo_row_object_handlers

221 		row->std.handlers = &pdo_row_object_handlers;  in get_lazy_object()
2152 zend_object_handlers pdo_row_object_handlers; variable
2572 row->std.handlers = &pdo_row_object_handlers; in pdo_row_new()
2607 memcpy(&pdo_row_object_handlers, &std_object_handlers, sizeof(zend_object_handlers)); in pdo_stmt_init()
2608 pdo_row_object_handlers.free_obj = pdo_row_free_storage; in pdo_stmt_init()
2609 pdo_row_object_handlers.clone_obj = NULL; in pdo_stmt_init()
2610 pdo_row_object_handlers.get_property_ptr_ptr = NULL; in pdo_stmt_init()
2611 pdo_row_object_handlers.read_property = row_prop_read; in pdo_stmt_init()
2612 pdo_row_object_handlers.write_property = row_prop_write; in pdo_stmt_init()
2613 pdo_row_object_handlers.has_property = row_prop_exists; in pdo_stmt_init()
2614 pdo_row_object_handlers.unset_property = row_prop_delete; in pdo_stmt_init()
2615 pdo_row_object_handlers.read_dimension = row_dim_read; in pdo_stmt_init()
2616 pdo_row_object_handlers.write_dimension = row_dim_write; in pdo_stmt_init()
2617 pdo_row_object_handlers.has_dimension = row_dim_exists; in pdo_stmt_init()
2618 pdo_row_object_handlers.unset_dimension = row_dim_delete; in pdo_stmt_init()
2619 pdo_row_object_handlers.get_properties_for = row_get_properties_for; in pdo_stmt_init()
2620 pdo_row_object_handlers.get_method = row_method_get; in pdo_stmt_init()
2621 pdo_row_object_handlers.get_constructor = row_get_ctor; in pdo_stmt_init()
2622 pdo_row_object_handlers.get_class_name = row_get_classname; in pdo_stmt_init()
2623 pdo_row_object_handlers.compare = row_compare; in pdo_stmt_init()