HomeSort by: relevance | last modified time | path
    Searched defs:which (Results 1 - 25 of 284) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/apache2/llvm/dist/llvm/utils/gn/build/
write_vcsrevision.py 17 def which(program): function
18 # distutils.spawn.which() doesn't find .bat files,
42 git, use_shell = which('git'), False
43 if not git: git = which('git.exe')
44 if not git: git, use_shell = which('git.bat'), True
  /src/external/bsd/ipf/dist/lib/
getnattype.c 26 char *which; local
34 which = "MAP";
37 which = "MAP-BLOCK";
40 which = "RDR";
43 which = "RWR-MAP";
46 which = "RWR-RDR";
49 which = "BIMAP";
52 which = "DIV-RDR";
55 which = "DIV-MAP";
58 which = "ENC-RDR"
    [all...]
  /src/sys/compat/common/
kern_resource_43.c 71 syscallarg(int) which;
75 int which = SCARG(uap, which); local
78 if ((u_int)which >= RLIM_NLIMITS)
81 olim.rlim_cur = p->p_rlimit[which].rlim_cur;
84 olim.rlim_max = p->p_rlimit[which].rlim_max;
95 syscallarg(int) which;
98 int which = SCARG(uap, which); local
108 return (dosetrlimit(l, l->l_proc, which, &lim))
    [all...]
  /src/external/apache2/llvm/dist/clang/utils/analyzer/
