Lines Matching refs:is_persistent

228 	zend_bool is_persistent = 0;  in PHP_METHOD()  local
311 is_persistent = 1; in PHP_METHOD()
313 is_persistent = zval_get_long(v) ? 1 : 0; in PHP_METHOD()
320 if (is_persistent) { in PHP_METHOD()
343 pdbh->is_persistent = 1; in PHP_METHOD()
366 dbh->data_source = (const char*)pestrdup(colon + 1, is_persistent); in PHP_METHOD()
367 dbh->username = username ? pestrdup(username, is_persistent) : NULL; in PHP_METHOD()
368 dbh->password = password ? pestrdup(password, is_persistent) : NULL; in PHP_METHOD()
389 if (is_persistent) { in PHP_METHOD()
760 if (dbh->is_persistent) { in pdo_dbh_attribute_set()
867 RETURN_BOOL(dbh->is_persistent); in PHP_METHOD()
1213 dbh->cls_methods[kind] = pemalloc(sizeof(HashTable), dbh->is_persistent); in pdo_hash_methods()
1215 dbh->is_persistent? cls_method_pdtor : cls_method_dtor, dbh->is_persistent); in pdo_hash_methods()
1222 func.function_name = zend_string_init(funcs->fname, strlen(funcs->fname), dbh->is_persistent); in pdo_hash_methods()
1422 if (dbh->is_persistent) { in dbh_free()
1436 pefree((char *)dbh->data_source, dbh->is_persistent); in dbh_free()
1439 pefree(dbh->username, dbh->is_persistent); in dbh_free()
1442 pefree(dbh->password, dbh->is_persistent); in dbh_free()
1446 pefree((char *)dbh->persistent_id, dbh->is_persistent); in dbh_free()
1456 pefree(dbh->cls_methods[i], dbh->is_persistent); in dbh_free()
1460 pefree(dbh, dbh->is_persistent); in dbh_free()
1471 if (dbh->is_persistent && dbh->methods && dbh->methods->persistent_shutdown) { in pdo_dbh_free_storage()