Lines Matching refs:ccache
1398 #define cc_context_open_ccache(context, name, ccache) \ argument
1399 ((context) -> functions -> open_ccache (context, name, ccache))
1401 #define cc_context_open_default_ccache(context, ccache) \ argument
1402 ((context) -> functions -> open_default_ccache (context, ccache))
1404 #define cc_context_create_ccache(context, name, version, principal, ccache) \ argument
1405 ((context) -> functions -> create_ccache (context, name, version, principal, ccache))
1407 #define cc_context_create_default_ccache(context, version, principal, ccache) \ argument
1408 ((context) -> functions -> create_default_ccache (context, version, principal, ccache))
1410 #define cc_context_create_new_ccache(context, version, principal, ccache) \ argument
1411 ((context) -> functions -> create_new_ccache (context, version, principal, ccache))
1429 #define cc_ccache_release(ccache) \ argument
1430 ((ccache) -> functions -> release (ccache))
1432 #define cc_ccache_destroy(ccache) \ argument
1433 ((ccache) -> functions -> destroy (ccache))
1435 #define cc_ccache_set_default(ccache) \ argument
1436 ((ccache) -> functions -> set_default (ccache))
1438 #define cc_ccache_get_credentials_version(ccache, version) \ argument
1439 ((ccache) -> functions -> get_credentials_version (ccache, version))
1441 #define cc_ccache_get_name(ccache, name) \ argument
1442 ((ccache) -> functions -> get_name (ccache, name))
1444 #define cc_ccache_get_principal(ccache, version, principal) \ argument
1445 ((ccache) -> functions -> get_principal (ccache, version, principal))
1447 #define cc_ccache_set_principal(ccache, version, principal) \ argument
1448 ((ccache) -> functions -> set_principal (ccache, version, principal))
1450 #define cc_ccache_store_credentials(ccache, credentials) \ argument
1451 ((ccache) -> functions -> store_credentials (ccache, credentials))
1453 #define cc_ccache_remove_credentials(ccache, credentials) \ argument
1454 ((ccache) -> functions -> remove_credentials (ccache, credentials))
1456 #define cc_ccache_new_credentials_iterator(ccache, iterator) \ argument
1457 ((ccache) -> functions -> new_credentials_iterator (ccache, iterator))
1459 #define cc_ccache_lock(ccache, type, block) \ argument
1460 ((ccache) -> functions -> lock (ccache, type, block))
1462 #define cc_ccache_unlock(ccache) \ argument
1463 ((ccache) -> functions -> unlock (ccache))
1465 #define cc_ccache_get_last_default_time(ccache, last_default_time) \ argument
1466 ((ccache) -> functions -> get_last_default_time (ccache, last_default_time))
1468 #define cc_ccache_get_change_time(ccache, change_time) \ argument
1469 ((ccache) -> functions -> get_change_time (ccache, change_time))
1474 #define cc_ccache_compare(ccache, compare_to, equal) \ argument
1475 ((ccache) -> functions -> compare (ccache, compare_to, equal))
1477 #define cc_ccache_get_kdc_time_offset(ccache, version, time_offset) \ argument
1478 ((ccache) -> functions -> get_kdc_time_offset (ccache, version, time_offset))
1480 #define cc_ccache_set_kdc_time_offset(ccache, version, time_offset) \ argument
1481 ((ccache) -> functions -> set_kdc_time_offset (ccache, version, time_offset))
1483 #define cc_ccache_clear_kdc_time_offset(ccache, version) \ argument
1484 ((ccache) -> functions -> clear_kdc_time_offset (ccache, version))
1486 #define cc_ccache_wait_for_change(ccache) \ argument
1487 ((ccache) -> functions -> wait_for_change (ccache))
1504 #define cc_ccache_iterator_next(iterator, ccache) \ argument
1505 ((iterator) -> functions -> next (iterator, ccache))