Home
last modified time | relevance | path

Searched refs:search_for (Results 1 – 6 of 6) sorted by relevance

/freebsd/crypto/krb5/src/plugins/kdb/test/
H A Dkdb_test.c366 request_for_us(krb5_context context, krb5_const_principal search_for) in request_for_us() argument
378 for_us = krb5_realm_compare(context, local_tgs, search_for) || in request_for_us()
379 krb5_principal_compare_any_realm(context, local_tgs, search_for); in request_for_us()
385 test_get_principal(krb5_context context, krb5_const_principal search_for, in test_get_principal() argument
399 if (!request_for_us(context, search_for)) in test_get_principal()
402 check(krb5_unparse_name_flags(context, search_for, in test_get_principal()
408 if (!krb5_realm_compare(context, search_for, princ)) { in test_get_principal()
422 tgtprinc = tgtname(context, &princ->realm, &search_for->realm); in test_get_principal()
439 check(krb5_copy_principal(context, search_for, &princ)); in test_get_principal()
476 make_keys(key_strings, ename, &search_for->realm, ent); in test_get_principal()
/freebsd/crypto/krb5/src/lib/kdb/
H A Dkdb5int.h38 krb5_principal search_for);
H A Dkdb5.c803 krb5_db_get_principal(krb5_context kcontext, krb5_const_principal search_for, in krb5_db_get_principal() argument
819 status = v->get_principal(kcontext, search_for, flags, &entry); in krb5_db_get_principal()
1016 krb5_principal search_for) in krb5int_delete_principal_no_log() argument
1026 return v->delete_principal(kcontext, search_for); in krb5int_delete_principal_no_log()
1030 krb5_db_delete_principal(krb5_context kcontext, krb5_principal search_for) in krb5_db_delete_principal() argument
1036 status = krb5int_delete_principal_no_log(kcontext, search_for); in krb5_db_delete_principal()
1040 status = krb5_unparse_name(kcontext, search_for, &princ_name); in krb5_db_delete_principal()
/freebsd/crypto/krb5/src/include/
H A Dkdb.h383 krb5_const_principal search_for,
390 krb5_principal search_for );
1082 krb5_const_principal search_for,
1110 krb5_const_principal search_for);
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_str.h112 void __kmp_str_replace(char *str, char search_for, char replace_with);
H A Dkmp_str.cpp561 void __kmp_str_replace(char *str, char search_for, char replace_with) { in __kmp_str_replace() argument
564 found = strchr(str, search_for); in __kmp_str_replace()
567 found = strchr(found + 1, search_for); in __kmp_str_replace()