/src/usr.bin/what/ |
what.c | 55 static void search(void); 93 search(); 101 search(void) function in typeref:typename:void
|
/src/sys/dev/ |
radio_if.h | 48 int (*search)(void *, int); member in struct:radio_hw_if
|
/src/games/rogue/ |
trap.c | 230 search(short n, boolean is_auto) function in typeref:typename:void
|
/src/tests/lib/libc/string/ |
t_memmem.c | 115 char *search = src + pg - i; local in function:ATF_TC_BODY 117 search[-1] = str[0]; 118 search[0] = str[0]; 119 search[1] = str[0]; 121 ATF_CHECK(memmem(search, i, match, i) != search);
|
/src/distrib/utils/more/ |
prim.c | 607 * Search for the n-th occurrence of a specified pattern, 611 search(search_forward, pattern, n, wantmatch) function 636 * For a caseless search, convert any uppercase in the pattern to 703 * Figure out where to start the search. 715 * Backward search: start just before the top line 731 error("Nothing to search"); 745 * A signal aborts the search. 789 * If this is a caseless search, convert uppercase in the
|
/src/sys/dev/onewire/ |
onewire.c | 397 int search = 1, count = 0, present; local in function:onewire_scan 411 while (search && count++ < onewire_maxdevs) { 414 * there's no presence pulse don't search for any devices. 427 * Start new search. Go through the previous path to 432 search = 0; 448 search = 1;
|
/src/sys/external/bsd/drm2/linux/ |
linux_idr.c | 341 struct idr_node *node, *search, *collision __diagused; local in function:idr_alloc 364 search = rb_tree_find_node_geq(&idr->idr_tree, &start); 365 while ((search != NULL) && (search->in_index == id)) { 370 search = rb_tree_iterate(&idr->idr_tree, search, RB_DIR_RIGHT);
|
/src/sys/netinet6/ |
nd6.h | 142 struct nd_opt_hdr *search; /* multiple opts */ member in struct:nd_opts::__anonefb13b950108 155 #define nd_opts_search nd_opt_each.search
|
/src/usr.sbin/isibootd/ |
isibootd.c | 108 static struct session *search(uint8_t *); 208 cp = search(fp->src); 278 search(uint8_t *client) function in typeref:struct:session *
|
/src/bin/ksh/ |
exec.c | 480 * before we can do a path search (in case the assignments change 487 * PATH=... foobar use new PATH in foobar search 759 shellv = search(shellv, path, X_OK, (int *) 0); 785 * Search function tables for a function. If create set, a table entry 905 /* prevent FPATH search below */ 907 goto Search; 911 * POSIX regular builtins, then search path... 922 tp->u.fpath = search(name, fpath, R_OK, 931 * the search() function. Tracked aliases should be 949 Search 1044 search(name, pathx, mode, errnop) function [all...] |
/src/bin/csh/ |
func.c | 64 static void search(int, int, Char *); 97 * Binary search Bp1 is the beginning of the current search range. Bp2 is 274 search(T_IF, 0, NULL); 309 search(T_ELSE, 0, NULL); 332 search(T_BREAK, 0, NULL); 337 search(T_GOTO, 0, lab); 358 search(T_SWITCH, 0, lp = globone(cp, G_ERROR)); 488 search(T_BREAK, 0, NULL); /* read the expression in */ 562 search(T_BRKSW, 0, NULL) 593 search(int type, int level, Char *goal) function in typeref:typename:void [all...] |
/src/sys/sys/ |
device.h | 472 cfsearch_t search; /* search function (indirect config) */ member in struct:cfargs
|
/src/sbin/resize_ffs/ |
resize_ffs.c | 81 static int search[] = SBLOCKSEARCH; variable in typeref:typename:int[] 2227 for (where = search[i = 0]; search[i] != -1; where = search[++i]) {
|
/src/sys/kern/ |
subr_autoconf.c | 178 cfsearch_t search; /* search function (indirect config) */ member in union:cfargs_internal::__anon55c02845010a 1066 * an external caller, usually an indirect config "search" routine. 1107 * submatch and search are mutually-exclusive. 1109 if (cfargs->submatch != NULL && cfargs->search != NULL) { 1110 panic("cfargs_canonicalize: submatch and search are " 1115 } else if (cfargs->search != NULL) { 1116 args->search = cfargs->search; 2242 * after parents, we only need to search the latter part o [all...] |
/src/lib/libedit/ |
readline.c | 389 el_set(e, EL_BIND, "^R", "em-inc-search-prev", NULL); 567 static char *last_search_pat; /* last !?pat[?] search pattern */ 659 /* restore to end of list on failed search */ 687 getfrom(const char **cmdp, char **fromp, const char *search, int delim) 720 if (search) { 721 *fromp = strdup(search); 817 char *tmp, *search = NULL, *aptr, delim; local in function:_history_expand_command 961 if ((ev = getfrom(&cmd, &from, search, delim)) != 1) 1824 * search for event in history containing str, starting at offset 1879 * (usually '~'); state resets search from start (??? should we do that anyway [all...] |