Lines Matching refs:is_persistent

201 	zend_bool is_persistent = 0;  in PHP_METHOD()  local
284 is_persistent = 1; in PHP_METHOD()
286 is_persistent = zval_get_long(v) ? 1 : 0; in PHP_METHOD()
293 if (is_persistent) { in PHP_METHOD()
316 pdbh->is_persistent = 1; in PHP_METHOD()
339 dbh->data_source = (const char*)pestrdup(colon + 1, is_persistent); in PHP_METHOD()
340 dbh->username = username ? pestrdup(username, is_persistent) : NULL; in PHP_METHOD()
341 dbh->password = password ? pestrdup(password, is_persistent) : NULL; in PHP_METHOD()
361 if (is_persistent) { in PHP_METHOD()
751 if (dbh->is_persistent) { in pdo_dbh_attribute_set()
866 RETURN_BOOL(dbh->is_persistent); in PHP_METHOD()
1298 dbh->cls_methods[kind] = pemalloc(sizeof(HashTable), dbh->is_persistent); in pdo_hash_methods()
1300 dbh->is_persistent? cls_method_pdtor : cls_method_dtor, dbh->is_persistent, 0); in pdo_hash_methods()
1307 func.function_name = zend_string_init(funcs->fname, strlen(funcs->fname), dbh->is_persistent); in pdo_hash_methods()
1506 if (dbh->is_persistent) { in dbh_free()
1520 pefree((char *)dbh->data_source, dbh->is_persistent); in dbh_free()
1523 pefree(dbh->username, dbh->is_persistent); in dbh_free()
1526 pefree(dbh->password, dbh->is_persistent); in dbh_free()
1530 pefree((char *)dbh->persistent_id, dbh->is_persistent); in dbh_free()
1540 pefree(dbh->cls_methods[i], dbh->is_persistent); in dbh_free()
1544 pefree(dbh, dbh->is_persistent); in dbh_free()
1555 if (dbh->is_persistent && dbh->methods && dbh->methods->persistent_shutdown) { in pdo_dbh_free_storage()