Searched refs:search (Results 1 - 25 of 195) sorted by relevance

12345678

/freebsd-current/lib/libc/stdlib/
H A Dhsearch.h29 #include <search.h>
H A Dhdestroy_r.c26 #include <search.h>
H A Dremque.c10 #include <search.h>
H A Dtfind.c4 * Tree search generalized from Knuth (6.2.2) Algorithm T just like
20 #include <search.h>
H A Dhcreate.c28 #include <search.h>
H A Dhcreate_r.c26 #include <search.h>
H A Dinsque.c10 #include <search.h>
/freebsd-current/contrib/byacc/
H A Dvmsbuild.com88 $ if f$search("SYS$SYSTEM:VAXC.EXE").nes.""
92 $ if f$search("SYS$SYSTEM:DECC$COMPILER.EXE").nes.""
122 $ if f$search("SYS$SYSTEM:MMS.EXE").eqs.""
154 $ if f$search("BYACC.com") .nes. "" then delete BYACC.com;*
155 $ if f$search("*.exe") .nes. "" then delete *.exe;*
159 $ if f$search("*.obj") .nes. "" then delete *.obj;*
160 $ if f$search("*.bak") .nes. "" then delete *.bak;*
161 $ if f$search("*.lis") .nes. "" then delete *.lis;*
162 $ if f$search("*.log") .nes. "" then delete *.log;*
163 $ if f$search("*
[all...]
/freebsd-current/usr.sbin/bluetooth/sdpcontrol/
H A DMakefile6 SRCS= sdpcontrol.c search.c
/freebsd-current/crypto/heimdal/lib/wind/
H A Drfc3454.py50 m = re.search('^ *----- End Table ([A-Z0-9\.]+) ----- *$', l)
56 if re.search('^ *----- Start Table ([A-Z0-9\.]+) ----- *$', l):
H A Dgen-punycode-examples.py68 m = re.search('^ *\([A-Z]\) *(.*)$', l);
73 m = re.search('^ *([uU]+.*) *$', l)
77 m = re.search('^ *Punycode: (.*) *$', l)
H A Dgen-bidi.py83 m = re.search('^ *([0-9A-F]+)-([0-9A-F]+) *$', l)
90 m = re.search('^ *([0-9A-F]+) *$', l)
/freebsd-current/usr.bin/what/
H A Dwhat.c39 static bool search(bool, bool, FILE *);
69 if (search(sflag, qflag, stdin))
82 if (search(sflag, qflag, in))
98 search(bool one, bool quiet, FILE *in) function
/freebsd-current/usr.bin/bintrans/
H A Dbintrans.c43 static int search(const char *const);
56 int coder = search(progname);
61 coder = search(argv[0]);
90 search(const char *const progname) function
/freebsd-current/contrib/googletest/googletest/test/
H A Dgtest_skip_check_output_test.py53 re.search(skip_fixture + '.*' + skip_fixture, OUTPUT, flags=re.DOTALL),
/freebsd-current/contrib/mtree/
H A Dgetid.c219 grscan(int search, gid_t gid, const char *name) argument
226 if (!search)
241 if (grmatchline(search, gid, name))
248 grmatchline(int search, gid_t gid, const char *name) argument
254 /* name may be NULL if search is nonzero */
259 if (search && name && strcmp(_gr_group.gr_name, name))
268 if (search && name == NULL && _gr_group.gr_gid != gid)
367 pwscan(int search, uid_t uid, const char *name) argument
374 if (!search)
389 if (pwmatchline(search, ui
396 pwmatchline(int search, uid_t uid, const char *name) argument
[all...]
/freebsd-current/libexec/rc/rc.d/
H A Dgrowfs137 search=$rootdev
139 search=$rawdev
142 diskdev=$(growfs_get_diskdev ${search})
182 echo "search is $search"
282 }' dev="$search" addswap="$addswap" swapsize="$swapsize" swaplim="$swaplim"
/freebsd-current/crypto/openssl/test/
H A Dossl_store_test.c43 OSSL_STORE_SEARCH *search = NULL; local
48 && TEST_ptr(search = OSSL_STORE_SEARCH_by_alias("nothing"))
53 && TEST_true(OSSL_STORE_find(sctx, search));
55 OSSL_STORE_SEARCH_free(search);
64 OSSL_STORE_SEARCH *search = NULL; local
66 ret = TEST_ptr_null(search = OSSL_STORE_SEARCH_by_key_fingerprint(
68 OSSL_STORE_SEARCH_free(search);
/freebsd-current/crypto/openssl/crypto/store/
H A Dstore_lib.c307 int OSSL_STORE_find(OSSL_STORE_CTX *ctx, const OSSL_STORE_SEARCH *search) argument
315 if (search == NULL) {
341 switch (search->search_type) {
343 if ((name_der_sz = i2d_X509_NAME(search->name,
351 if ((name_der_sz = i2d_X509_NAME(search->name,
353 && (number = ASN1_INTEGER_to_BN(search->serial, NULL)) != NULL
363 EVP_MD_get0_name(search->digest),
367 search->string,
368 search->stringlength))
373 (char *)search
853 OSSL_STORE_SEARCH *search = OPENSSL_zalloc(sizeof(*search)); local
868 OSSL_STORE_SEARCH *search = OPENSSL_zalloc(sizeof(*search)); local
885 OSSL_STORE_SEARCH *search = OPENSSL_zalloc(sizeof(*search)); local
910 OSSL_STORE_SEARCH *search = OPENSSL_zalloc(sizeof(*search)); local
924 OSSL_STORE_SEARCH_free(OSSL_STORE_SEARCH *search) argument
[all...]
/freebsd-current/contrib/mandoc/
H A Dmain.c129 struct mansearch search; /* Search options. */ local
130 struct manpage *res; /* Complete list of search results. */
186 memset(&search, 0, sizeof(struct mansearch));
187 search.outkey = "Nd";
191 search.argmode = ARG_NAME;
193 search.argmode = ARG_EXPR;
195 search.argmode = ARG_WORD;
197 search.argmode = ARG_NAME;
199 search.argmode = ARG_FILE;
219 if (c == 'i' && search
1072 struct mansearch search; local
[all...]
/freebsd-current/sbin/dhclient/tests/
H A DMakefile12 option-domain-search.c
/freebsd-current/libexec/mknetid/
H A Dparse_group.c98 grscan(int search, int gid) argument
123 if (search && _gr_group.gr_gid != gid)
/freebsd-current/sys/contrib/openzfs/cmd/zed/agents/
H A Dzfs_agents.c57 /* guid search data */
212 guid_search_t search = { 0 }; local
237 search.gs_vdev_guid = vdev_guid;
239 search.gs_devid = devid;
240 zpool_iter(g_zfs_hdl, zfs_agent_iter_pool, &search);
242 devid = search.gs_devid;
244 pool_guid = search.gs_pool_guid;
246 vdev_guid = search.gs_vdev_guid;
247 devtype = search.gs_vdev_type;
256 if (search
[all...]
/freebsd-current/contrib/bmake/unit-tests/
H A Dopt-m-include-dir.mk4 # search path for the .include <...> directive.
43 # search path for the .include <...> directive and then includes a
44 # single file from that search path.
46 # This option adds .tmp/sub to the search path for .include <...>.
49 # This option does not add any directory to the search path since the
/freebsd-current/tests/sys/netpfil/pf/
H A Dsctp.py295 assert re.search(r"all sctp 192.0.2.1:.*192.0.2.3:1234", states)
296 assert re.search(r"all sctp 192.0.2.1:.*192.0.2.2:1234", states)
342 assert re.search(r"all sctp 192.0.2.1:.*192.0.2.3:1234", states)
343 assert re.search(r"all sctp 192.0.2.10:.*192.0.2.3:1234", states)
361 assert re.search(r"all sctp 192.0.2.1:.*192.0.2.3:1234.*SHUTDOWN", states)
390 assert re.search(r".*sctp 192.0.2.1:.*192.0.2.3:1234", states)
391 assert re.search(r"all sctp 192.0.2.1:.*192.0.2.2:1234", states)
392 assert re.search(r".*sctp 192.0.2.4:.*192.0.2.3:1234", states)
393 assert re.search(r"all sctp 192.0.2.4:.*192.0.2.2:1234", states)
444 assert re.search(
[all...]

Completed in 175 milliseconds

12345678