Lines Matching refs:is_persistent

229 	bool is_persistent = 0;  in PHP_METHOD()  local
312 is_persistent = 1; in PHP_METHOD()
314 is_persistent = zval_get_long(v) ? 1 : 0; in PHP_METHOD()
321 if (is_persistent) { in PHP_METHOD()
344 pdbh->is_persistent = 1; in PHP_METHOD()
367 dbh->data_source = (const char*)pestrdup(colon + 1, is_persistent); in PHP_METHOD()
368 dbh->username = username ? pestrdup(username, is_persistent) : NULL; in PHP_METHOD()
369 dbh->password = password ? pestrdup(password, is_persistent) : NULL; in PHP_METHOD()
392 if (is_persistent) { in PHP_METHOD()
425 if (is_persistent) { in PHP_METHOD()
808 if (dbh->is_persistent) { in pdo_dbh_attribute_set()
911 RETURN_BOOL(dbh->is_persistent); in PHP_METHOD()
1258 dbh->cls_methods[kind] = pemalloc(sizeof(HashTable), dbh->is_persistent); in pdo_hash_methods()
1260 dbh->is_persistent? cls_method_pdtor : cls_method_dtor, dbh->is_persistent); in pdo_hash_methods()
1268 func.function_name = zend_string_init(funcs->fname, strlen(funcs->fname), dbh->is_persistent); in pdo_hash_methods()
1271 …ZEND_MAP_PTR(func.run_time_cache) = rt_cache_size ? pecalloc(rt_cache_size, 1, dbh->is_persistent)… in pdo_hash_methods()
1378 if (dbh->is_persistent) { in dbh_free()
1392 pefree((char *)dbh->data_source, dbh->is_persistent); in dbh_free()
1395 pefree(dbh->username, dbh->is_persistent); in dbh_free()
1398 pefree(dbh->password, dbh->is_persistent); in dbh_free()
1402 pefree((char *)dbh->persistent_id, dbh->is_persistent); in dbh_free()
1412 pefree(dbh->cls_methods[i], dbh->is_persistent); in dbh_free()
1416 pefree(dbh, dbh->is_persistent); in dbh_free()
1433 if (dbh->is_persistent && dbh->methods && dbh->methods->persistent_shutdown) { in pdo_dbh_free_storage()