Searched refs:pdo_dbstmt_object_handlers (Results 1 – 2 of 2) sorted by relevance
40 extern zend_object_handlers pdo_dbstmt_object_handlers;
2086 zend_object_handlers pdo_dbstmt_object_handlers; variable2493 pdo_dbstmt_ce->default_object_handlers = &pdo_dbstmt_object_handlers; in pdo_stmt_init()2495 memcpy(&pdo_dbstmt_object_handlers, &std_object_handlers, sizeof(zend_object_handlers)); in pdo_stmt_init()2496 pdo_dbstmt_object_handlers.offset = XtOffsetOf(pdo_stmt_t, std); in pdo_stmt_init()2497 pdo_dbstmt_object_handlers.free_obj = pdo_dbstmt_free_storage; in pdo_stmt_init()2498 pdo_dbstmt_object_handlers.write_property = dbstmt_prop_write; in pdo_stmt_init()2499 pdo_dbstmt_object_handlers.unset_property = dbstmt_prop_delete; in pdo_stmt_init()2500 pdo_dbstmt_object_handlers.get_method = dbstmt_method_get; in pdo_stmt_init()2501 pdo_dbstmt_object_handlers.compare = zend_objects_not_comparable; in pdo_stmt_init()2502 pdo_dbstmt_object_handlers.clone_obj = NULL; in pdo_stmt_init()[all …]
Completed in 32 milliseconds