Symbol: krb5_acl_match_string
crypto/heimdal/lib/krb5/krb5-protos.h
75
krb5_acl_match_string (
crypto/heimdal/lib/krb5/test_acl.c
52
ret = krb5_acl_match_string(context, "foo", "s", "foo");
crypto/heimdal/lib/krb5/test_acl.c
54
ret = krb5_acl_match_string(context, "foo foo", "s", "foo");
crypto/heimdal/lib/krb5/test_acl.c
56
ret = krb5_acl_match_string(context, "foo bar", "ss", "foo", "bar");
crypto/heimdal/lib/krb5/test_acl.c
58
ret = krb5_acl_match_string(context, "foo bar", "ss", "foo", "bar");
crypto/heimdal/lib/krb5/test_acl.c
60
ret = krb5_acl_match_string(context, "foo \tbar", "ss", "foo", "bar");
crypto/heimdal/lib/krb5/test_acl.c
62
ret = krb5_acl_match_string(context, "foo", "ss", "foo", "bar");
crypto/heimdal/lib/krb5/test_acl.c
64
ret = krb5_acl_match_string(context, "foo", "ss", "foo", "foo");
crypto/heimdal/lib/krb5/test_acl.c
66
ret = krb5_acl_match_string(context, "foo \t", "s", "foo");
crypto/heimdal/lib/krb5/test_acl.c
69
ret = krb5_acl_match_string(context, "foo/bar", "f", "foo/bar");
crypto/heimdal/lib/krb5/test_acl.c
71
ret = krb5_acl_match_string(context, "foo/bar", "f", "foo/*");
crypto/heimdal/lib/krb5/test_acl.c
73
ret = krb5_acl_match_string(context, "foo/bar.example.org", "f",
crypto/heimdal/lib/krb5/test_acl.c
76
ret = krb5_acl_match_string(context, "foo/bar.example.com", "f",
crypto/heimdal/lib/krb5/test_acl.c
80
ret = krb5_acl_match_string(context, "foo/bar/baz", "f", "foo/*/baz");
crypto/heimdal/lib/krb5/test_acl.c
83
ret = krb5_acl_match_string(context, "foo", "r", &s1);
crypto/heimdal/lib/krb5/test_acl.c
87
ret = krb5_acl_match_string(context, "foo bar", "rr", &s1, &s2);
crypto/heimdal/lib/krb5/test_acl.c
92
ret = krb5_acl_match_string(context, "foo bar", "sr", "bar", &s1);
crypto/heimdal/lib/krb5/test_acl.c
96
ret = krb5_acl_match_string(context, "foo", "l", "foo");