Symbol: search
crypto/heimdal/lib/hx509/ks_keychain.c
513
SecKeychainSearchRef search;
crypto/heimdal/lib/hx509/ks_keychain.c
527
&search);
crypto/heimdal/lib/hx509/ks_keychain.c
533
ret = SecKeychainSearchCopyNext(search, &itemRef);
crypto/heimdal/lib/hx509/ks_keychain.c
534
CFRelease(search);
crypto/openssl/apps/storeutl.c
20
int expected, int criterion, OSSL_STORE_SEARCH *search,
crypto/openssl/apps/storeutl.c
280
if ((search = OSSL_STORE_SEARCH_by_name(subject)) == NULL) {
crypto/openssl/apps/storeutl.c
292
if ((search = OSSL_STORE_SEARCH_by_issuer_serial(issuer, serial))
crypto/openssl/apps/storeutl.c
299
if ((search = OSSL_STORE_SEARCH_by_key_fingerprint(digest,
crypto/openssl/apps/storeutl.c
308
if ((search = OSSL_STORE_SEARCH_by_alias(alias)) == NULL) {
crypto/openssl/apps/storeutl.c
324
expected, criterion, search,
crypto/openssl/apps/storeutl.c
334
OSSL_STORE_SEARCH_free(search);
crypto/openssl/apps/storeutl.c
363
int expected, int criterion, OSSL_STORE_SEARCH *search,
crypto/openssl/apps/storeutl.c
393
if (!OSSL_STORE_find(store_ctx, search)) {
crypto/openssl/apps/storeutl.c
459
expected, criterion, search,
crypto/openssl/apps/storeutl.c
97
OSSL_STORE_SEARCH *search = NULL;
crypto/openssl/crypto/store/store_lib.c
324
int OSSL_STORE_find(OSSL_STORE_CTX *ctx, const OSSL_STORE_SEARCH *search)
crypto/openssl/crypto/store/store_lib.c
332
if (search == NULL) {
crypto/openssl/crypto/store/store_lib.c
358
switch (search->search_type) {
crypto/openssl/crypto/store/store_lib.c
360
if ((name_der_sz = i2d_X509_NAME(search->name,
crypto/openssl/crypto/store/store_lib.c
369
if ((name_der_sz = i2d_X509_NAME(search->name,
crypto/openssl/crypto/store/store_lib.c
372
&& (number = ASN1_INTEGER_to_BN(search->serial, NULL)) != NULL
crypto/openssl/crypto/store/store_lib.c
382
EVP_MD_get0_name(search->digest),
crypto/openssl/crypto/store/store_lib.c
386
search->string,
crypto/openssl/crypto/store/store_lib.c
387
search->stringlength))
crypto/openssl/crypto/store/store_lib.c
392
(char *)search->string,
crypto/openssl/crypto/store/store_lib.c
393
search->stringlength))
crypto/openssl/crypto/store/store_lib.c
413
ret = ctx->loader->find(ctx->loader_ctx, search);
crypto/openssl/crypto/store/store_lib.c
917
OSSL_STORE_SEARCH *search = OPENSSL_zalloc(sizeof(*search));
crypto/openssl/crypto/store/store_lib.c
919
if (search == NULL)
crypto/openssl/crypto/store/store_lib.c
922
search->search_type = OSSL_STORE_SEARCH_BY_NAME;
crypto/openssl/crypto/store/store_lib.c
923
search->name = name;
crypto/openssl/crypto/store/store_lib.c
924
return search;
crypto/openssl/crypto/store/store_lib.c
930
OSSL_STORE_SEARCH *search = OPENSSL_zalloc(sizeof(*search));
crypto/openssl/crypto/store/store_lib.c
932
if (search == NULL)
crypto/openssl/crypto/store/store_lib.c
935
search->search_type = OSSL_STORE_SEARCH_BY_ISSUER_SERIAL;
crypto/openssl/crypto/store/store_lib.c
936
search->name = name;
crypto/openssl/crypto/store/store_lib.c
937
search->serial = serial;
crypto/openssl/crypto/store/store_lib.c
938
return search;
crypto/openssl/crypto/store/store_lib.c
946
OSSL_STORE_SEARCH *search = OPENSSL_zalloc(sizeof(*search));
crypto/openssl/crypto/store/store_lib.c
949
if (search == NULL)
crypto/openssl/crypto/store/store_lib.c
954
OPENSSL_free(search);
crypto/openssl/crypto/store/store_lib.c
963
OPENSSL_free(search);
crypto/openssl/crypto/store/store_lib.c
967
search->search_type = OSSL_STORE_SEARCH_BY_KEY_FINGERPRINT;
crypto/openssl/crypto/store/store_lib.c
968
search->digest = digest;
crypto/openssl/crypto/store/store_lib.c
969
search->string = bytes;
crypto/openssl/crypto/store/store_lib.c
970
search->stringlength = len;
crypto/openssl/crypto/store/store_lib.c
971
return search;
crypto/openssl/crypto/store/store_lib.c
976
OSSL_STORE_SEARCH *search = OPENSSL_zalloc(sizeof(*search));
crypto/openssl/crypto/store/store_lib.c
978
if (search == NULL)
crypto/openssl/crypto/store/store_lib.c
981
search->search_type = OSSL_STORE_SEARCH_BY_ALIAS;
crypto/openssl/crypto/store/store_lib.c
982
search->string = (const unsigned char *)alias;
crypto/openssl/crypto/store/store_lib.c
983
search->stringlength = strlen(alias);
crypto/openssl/crypto/store/store_lib.c
984
return search;
crypto/openssl/crypto/store/store_lib.c
988
void OSSL_STORE_SEARCH_free(OSSL_STORE_SEARCH *search)
crypto/openssl/crypto/store/store_lib.c
990
OPENSSL_free(search);
crypto/openssl/crypto/x509/x509_vfy.c
3287
unsigned int search;
crypto/openssl/crypto/x509/x509_vfy.c
3311
search = ctx->untrusted != NULL ? S_DOUNTRUSTED : 0;
crypto/openssl/crypto/x509/x509_vfy.c
3313
if (search == 0 || (ctx->param->flags & X509_V_FLAG_TRUSTED_FIRST) != 0)
crypto/openssl/crypto/x509/x509_vfy.c
3314
search |= S_DOTRUSTED;
crypto/openssl/crypto/x509/x509_vfy.c
3360
while (search != 0) {
crypto/openssl/crypto/x509/x509_vfy.c
3379
if ((search & S_DOTRUSTED) != 0) {
crypto/openssl/crypto/x509/x509_vfy.c
3381
if ((search & S_DOALTERNATE) != 0) {
crypto/openssl/crypto/x509/x509_vfy.c
3431
if ((search & S_DOALTERNATE) != 0) {
crypto/openssl/crypto/x509/x509_vfy.c
3436
search &= ~S_DOALTERNATE;
crypto/openssl/crypto/x509/x509_vfy.c
3497
search &= ~S_DOUNTRUSTED;
crypto/openssl/crypto/x509/x509_vfy.c
3512
if ((search & S_DOUNTRUSTED) == 0) {
crypto/openssl/crypto/x509/x509_vfy.c
3514
if ((search & S_DOALTERNATE) != 0 && --alt_untrusted > 0)
crypto/openssl/crypto/x509/x509_vfy.c
3517
if (!may_alternate || (search & S_DOALTERNATE) != 0 || ctx->num_untrusted < 2)
crypto/openssl/crypto/x509/x509_vfy.c
3520
search |= S_DOALTERNATE;
crypto/openssl/crypto/x509/x509_vfy.c
3528
if ((search & S_DOUNTRUSTED) != 0) {
crypto/openssl/crypto/x509/x509_vfy.c
3540
search &= ~S_DOUNTRUSTED;
crypto/openssl/crypto/x509/x509_vfy.c
3542
search |= S_DOTRUSTED;
crypto/openssl/engines/e_loader_attic.c
1128
const OSSL_STORE_SEARCH *search)
crypto/openssl/engines/e_loader_attic.c
1135
if (OSSL_STORE_SEARCH_get_type(search) == OSSL_STORE_SEARCH_BY_NAME) {
crypto/openssl/engines/e_loader_attic.c
1146
hash = X509_NAME_hash_ex(OSSL_STORE_SEARCH_get0_name(search),
crypto/openssl/include/openssl/store.h
237
void OSSL_STORE_SEARCH_free(OSSL_STORE_SEARCH *search);
crypto/openssl/include/openssl/store.h
255
int OSSL_STORE_find(OSSL_STORE_CTX *ctx, const OSSL_STORE_SEARCH *search);
crypto/openssl/test/ossl_store_test.c
102
OSSL_STORE_SEARCH *search = NULL;
crypto/openssl/test/ossl_store_test.c
114
&& TEST_ptr(search = OSSL_STORE_SEARCH_by_name(X509_get_issuer_name(testcert)))
crypto/openssl/test/ossl_store_test.c
119
&& TEST_true(OSSL_STORE_find(sctx, search))
crypto/openssl/test/ossl_store_test.c
123
OSSL_STORE_SEARCH_free(search);
crypto/openssl/test/ossl_store_test.c
133
OSSL_STORE_SEARCH *search = NULL;
crypto/openssl/test/ossl_store_test.c
135
ret = TEST_ptr_null(search = OSSL_STORE_SEARCH_by_key_fingerprint(
crypto/openssl/test/ossl_store_test.c
137
OSSL_STORE_SEARCH_free(search);
crypto/openssl/test/ossl_store_test.c
43
OSSL_STORE_SEARCH *search = NULL;
crypto/openssl/test/ossl_store_test.c
48
&& TEST_ptr(search = OSSL_STORE_SEARCH_by_alias("nothing"))
crypto/openssl/test/ossl_store_test.c
53
&& TEST_true(OSSL_STORE_find(sctx, search));
crypto/openssl/test/ossl_store_test.c
55
OSSL_STORE_SEARCH_free(search);
libexec/mknetid/parse_group.c
123
if (search && _gr_group.gr_gid != gid)
libexec/mknetid/parse_group.c
98
grscan(int search, int gid)
sbin/routed/radix.c
401
rn_addmask(void *n_arg, int search, int skip)
sbin/routed/radix.c
438
if (x || search)
sbin/routed/radix.c
54
static struct radix_node *rn_addmask(void *n_arg, int search, int skip);
sys/cam/scsi/scsi_sg.c
817
search:
sys/cam/scsi/scsi_sg.c
825
goto search;
sys/geom/raid/md_intel.c
1515
goto search;
sys/geom/raid/md_intel.c
1538
search:
sys/geom/raid/md_jmicron.c
852
goto search;
sys/geom/raid/md_jmicron.c
875
search:
sys/geom/raid/md_nvidia.c
857
goto search;
sys/geom/raid/md_nvidia.c
872
search:
sys/geom/raid/md_promise.c
1125
goto search;
sys/geom/raid/md_promise.c
1153
search:
sys/geom/raid/md_sii.c
946
goto search;
sys/geom/raid/md_sii.c
968
search:
sys/kern/kern_cpu.c
741
struct cf_level *level, *search;
sys/kern/kern_cpu.c
764
TAILQ_FOREACH_REVERSE(search, list, cf_level_lst, link)
sys/kern/kern_cpu.c
765
if (sets[i].freq <= search->total_set.freq) {
sys/kern/kern_cpu.c
767
sets[i].freq, search->total_set.freq);
sys/kern/kern_cpu.c
768
TAILQ_INSERT_AFTER(list, search, level, link);
sys/kern/kern_cpu.c
774
TAILQ_FOREACH(search, list, link)
sys/kern/kern_cpu.c
775
if (sets[i].freq >= search->total_set.freq) {
sys/kern/kern_cpu.c
777
sets[i].freq, search->total_set.freq);
sys/kern/kern_cpu.c
778
TAILQ_INSERT_BEFORE(search, level, link);
sys/kern/kern_cpu.c
793
struct cf_level *fill, *search;
sys/kern/kern_cpu.c
807
TAILQ_FOREACH_REVERSE(search, &sc->all_levels, cf_level_lst, link) {
sys/kern/kern_cpu.c
816
fill = search;
sys/kern/kern_cpu.c
818
fill = cpufreq_dup_set(sc, search, set);
sys/net/if_lagg.c
2347
goto search;
sys/net/if_lagg.c
2358
search:
sys/net/radix.c
498
rn_addmask(const void *n_arg, struct radix_mask_head *maskhead, int search, int skip)
sys/net/radix.c
532
if (x || search)
sys/netinet6/nd6.h
308
struct nd_opt_hdr *search; /* multiple opts */
sys/netinet6/nd6.h
321
#define nd_opts_search nd_opt_each.search
sys/netinet6/nd6_rtr.c
1226
struct nd_prefix *search;
sys/netinet6/nd6_rtr.c
1230
LIST_FOREACH(search, &V_nd_prefix, ndpr_entry) {
sys/netinet6/nd6_rtr.c
1231
if (key->ndpr_ifp == search->ndpr_ifp &&
sys/netinet6/nd6_rtr.c
1232
key->ndpr_plen == search->ndpr_plen &&
sys/netinet6/nd6_rtr.c
1234
&search->ndpr_prefix.sin6_addr, key->ndpr_plen)) {
sys/netinet6/nd6_rtr.c
1235
nd6_prefix_ref(search);
sys/netinet6/nd6_rtr.c
1239
return (search);
sys/netinet6/nd6_rtr.c
1245
struct nd_prefix *search;
sys/netinet6/nd6_rtr.c
1248
search = nd6_prefix_lookup_locked(key);
sys/netinet6/nd6_rtr.c
1250
return (search);
sys/netinet6/nd6_rtr.c
537
struct nd_pfxrouter *search;
sys/netinet6/nd6_rtr.c
541
LIST_FOREACH(search, &pr->ndpr_advrtrs, pfr_entry) {
sys/netinet6/nd6_rtr.c
542
if (search->router == dr)
sys/netinet6/nd6_rtr.c
545
return (search);
sys/security/mac_veriexec/veriexec_metadata.c
310
search:
sys/security/mac_veriexec/veriexec_metadata.c
338
goto search;
sys/security/mac_veriexec/veriexec_metadata.c
661
search:
sys/security/mac_veriexec/veriexec_metadata.c
725
goto search;
sys/security/mac_veriexec/veriexec_metadata.c
779
struct veriexec_devhead *search[3];
sys/security/mac_veriexec/veriexec_metadata.c
785
search[0] = &veriexec_file_dev_head;
sys/security/mac_veriexec/veriexec_metadata.c
786
search[1] = &veriexec_dev_head;
sys/security/mac_veriexec/veriexec_metadata.c
788
search[0] = &veriexec_dev_head;
sys/security/mac_veriexec/veriexec_metadata.c
789
search[1] = &veriexec_file_dev_head;
sys/security/mac_veriexec/veriexec_metadata.c
791
search[2] = NULL;
sys/security/mac_veriexec/veriexec_metadata.c
797
for (ip = NULL, x = 0; ip == NULL && search[x]; x++)
sys/security/mac_veriexec/veriexec_metadata.c
798
ip = get_veriexec_file(search[x], fsid, fileid, gen, found_dev);
usr.bin/bintrans/bintrans.c
43
static int search(const char *const);
usr.bin/bintrans/bintrans.c
56
int coder = search(progname);
usr.bin/bintrans/bintrans.c
61
coder = search(argv[0]);
usr.bin/bsdiff/bsdiff/bsdiff.c
210
len=search(I,old,oldsize,new+scan,newsize-scan,
usr.bin/bsdiff/bsdiff/bsdiff.c
83
return search(I,old,oldsize,new,newsize,x,en,pos);
usr.bin/bsdiff/bsdiff/bsdiff.c
85
return search(I,old,oldsize,new,newsize,st,x,pos);
usr.bin/diff/diffreg.c
193
static int search(int *, int, int);
usr.bin/diff/diffreg.c
664
l = search(c, k, y);
usr.bin/grep/util.c
443
const char *search;
usr.bin/grep/util.c
459
search = (subject + ofs);
usr.bin/grep/util.c
460
if ((unsigned long)pat->len > strlen(search))
usr.bin/grep/util.c
462
sub = strstr_fn(search, pat->pat);
usr.bin/grep/util.c
472
pmatch[idx].rm_so = ofs + (sub - search);
usr.bin/what/what.c
39
static bool search(bool, bool, FILE *);
usr.bin/what/what.c
69
if (search(sflag, qflag, stdin))
usr.bin/what/what.c
82
if (search(sflag, qflag, in))
usr.sbin/arp/arp.c
699
return (search(addr.s_addr, print_entry));
usr.sbin/arp/arp.c
723
search(addr.s_addr, nuke_entry);
usr.sbin/ypldap/aldap.c
299
&m->body.search.attrs) != 0)
usr.sbin/ypldap/aldap.c
431
if (msg->body.search.attrs == NULL)
usr.sbin/ypldap/aldap.c
434
for (i = 0, a = msg->body.search.attrs;
usr.sbin/ypldap/aldap.c
449
if (msg->body.search.attrs == NULL)
usr.sbin/ypldap/aldap.c
452
if (ber_scanf_elements(msg->body.search.attrs, "{s(e)}e",
usr.sbin/ypldap/aldap.c
456
msg->body.search.iter = msg->body.search.attrs->be_next;
usr.sbin/ypldap/aldap.c
478
if (msg->body.search.iter == NULL)
usr.sbin/ypldap/aldap.c
481
LDAP_DEBUG("attr", msg->body.search.iter);
usr.sbin/ypldap/aldap.c
483
if (ber_get_eoc(msg->body.search.iter) == 0)
usr.sbin/ypldap/aldap.c
486
if (ber_scanf_elements(msg->body.search.iter, "{s(e)}e", &key, &a, &b)
usr.sbin/ypldap/aldap.c
490
msg->body.search.iter = msg->body.search.iter->be_next;
usr.sbin/ypldap/aldap.c
513
if (msg->body.search.attrs == NULL)
usr.sbin/ypldap/aldap.c
516
LDAP_DEBUG("attr", msg->body.search.attrs);
usr.sbin/ypldap/aldap.c
518
for (a = msg->body.search.attrs;;) {
usr.sbin/ypldap/aldap.h
63
} search;