SATestUtils.py 9 def which(command: str, paths: Optional[str] = None) -> Optional[str]: function
10 """which(command, [paths]) - Look up the given command in the paths string
  /src/sys/compat/linux32/common/
linux32_resource.c 80 syscallarg(int) which;
84 int which; local
86 which = linux_to_bsd_limit(SCARG(uap, which));
87 if (which < 0)
88 return -which;
91 bsd_to_linux_rlimit(&orl, &l->l_proc->p_rlimit[which]);
100 syscallarg(int) which;
106 int which; local
111 which = linux_to_bsd_limit(SCARG(uap, which))
137 int which; local
    [all...]
  /src/sys/compat/netbsd32/
netbsd32_rlimit.c 49 fixlimit(int which, struct rlimit *alim)
51 switch (which) {
74 syscallarg(int) which;
77 int which = SCARG(uap, which); local
80 if ((u_int)which >= RLIM_NLIMITS)
83 alim = l->l_proc->p_rlimit[which];
85 fixlimit(which, &alim);
95 syscallarg(int) which;
98 int which = SCARG(uap, which) local
    [all...]
  /src/tests/lib/libpthread/
t_barrier.c 52 int which = (int)(long)arg; local
55 printf("thread %d entering barrier\n", which);
57 printf("thread %d leaving barrier -> %d\n", which, rv);
  /src/usr.bin/renice/
renice.c 60 * or groups of processes which are already
66 int which = PRIO_PROCESS; local
84 which = PRIO_PGRP;
88 which = PRIO_USER;
92 which = PRIO_PROCESS;
95 if (which == PRIO_USER) {
117 errs += donice(which, who, prio, incr);
145 donice(int which, id_t who, int prio, int incr)
150 if ((oldprio = getpriority(which, who)) == -1 && errno != 0) {
163 if (setpriority(which, who, prio) == -1)
    [all...]
  /src/usr.bin/whereis/
whereis.c 66 int which = strcmp(getprogname(), "which") == 0; local
67 int useenvpath = which, found = 0;
80 which = 0;
124 if (which)
149 if (which)
  /src/external/bsd/nvi/dist/vi/
v_mark.c 34 enum which {BQMARK, FQMARK}; enum
35 static int mark __P((SCR *, VICMD *, int, enum which));
111 mark(SCR *sp, VICMD *vp, int getmark, enum which cmd)
197 * motions match search motions, which is probably A Good Thing.
v_word.c 76 enum which {BIGWORD, LITTLEWORD}; enum
78 static int bword __P((SCR *, VICMD *, enum which));
79 static int eword __P((SCR *, VICMD *, enum which));
80 static int fword __P((SCR *, VICMD *, enum which));
111 fword(SCR *sp, VICMD *vp, enum which type)
127 * Else, move to the first non-white-space character, which
278 eword(SCR *sp, VICMD *vp, enum which type)
431 bword(SCR *sp, VICMD *vp, enum which type)
  /src/external/gpl3/gdb/dist/readline/readline/examples/
histexamp.c 110 int which; local
111 if ((sscanf (line + 6, "%d", &which)) == 1)
113 HIST_ENTRY *entry = remove_history (which);
115 fprintf (stderr, "No such entry %d\n", which);
  /src/external/gpl3/gdb.old/dist/readline/readline/examples/
histexamp.c 110 int which; local
111 if ((sscanf (line + 6, "%d", &which)) == 1)
113 HIST_ENTRY *entry = remove_history (which);
115 fprintf (stderr, "No such entry %d\n", which);
  /src/sys/arch/x68k/dev/
scsirom.c 77 int which; local
81 which = INTERNAL;
83 which = EXTERNAL;
98 if (memcmp(buf, scsirom_descr[which].id, 6) == 0)
99 r = which;
  /src/sys/kern/
subr_exec_fd.c 92 char closed[CHECK_UPTO * 3 + 1], which[3 + 1]; local
104 snprintf(which, sizeof(which), ",%d", i);
105 strlcat(closed, which, sizeof(closed));
  /src/usr.sbin/sysinst/
txtwalk.c 104 size_t which; /* Which pattern we are using */ local
109 for (which = 0; which < numthese; which++) {
110 patlen = strlen(these[which].head);
113 if (strncmp(these[which].head, line, patlen) == 0) {
114 error = process(&these[which], line);
  /src/external/bsd/nvi/dist/ex/
ex_append.c 33 enum which {APPEND, CHANGE, INSERT}; enum
35 static int ex_aci __P((SCR *, EXCMD *, enum which));
80 ex_aci(SCR *sp, EXCMD *cmdp, enum which cmd)
101 * Set the address to which we'll append. We set sp->lno to this
151 * inserted. There may also be a leading delimiter, which is ignored
ex_shift.c 33 enum which {LEFT, RIGHT}; enum
34 static int shift __P((SCR *, EXCMD *, enum which));
64 shift(SCR *sp, EXCMD *cmdp, enum which rl)
  /src/external/mpl/bind/dist/tests/dns/
rdatasetstats_test.c 37 dns_rdatastatstype_t which; local
41 which = DNS_RDATASTATSTYPE_VALUE(type, attributes);
42 dns_rdatasetstats_increment(stats, which);
45 which = DNS_RDATASTATSTYPE_VALUE(type, attributes);
46 dns_rdatasetstats_increment(stats, which);
51 dns_rdatastatstype_t which; local
55 which = DNS_RDATASTATSTYPE_VALUE(0, attributes);
56 dns_rdatasetstats_increment(stats, which);
61 dns_rdatastatstype_t which; local
65 which = DNS_RDATASTATSTYPE_VALUE(type, attributes)
83 dns_rdatastatstype_t which; local
    [all...]
  /src/bin/ksh/
c_ulimit.c 56 enum { RLIMIT, ULIMIT } which; member in struct:limits
203 if (l->which == RLIMIT) {
236 if (l->which == RLIMIT) {
  /src/sys/arch/mac68k/obio/
if_mc_obio.c 266 u_int32_t bufsleft, which; local
273 while ((which = psc_reg4(0x804)) != psc_reg4(0x804))
275 if ((which & 0x60000000) == 0)
  /src/tests/kernel/kqueue/
t_timer.c 310 do_test_timer_units(const char *which, uint32_t fflag, int64_t data)
327 "units '%s' failed", which); local
  /src/external/apache2/llvm/dist/libcxx/utils/libcxx/
util.py 100 def which(command, paths = None): function
101 """which(command, [paths]) - Look up the given command in the paths string
159 # Ignore EEXIST, which may occur during a race condition.
250 using the psutil module which provides a simple platform
  /src/external/apache2/llvm/dist/llvm/utils/lit/lit/
util.py 99 """Return the parameter as type which supports unicode, possibly decoding
149 # ignore EEXIST, which may occur during a race condition
208 def which(command, paths=None): function
209 """which(command, [paths]) - Look up the given command in the paths string
440 platforms which provides a simple platform neutral implementation.
  /src/external/bsd/libevent/dist/
devpoll.c 206 int which = 0; local
215 which |= EV_READ;
217 which |= EV_WRITE;
219 if (!which)
223 evmap_io_active_(base, events[i].fd, which);

Completed in 54 milliseconds

1 2 3 4 5 6 7 8 91011>>