Home
last modified time | relevance | path

Searched refs:srch (Results 1 – 16 of 16) sorted by relevance

/freebsd/usr.bin/localedef/
H A Dcharmap.c253 charmap_t srch; in add_charmap_impl() local
256 srch.wc = wc; in add_charmap_impl()
257 srch.name = sym; in add_charmap_impl()
263 if ((wc != (wchar_t)-1) && ((RB_FIND(cmap_wc, &cmap_wc, &srch)) == NULL)) { in add_charmap_impl()
273 if (RB_FIND(cmap_sym, &cmap_sym, &srch) != NULL) { in add_charmap_impl()
299 charmap_t srch; in add_charmap_undefined() local
302 srch.name = sym; in add_charmap_undefined()
303 cm = RB_FIND(cmap_sym, &cmap_sym, &srch); in add_charmap_undefined()
375 charmap_t srch; in lookup_charmap() local
378 srch.name = sym; in lookup_charmap()
[all …]
H A Dcollate.c518 collsym_t srch; in lookup_collsym() local
520 srch.name = name; in lookup_collsym()
521 return (RB_FIND(collsyms, &collsyms, &srch)); in lookup_collsym()
527 collelem_t srch; in lookup_collelem() local
529 srch.symbol = symbol; in lookup_collelem()
530 return (RB_FIND(elem_by_symbol, &elem_by_symbol, &srch)); in lookup_collelem()
536 collundef_t srch; in get_collundef() local
540 srch.name = name; in get_collundef()
541 if ((ud = RB_FIND(collundefs, &collundefs, &srch)) == NULL) { in get_collundef()
560 collchar_t srch; in get_collchar() local
[all …]
H A Dctype.c178 ctype_node_t srch; in get_ctype() local
181 srch.wc = wc; in get_ctype()
182 if ((ctn = RB_FIND(ctypes, &ctypes, &srch)) == NULL) { in get_ctype()
/freebsd/crypto/openssl/test/recipes/
H A D03-test_fipsinstall.t40 my ($infile, $srch, $repl, $outfile) = @_;
47 $msg =~ s/$srch/$repl/;
63 my $srch = qr/$key\s*=\s*\S*\n/;
70 return replace_line_file_internal('fips.cnf', $srch, $rep, $outfile);
80 my $srch = qr/fipsmodule.cnf/;
83 $srch, $rep, $outfile);
/freebsd/crypto/openssl/crypto/
H A Dcpuid.c80 static variant_char *ossl_strchr(const variant_char *str, char srch) in ossl_strchr() argument
84 if (c == srch) in ossl_strchr()
/freebsd/contrib/sendmail/src/
H A Dheaders.c701 HDR *h, *srch, *last = NULL; local
707 for (srch = e->e_header; srch != NULL && idx > 0;
708 srch = srch->h_link, idx--)
709 last = srch;
716 else if (srch == NULL)
724 h->h_link = srch->h_link;
725 srch->h_link = h;
/freebsd/contrib/libucl/src/
H A Ducl_util.c2650 ucl_object_t srch; local
2656 srch.key = key;
2657 srch.keylen = klen;
2658 ret = ucl_hash_search_obj (obj->value.ov, &srch);
3888 const ucl_object_t *srch) argument
3890 if (comments && srch) {
3891 return ucl_object_lookup_len (comments, (const char *)&srch,
/freebsd/sbin/dhclient/
H A Ddhclient.c141 int check_search(const char *srch);
2747 check_search(const char *srch) in check_search() argument
2749 int pch = PERIOD, ch = *srch++; in check_search()
2753 if (strlen(srch) > 256) in check_search()
2757 ch = *srch++; in check_search()
2760 int nch = *srch++; in check_search()
2778 nch = *srch++; in check_search()
/freebsd/contrib/libucl/include/
H A Ducl.h1268 const ucl_object_t *srch);
/freebsd/sys/contrib/openzfs/module/zfs/
H A Ddsl_scan.c1458 scan_ds_t srch, *sds; in scan_ds_queue_contains() local
1460 srch.sds_dsobj = dsobj; in scan_ds_queue_contains()
1461 sds = avl_find(&scn->scn_queue, &srch, NULL); in scan_ds_queue_contains()
1484 scan_ds_t srch, *sds; in scan_ds_queue_remove() local
1486 srch.sds_dsobj = dsobj; in scan_ds_queue_remove()
1488 sds = avl_find(&scn->scn_queue, &srch, NULL); in scan_ds_queue_remove()
/freebsd/contrib/tcsh/
H A Dsh.h981 extern struct srch { struct
H A Dsh.init.c183 struct srch srchn[] = {
H A Dsh.func.c707 struct srch *sp, *sp1, *sp2; in srchx()
736 struct srch *sp, *sp2; in isrchx()
/freebsd/sys/contrib/openzfs/lib/libzfs/
H A Dlibzfs_dataset.c907 struct mnttab srch = { 0 }; in libzfs_mnttab_find() local
915 srch.mnt_special = (char *)fsname; in libzfs_mnttab_find()
916 srch.mnt_fstype = (char *)MNTTYPE_ZFS; in libzfs_mnttab_find()
917 ret = getmntany(mnttab, entry, &srch) ? ENOENT : 0; in libzfs_mnttab_find()
/freebsd/sys/dev/mpt/
H A Dmpt_cam.c4528 struct ccb_hdr *srch; in mpt_abort_target_ccb() local
4549 STAILQ_FOREACH(srch, lp, sim_links.stqe) { in mpt_abort_target_ccb()
4550 if (srch != &accb->ccb_h) in mpt_abort_target_ccb()
4552 STAILQ_REMOVE(lp, srch, ccb_hdr, sim_links.stqe); in mpt_abort_target_ccb()
/freebsd/sbin/pfctl/
H A Dparse.y5545 expand_label_str(char *label, size_t len, const char *srch, const char *repl) in expand_label_str() argument
5553 while ((q = strstr(p, srch)) != NULL) { in expand_label_str()
5558 q += strlen(srch); in expand_label_str()