Searched refs:pdo_dbstmt_object_handlers (Results 1 – 2 of 2) sorted by relevance
41 extern zend_object_handlers pdo_dbstmt_object_handlers;
2153 zend_object_handlers pdo_dbstmt_object_handlers; variable2213 stmt->std.handlers = &pdo_dbstmt_object_handlers; in pdo_dbstmt_new()2592 memcpy(&pdo_dbstmt_object_handlers, &std_object_handlers, sizeof(zend_object_handlers)); in pdo_stmt_init()2593 pdo_dbstmt_object_handlers.offset = XtOffsetOf(pdo_stmt_t, std); in pdo_stmt_init()2594 pdo_dbstmt_object_handlers.dtor_obj = zend_objects_destroy_object; in pdo_stmt_init()2595 pdo_dbstmt_object_handlers.free_obj = pdo_dbstmt_free_storage; in pdo_stmt_init()2596 pdo_dbstmt_object_handlers.write_property = dbstmt_prop_write; in pdo_stmt_init()2597 pdo_dbstmt_object_handlers.unset_property = dbstmt_prop_delete; in pdo_stmt_init()2598 pdo_dbstmt_object_handlers.get_method = dbstmt_method_get; in pdo_stmt_init()2599 pdo_dbstmt_object_handlers.compare = dbstmt_compare; in pdo_stmt_init()[all …]
Completed in 16 milliseconds