Searched refs:cls_methods (Results 1 – 3 of 3) sorted by relevance
/PHP-5.6/ext/pdo/ |
H A D | pdo_dbh.c | 1302 if (!(dbh->cls_methods[kind] = pemalloc(sizeof(HashTable), dbh->is_persistent))) { in pdo_hash_methods() 1305 zend_hash_init_ex(dbh->cls_methods[kind], 8, NULL, NULL, dbh->is_persistent, 0); in pdo_hash_methods() 1342 zend_hash_add(dbh->cls_methods[kind], lc_name, namelen+1, &func, sizeof(func), NULL); in pdo_hash_methods() 1365 if (!dbh->cls_methods[PDO_DBH_DRIVER_METHOD_KIND_DBH]) { in dbh_method_get() 1368 || !dbh->cls_methods[PDO_DBH_DRIVER_METHOD_KIND_DBH]) { in dbh_method_get() 1373 if (zend_hash_find(dbh->cls_methods[PDO_DBH_DRIVER_METHOD_KIND_DBH], in dbh_method_get() 1537 if (dbh->cls_methods[i]) { in dbh_free() 1538 zend_hash_destroy(dbh->cls_methods[i]); in dbh_free() 1539 pefree(dbh->cls_methods[i], dbh->is_persistent); in dbh_free()
|
H A D | php_pdo_driver.h | 503 HashTable *cls_methods[PDO_DBH_DRIVER_METHOD_KIND__MAX]; member
|
H A D | pdo_stmt.c | 2262 if (!stmt->dbh->cls_methods[PDO_DBH_DRIVER_METHOD_KIND_STMT]) { in dbstmt_method_get() 2265 || !stmt->dbh->cls_methods[PDO_DBH_DRIVER_METHOD_KIND_STMT]) { in dbstmt_method_get() 2270 if (zend_hash_find(stmt->dbh->cls_methods[PDO_DBH_DRIVER_METHOD_KIND_STMT], in dbstmt_method_get()
|
Completed in 23 milliseconds