Lines Matching refs:is_persistent

201 	zend_bool is_persistent = 0;  in PHP_METHOD()  local
282 is_persistent = 1; in PHP_METHOD()
284 is_persistent = zval_get_long(v) ? 1 : 0; in PHP_METHOD()
291 if (is_persistent) { in PHP_METHOD()
314 pdbh->is_persistent = 1; in PHP_METHOD()
337 dbh->data_source = (const char*)pestrdup(colon + 1, is_persistent); in PHP_METHOD()
338 dbh->username = username ? pestrdup(username, is_persistent) : NULL; in PHP_METHOD()
339 dbh->password = password ? pestrdup(password, is_persistent) : NULL; in PHP_METHOD()
359 if (is_persistent) { in PHP_METHOD()
747 if (dbh->is_persistent) { in pdo_dbh_attribute_set()
861 RETURN_BOOL(dbh->is_persistent); in PHP_METHOD()
1290 if (!(dbh->cls_methods[kind] = pemalloc(sizeof(HashTable), dbh->is_persistent))) { in pdo_hash_methods()
1294 dbh->is_persistent? cls_method_pdtor : cls_method_dtor, dbh->is_persistent, 0); in pdo_hash_methods()
1301 func.function_name = zend_string_init(funcs->fname, strlen(funcs->fname), dbh->is_persistent); in pdo_hash_methods()
1509 if (dbh->is_persistent) { in dbh_free()
1523 pefree((char *)dbh->data_source, dbh->is_persistent); in dbh_free()
1526 pefree(dbh->username, dbh->is_persistent); in dbh_free()
1529 pefree(dbh->password, dbh->is_persistent); in dbh_free()
1533 pefree((char *)dbh->persistent_id, dbh->is_persistent); in dbh_free()
1543 pefree(dbh->cls_methods[i], dbh->is_persistent); in dbh_free()
1547 pefree(dbh, dbh->is_persistent); in dbh_free()
1558 if (dbh->is_persistent && dbh->methods && dbh->methods->persistent_shutdown) { in pdo_dbh_free_storage()