Searched refs:how (Results 1 - 25 of 287) sorted by relevance

1234567891011>>

/freebsd-current/lib/libc/gen/
H A Ddup3.c42 int how; local
54 how = (flags & O_CLOEXEC) ? F_DUP2FD_CLOEXEC : F_DUP2FD;
56 return (_fcntl(oldfd, how, newfd));
H A Dpmadvise.c11 posix_madvise(void *address, size_t size, int how) argument
16 if (madvise(address, size, how) == -1) {
/freebsd-current/lib/libc/sys/
H A Dsigprocmask.c41 sigprocmask(int how, const sigset_t *set, sigset_t *oset) argument
43 return (INTERPOS_SYS(sigprocmask, how, set, oset));
/freebsd-current/contrib/bmake/unit-tests/
H A Dsuff-clear-regular.exp1 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)
H A Ddep-percent.exp1 make: don't know how to make dep-percent.o (continuing)
H A Dsuff-clear-single.exp1 make: don't know how to make issue3 (continuing)
H A Djobs-empty-commands-error.exp2 make: don't know how to make nonexistent-target (continuing)
H A Dsuff-add-later.exp11 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 Dsuff-transform-expand.exp2 make: don't know how to make .first (continuing)
H A Duse-inference.exp2 make: don't know how to make use-inference.to (continuing)
H A Dsuff-use.exp2 make: don't know how to make demo.o (continuing)
/freebsd-current/crypto/openssl/VMS/
H A Dtest-includes.com1 $! Quick script to check how well including individual header files works
/freebsd-current/sys/dev/smbus/
H A Dsmbconf.c87 smbus_poll(struct smbus_softc *sc, int how) argument
91 switch (how) {
113 * how : SMB_WAIT or SMB_DONTWAIT
116 smbus_request_bus(device_t bus, device_t dev, int how) argument
127 error = SMBUS_CALLBACK(parent, SMB_REQUEST_BUS, &how);
131 error = smbus_poll(sc, how);
136 error = smbus_poll(sc, how);
145 SMBUS_CALLBACK(parent, SMB_RELEASE_BUS, &how);
/freebsd-current/contrib/lib9p/pytest/
H A Dnumalloc.py262 def _free_multi(self, how, values):
277 self._free_range(how, val, highval)
279 def _maybe_increase_max(self, how, val):
290 raise ValueError('{0}: {1} is outside range limit'.format(how, val))
292 def _maybe_decrease_min(self, how, val):
303 raise ValueError('{0}: {1} is outside range limit'.format(how, val))
305 def _free_range(self, how, val, highval):
316 raise ValueError('{0}: {1} already available'.format(how, val))
322 'available'.format(how, val, highval))
348 self._maybe_increase_max(how, highva
[all...]
/freebsd-current/sys/contrib/openzfs/include/os/freebsd/spl/sys/
H A Drwlock.h72 #define rw_enter(lock, how) do { \
73 if ((how) == RW_READER) \
75 else /* if ((how) == RW_WRITER) */ \
79 #define rw_tryenter(lock, how) \
80 ((how) == RW_READER ? sx_try_slock(lock) : sx_try_xlock(lock))
/freebsd-current/sys/cddl/compat/opensolaris/sys/
H A Drwlock.h74 #define rw_enter(lock, how) do { \
75 if ((how) == RW_READER) \
77 else /* if ((how) == RW_WRITER) */ \
80 #define rw_tryenter(lock, how) ((how) == RW_READER ? sx_try_slock(lock) : sx_try_xlock(lock))
/freebsd-current/sys/dev/nvmf/host/
H A Dnvmf_cmd.c18 nvmf_request_complete_t *cb, void *cb_arg, int how)
38 req = nvmf_allocate_request(sc->admin, &cmd, cb, cb_arg, how);
46 uint64_t value, nvmf_request_complete_t *cb, void *cb_arg, int how)
68 req = nvmf_allocate_request(sc->admin, &cmd, cb, cb_arg, how);
76 void *cb_arg, int how)
84 req = nvmf_allocate_request(sc->admin, &cmd, cb, cb_arg, how);
93 void *req_cb_arg, nvmf_io_complete_t *io_cb, void *io_cb_arg, int how)
106 req = nvmf_allocate_request(sc->admin, &cmd, req_cb, req_cb_arg, how);
119 void *req_cb_arg, nvmf_io_complete_t *io_cb, void *io_cb_arg, int how)
132 req = nvmf_allocate_request(sc->admin, &cmd, req_cb, req_cb_arg, how);
17 nvmf_cmd_get_property(struct nvmf_softc *sc, uint32_t offset, uint8_t size, nvmf_request_complete_t *cb, void *cb_arg, int how) argument
45 nvmf_cmd_set_property(struct nvmf_softc *sc, uint32_t offset, uint8_t size, uint64_t value, nvmf_request_complete_t *cb, void *cb_arg, int how) argument
75 nvmf_cmd_keep_alive(struct nvmf_softc *sc, nvmf_request_complete_t *cb, void *cb_arg, int how) argument
91 nvmf_cmd_identify_active_namespaces(struct nvmf_softc *sc, uint32_t id, struct nvme_ns_list *nslist, nvmf_request_complete_t *req_cb, void *req_cb_arg, nvmf_io_complete_t *io_cb, void *io_cb_arg, int how) argument
117 nvmf_cmd_identify_namespace(struct nvmf_softc *sc, uint32_t id, struct nvme_namespace_data *nsdata, nvmf_request_complete_t *req_cb, void *req_cb_arg, nvmf_io_complete_t *io_cb, void *io_cb_arg, int how) argument
143 nvmf_cmd_get_log_page(struct nvmf_softc *sc, uint32_t nsid, uint8_t lid, uint64_t offset, void *buf, size_t len, nvmf_request_complete_t *req_cb, void *req_cb_arg, nvmf_io_complete_t *io_cb, void *io_cb_arg, int how) argument
[all...]
/freebsd-current/sys/dev/ppbus/
H A Dppb_base.c56 uint8_t mask, uint8_t status, int how)
65 for (j = 0; j < ((how & PPB_POLL) ? max : 1); j++) {
74 if (!(how & PPB_POLL)) {
81 (how == PPB_NOINTR ? 0 : PCATCH), "ppbpoll", hz/100);
147 ppb_write(device_t bus, char *buf, int len, int how) argument
151 return (PPBUS_WRITE(device_get_parent(bus), buf, len, how));
55 ppb_poll_bus(device_t bus, int max, uint8_t mask, uint8_t status, int how) argument
/freebsd-current/usr.sbin/bhyve/aarch64/
H A Dvmexit.c106 enum vm_suspend_how how; local
110 how = vme->u.suspended.how;
114 switch (how) {
124 fprintf(stderr, "vmexit_suspend: invalid reason %d\n", how);
191 enum vm_suspend_how how; local
243 how = VM_SUSPEND_POWEROFF;
245 how = VM_SUSPEND_RESET;
246 vm_suspend(ctx, how);
/freebsd-current/sys/kern/
H A Dkern_mbuf.c640 mb_ctor_mbuf(void *mem, int size, void *arg, int how) argument
662 error = m_init(m, how, type, flags);
729 mb_ctor_clust(void *mem, int size, void *arg, int how) argument
755 mb_zinit_pack(void *mem, int size, int how) argument
760 if (uma_zalloc_arg(zone_clust, m, how) == NULL ||
765 trash_init(m->m_ext.ext_buf, MCLBYTES, how);
793 mb_ctor_pack(void *mem, int size, void *arg, int how) argument
807 trash_ctor(m->m_ext.ext_buf, MCLBYTES, zone_clust, how);
810 error = m_init(m, how, type, flags);
1122 mb_alloc_ext_pgs(int how, m_ext_free_ argument
1301 m_clget(struct mbuf *m, int how) argument
1328 m_cljget(struct mbuf *m, int how, int size) argument
1351 m_get2(int size, int how, short type, int flags) argument
1385 m_get3(int size, int how, short type, int flags) argument
1423 m_getjcl(int how, short type, int flags, int size) argument
1455 mc_get(struct mchain *mc, u_int length, int how, short type, int flags) argument
1515 m_getm2(struct mbuf *m, int len, int how, short type, int flags) argument
1706 mb_alloc_ext_plus_pages(int len, int how) argument
1743 mb_mapped_to_unmapped(struct mbuf *mp, int len, int mlen, int how, struct mbuf **mlast) argument
[all...]
/freebsd-current/usr.sbin/ppp/
H A Dsystems.c287 /* Values for ``how'' in ReadSystem */
317 struct prompt *prompt, struct datalink *cx, int how)
359 n = ReadSystem(bundle, name, arg, prompt, cx, how);
378 if (how == SYSTEM_EXISTS) {
391 if (*cp != '!' && how == SYSTEM_EXEC)
401 if ((how != SYSTEM_EXEC && allowcmd) ||
402 (how == SYSTEM_EXEC && !allowcmd)) {
433 int def, how, rs; local
437 how = ID0realuid() == 0 ? SYSTEM_EXISTS : SYSTEM_VALIDATE;
442 rs = ReadSystem(NULL, "default", CONFFILE, prompt, NULL, how);
316 ReadSystem(struct bundle *bundle, const char *name, const char *file, struct prompt *prompt, struct datalink *cx, int how) argument
[all...]
/freebsd-current/sys/dev/ow/
H A Down.h52 own_acquire_bus(device_t pdev, int how) argument
56 return OWN_ACQUIRE_BUS(ndev, pdev, how);
/freebsd-current/libexec/rtld-elf/rtld-libc/
H A Drtld_libc.c70 sigprocmask(int how, const sigset_t *set, sigset_t *oset) argument
73 return (__sys_sigprocmask(how, set, oset));
/freebsd-current/sys/dev/nvmf/
H A Dnvmf_transport.h70 const void *sqe, int how);
72 const void *cqe, int how);
/freebsd-current/bin/sh/
H A Dmiscbltin.c493 printlimit(enum limithow how, const struct rlimit *limit, argument
498 if (how & SOFT)
500 else if (how & HARD)
515 enum limithow how = SOFT | HARD; local
525 how = HARD;
528 how = SOFT;
582 printlimit(how, &limit, l);
590 if (how & SOFT)
592 if (how & HARD)
597 printlimit(how,
[all...]

Completed in 431 milliseconds

1234567891011>>