| /freebsd-14.2/contrib/lib9p/pytest/ |
| H A D | numalloc.py | 262 def _free_multi(self, how, values): argument 277 self._free_range(how, val, highval) 279 def _maybe_increase_max(self, how, val): argument 292 def _maybe_decrease_min(self, how, val): argument 305 def _free_range(self, how, val, highval): argument 316 raise ValueError('{0}: {1} already available'.format(how, val)) 322 'available'.format(how, val, highval)) 348 self._maybe_increase_max(how, highval) 353 self._maybe_decrease_min(how, val) 357 self._maybe_decrease_min(how, val) [all …]
|
| /freebsd-14.2/sys/dev/smbus/ |
| H A D | smbconf.c | 88 smbus_poll(struct smbus_softc *sc, int how) in smbus_poll() argument 92 switch (how) { in smbus_poll() 117 smbus_request_bus(device_t bus, device_t dev, int how) in smbus_request_bus() argument 128 error = SMBUS_CALLBACK(parent, SMB_REQUEST_BUS, &how); in smbus_request_bus() 132 error = smbus_poll(sc, how); in smbus_request_bus() 137 error = smbus_poll(sc, how); in smbus_request_bus() 146 SMBUS_CALLBACK(parent, SMB_RELEASE_BUS, &how); in smbus_request_bus()
|
| /freebsd-14.2/sys/kern/ |
| H A D | kern_mbuf.c | 1126 m = m_get(how, MT_DATA); in mb_alloc_ext_pgs() 1300 m_clget(struct mbuf *m, int how) in m_clget() argument 1306 uma_zalloc_arg(zone_clust, m, how); in m_clget() 1315 MBUF_PROBE2(m__clget, m, how); in m_clget() 1408 n = uma_zalloc_arg(zone, m, how); in m_get3() 1429 return m_getcl(how, type, flags); in m_getjcl() 1439 n = uma_zalloc_arg(zone, m, how); in m_getjcl() 1479 mb = m_gethdr(how, type); in m_getm2() 1481 mb = m_get(how, type); in m_getm2() 1700 if (how == M_NOWAIT) { in mb_alloc_ext_plus_pages() [all …]
|
| H A D | uipc_mbuf.c | 481 MBUF_CHECKSLEEP(how); in m_dup_pkthdr() 510 mn = m_get(how, m->m_type); in m_prepend() 610 MBUF_CHECKSLEEP(how); in m_copypacket() 611 n = m_get(how, m->m_type); in m_copypacket() 616 if (!m_dup_pkthdr(n, m, how)) in m_copypacket() 629 o = m_get(how, m->m_type); in m_copypacket() 719 MBUF_CHECKSLEEP(how); in m_dup() 737 n = m_get(how, m->m_type); in m_dup() 1505 MBUF_CHECKSLEEP(how); in m_defrag() 1803 MPASS((how & M_ZERO) == 0); in m_uiotombuf_nomap() [all …]
|
| H A D | uipc_mbuf2.c | 396 m_tag_copy(struct m_tag *t, int how) in m_tag_copy() argument 400 MBUF_CHECKSLEEP(how); in m_tag_copy() 402 p = m_tag_alloc(t->m_tag_cookie, t->m_tag_id, t->m_tag_len, how); in m_tag_copy() 412 if (mac_mbuf_tag_init(p, how) != 0) { in m_tag_copy() 430 m_tag_copy_chain(struct mbuf *to, const struct mbuf *from, int how) in m_tag_copy_chain() argument 434 MBUF_CHECKSLEEP(how); in m_tag_copy_chain() 439 t = m_tag_copy(p, how); in m_tag_copy_chain()
|
| /freebsd-14.2/contrib/bmake/unit-tests/ |
| H A D | suff-add-later.exp | 11 make: don't know how to make issue5a.d (continuing) 12 make: don't know how to make issue5b.c (continuing) 13 make: don't know how to make issue5c (continuing) 15 make: don't know how to make issue5d.e (continuing) 16 make: don't know how to make issue5e.d (continuing)
|
| H A D | suff-clear-regular.exp | 1 make: don't know how to make .a (continuing) 2 make: don't know how to make .a.b (continuing) 3 make: don't know how to make .b.a (continuing)
|
| /freebsd-14.2/lib/libc/gen/ |
| H A D | getgrent.c | 855 switch (how) { in files_group() 909 if (how == nss_lt_all) in files_group() 971 switch (how) { in dns_group() 995 switch (how) { in dns_group() 1106 switch (how) { in nis_group() 1135 switch (how) { in nis_group() 1335 switch (how) { in compat_group() 1372 switch (how) { in compat_group() 1400 switch (how) { in compat_group() 1502 switch (how) { in __gr_match_entry() [all …]
|
| H A D | getpwent.c | 810 switch (how) { in files_passwd() 849 switch (how) { in files_passwd() 898 how, name, uid); in files_passwd() 1109 switch (how) { in dns_passwd() 1133 switch (how) { in dns_passwd() 1302 switch (how) { in nis_passwd() 1331 switch (how) { in nis_passwd() 1637 switch (how) { in compat_redispatch() 1749 switch (how) { in compat_passwd() 1794 rv = compat_redispatch(st, how, how, name, name, uid, pwd, in compat_passwd() [all …]
|
| H A D | dup3.c | 42 int how; in __dup3() local 54 how = (flags & O_CLOEXEC) ? F_DUP2FD_CLOEXEC : F_DUP2FD; in __dup3() 56 return (_fcntl(oldfd, how, newfd)); in __dup3()
|
| H A D | pmadvise.c | 11 posix_madvise(void *address, size_t size, int how) in posix_madvise() argument 16 if (madvise(address, size, how) == -1) { in posix_madvise()
|
| /freebsd-14.2/sys/sys/ |
| H A D | mbuf.h | 790 if (how == M_WAITOK) \ 972 error = m_pkthdr_init(m, how); in m_init() 981 m_get_raw(int how, short type) in m_get_raw() argument 994 m_get(int how, short type) in m_get() argument 1007 m_gethdr_raw(int how, short type) in m_gethdr_raw() argument 1020 m_gethdr(int how, short type) in m_gethdr() argument 1124 #define MGET(m, how, type) ((m) = m_get((how), (type))) argument 1125 #define MGETHDR(m, how, type) ((m) = m_gethdr((how), (type))) argument 1126 #define MCLGET(m, how) m_clget((m), (how)) argument 1270 int __mhow = (how); \ [all …]
|
| /freebsd-14.2/usr.sbin/ppp/ |
| H A D | systems.c | 317 struct prompt *prompt, struct datalink *cx, int how) in ReadSystem() argument 359 n = ReadSystem(bundle, name, arg, prompt, cx, how); in ReadSystem() 378 if (how == SYSTEM_EXISTS) { in ReadSystem() 391 if (*cp != '!' && how == SYSTEM_EXEC) in ReadSystem() 401 if ((how != SYSTEM_EXEC && allowcmd) || in ReadSystem() 402 (how == SYSTEM_EXEC && !allowcmd)) { in ReadSystem() 433 int def, how, rs; in system_IsValid() local 437 how = ID0realuid() == 0 ? SYSTEM_EXISTS : SYSTEM_VALIDATE; in system_IsValid() 442 rs = ReadSystem(NULL, "default", CONFFILE, prompt, NULL, how); in system_IsValid() 452 rs = ReadSystem(NULL, name, CONFFILE, prompt, NULL, how); in system_IsValid() [all …]
|
| /freebsd-14.2/sys/dev/ppbus/ |
| H A D | ppb_base.c | 57 uint8_t mask, uint8_t status, int how) in ppb_poll_bus() argument 66 for (j = 0; j < ((how & PPB_POLL) ? max : 1); j++) { in ppb_poll_bus() 75 if (!(how & PPB_POLL)) { in ppb_poll_bus() 82 (how == PPB_NOINTR ? 0 : PCATCH), "ppbpoll", hz/100); in ppb_poll_bus() 148 ppb_write(device_t bus, char *buf, int len, int how) in ppb_write() argument 152 return (PPBUS_WRITE(device_get_parent(bus), buf, len, how)); in ppb_write()
|
| /freebsd-14.2/bin/sh/ |
| H A D | miscbltin.c | 502 printlimit(enum limithow how, const struct rlimit *limit, in printlimit() argument 507 if (how & SOFT) in printlimit() 509 else if (how & HARD) in printlimit() 524 enum limithow how = SOFT | HARD; in ulimitcmd() local 534 how = HARD; in ulimitcmd() 537 how = SOFT; in ulimitcmd() 591 printlimit(how, &limit, l); in ulimitcmd() 599 if (how & SOFT) in ulimitcmd() 601 if (how & HARD) in ulimitcmd() 606 printlimit(how, &limit, l); in ulimitcmd()
|
| /freebsd-14.2/sys/contrib/openzfs/include/os/freebsd/spl/sys/ |
| H A D | rwlock.h | 72 #define rw_enter(lock, how) do { \ argument 73 if ((how) == RW_READER) \ 79 #define rw_tryenter(lock, how) \ argument 80 ((how) == RW_READER ? sx_try_slock(lock) : sx_try_xlock(lock))
|
| /freebsd-14.2/sys/cddl/compat/opensolaris/sys/ |
| H A D | rwlock.h | 74 #define rw_enter(lock, how) do { \ argument 75 if ((how) == RW_READER) \ 80 #define rw_tryenter(lock, how) ((how) == RW_READER ? sx_try_slock(lock) : sx_try_xlock(lock)) argument
|
| /freebsd-14.2/sys/netgraph/ |
| H A D | ng_message.h | 377 #define NG_MKMESSAGE(msg, cookie, cmdid, len, how) \ argument 380 + (len), M_NETGRAPH_MSG, (how) | M_ZERO); \ 395 #define NG_MKRESPONSE(rsp, msg, len, how) \ argument 398 + (len), M_NETGRAPH_MSG, (how) | M_ZERO); \ 414 #define NG_COPYMESSAGE(copy, msg, how) \ argument 417 + (msg)->header.arglen, M_NETGRAPH_MSG, (how) | M_ZERO); \
|
| /freebsd-14.2/lib/libc/net/ |
| H A D | getservent.c | 72 enum nss_lookup_type how; member 309 switch (serv_mdata->how) { in files_servent() 341 if (serv_mdata->how == nss_lt_all) in files_servent() 362 switch (serv_mdata->how) { in files_servent() 397 switch (serv_mdata->how) { in files_servent() 497 enum nss_lookup_type how; in db_servent() local 510 switch (how) { in db_servent() 549 switch (how) { in db_servent() 669 enum nss_lookup_type how; in nis_servent() local 683 switch (how) { in nis_servent() [all …]
|
| /freebsd-14.2/sys/dev/iicbus/ |
| H A D | iiconf.c | 107 iicbus_poll(struct iicbus_softc *sc, int how) in iicbus_poll() argument 112 switch (how & IIC_INTRWAIT) { in iicbus_poll() 136 iicbus_request_bus(device_t bus, device_t dev, int how) in iicbus_request_bus() argument 147 if ((how & IIC_RECURSIVE) && sc->owner == dev) in iicbus_request_bus() 149 if ((error = iicbus_poll(sc, how)) != 0) in iicbus_request_bus() 179 reqdata.flags = how | IIC_REQBUS_DEV; in iicbus_request_bus() 448 int how) in iicbus_transfer_excl() argument 454 error = iicbus_request_bus(bus, dev, how); in iicbus_transfer_excl()
|
| H A D | iicsmb.c | 90 static int iicsmb_quick(device_t dev, u_char slave, int how); 254 int how; in iicsmb_callback() local 259 how = *(int *)data; in iicsmb_callback() 260 error = iicbus_request_bus(parent, dev, how); in iicsmb_callback() 309 iicsmb_quick(device_t dev, u_char slave, int how) in iicsmb_quick() argument 312 { slave, how == SMB_QWRITE ? IIC_M_WR : IIC_M_RD, 0, NULL }, in iicsmb_quick() 316 switch (how) { in iicsmb_quick()
|
| /freebsd-14.2/lib/libc/rpc/ |
| H A D | getrpcent.c | 225 enum nss_lookup_type how; in files_rpcent() local 227 how = (enum nss_lookup_type)(uintptr_t)mdata; in files_rpcent() 228 switch (how) in files_rpcent() 256 if (how == nss_lt_all) in files_rpcent() 300 switch (how) in files_rpcent() 404 enum nss_lookup_type how; in nis_rpcent() local 407 how = (enum nss_lookup_type)(uintptr_t)mdata; in nis_rpcent() 408 switch (how) in nis_rpcent() 441 switch (how) in nis_rpcent() 459 how = nss_lt_all; in nis_rpcent() [all …]
|
| /freebsd-14.2/sys/contrib/zlib/ |
| H A D | gzread.c | 126 state->how = GZIP; in gz_look() 147 state->how = COPY; in gz_look() 197 state->how = LOOK; in gz_decomp() 213 switch(state->how) { in gz_fetch() 217 if (state->how == LOOK) in gz_fetch() 309 else if (state->how == LOOK || n < (state->size << 1)) { in gz_read() 319 else if (state->how == COPY) { /* read directly */ in gz_read() 448 if (state->mode == GZ_READ && state->how == LOOK && state->x.have == 0) in gzungetc() 570 if (state->mode == GZ_READ && state->how == LOOK && state->x.have == 0) in gzdirect()
|
| /freebsd-14.2/crypto/openssl/test/recipes/90-test_includes_data/conf-includes/ |
| H A D | includes1.cnf | 25 default_days = 365 # how long to certify for 26 default_crl_days= 30 # how long before next CRL 29 # A few difference way of specifying how similar the request should look
|
| /freebsd-14.2/lib/libc/sys/ |
| H A D | sigprocmask.c | 41 sigprocmask(int how, const sigset_t *set, sigset_t *oset) in sigprocmask() argument 45 __libc_interposing[INTERPOS_sigprocmask])(how, set, oset)); in sigprocmask()
|