Home
last modified time | relevance | path

Searched refs:stored_name (Results 1 – 3 of 3) sorted by relevance

/freebsd/crypto/krb5/src/ccapi/test/
H A Dtest_ccapi_context.c408 cc_string_t stored_name = NULL; in check_once_cc_context_open_ccache() local
438 err = cc_ccache_get_name(*ccache, &stored_name); in check_once_cc_context_open_ccache()
441 check_if(strcmp(stored_name->data, name), NULL); in check_once_cc_context_open_ccache()
443 if (stored_name) { cc_string_release(stored_name); } in check_once_cc_context_open_ccache()
601 cc_string_t stored_name = NULL; in check_once_cc_context_create_ccache() local
629 err = cc_ccache_get_name(*ccache, &stored_name); in check_once_cc_context_create_ccache()
630 if (!err) { check_if(strcmp(stored_name->data, name), NULL); } in check_once_cc_context_create_ccache()
631 if (stored_name) { cc_string_release(stored_name); } in check_once_cc_context_create_ccache()
790 cc_string_t stored_name = NULL; in check_once_cc_context_create_new_ccache() local
821 err = cc_ccache_get_name(*ccache, &stored_name); in check_once_cc_context_create_new_ccache()
[all …]
H A Dtest_ccapi_v2.c365 char *stored_name = NULL; in check_once_cc_open() local
392 err = cc_get_name(context, *ccache, &stored_name); in check_once_cc_open()
395 check_if(strcmp(stored_name, name), NULL); in check_once_cc_open()
397 if (stored_name) { cc_free_name(context, &stored_name); } in check_once_cc_open()
458 char *stored_name = NULL; in check_once_cc_create() local
484 err = cc_get_name(context, *ccache, &stored_name); in check_once_cc_create()
485 if (!err) { check_if(strcmp(stored_name, name), NULL); } in check_once_cc_create()
486 if (stored_name) { cc_free_name(context, &stored_name); } in check_once_cc_create()
779 char *stored_name = NULL; in check_once_cc_get_name() local
789 err = cc_get_name(context, ccache, &stored_name); in check_once_cc_get_name()
[all …]
H A Dtest_ccapi_ccache.c433 cc_string_t stored_name = NULL; in check_once_cc_ccache_get_name() local
445 err = cc_ccache_get_name(ccache, &stored_name); in check_once_cc_ccache_get_name()
452 check_if(strcmp(stored_name->data, expected_name), NULL); in check_once_cc_ccache_get_name()
455 if (stored_name) { cc_string_release(stored_name); } in check_once_cc_ccache_get_name()