Searched refs:msgs (Results 76 - 100 of 109) sorted by relevance

12345

/freebsd-current/sys/dev/iicbus/
H A Diicbb.c94 static int iicbb_transfer(device_t dev, struct iic_msg *msgs, uint32_t nmsgs);
567 iicbb_transfer(device_t dev, struct iic_msg *msgs, uint32_t nmsgs) argument
575 error = iicbus_transfer_gen(dev, msgs, nmsgs);
/freebsd-current/contrib/wpa/src/eap_common/
H A Deap_eke_common.c687 const struct wpabuf *msgs, u8 *auth)
692 wpa_hexdump_buf(MSG_MSGDUMP, "EAP-EKE: Messages for Auth", msgs);
695 wpabuf_head(msgs), wpabuf_len(msgs), auth);
686 eap_eke_auth(struct eap_eke_session *sess, const char *label, const struct wpabuf *msgs, u8 *auth) argument
/freebsd-current/sys/dev/iicbus/mux/
H A Diicmux.c198 iicmux_transfer( device_t dev, struct iic_msg *msgs, uint32_t nmsgs) argument
202 return (iicbus_transfer(sc->busdev, msgs, nmsgs));
/freebsd-current/sys/arm/broadcom/bcm2835/
H A Dbcm2835_bsc.c491 bcm_bsc_transfer(device_t dev, struct iic_msg *msgs, uint32_t nmsgs) argument
510 DEVICE_DEBUGF(sc, 3, "Transfer %d msgs\n", nmsgs);
516 * Perform all the transfers requested in the array of msgs. Note that
524 sc->sc_curmsg = msgs;
525 endmsgs = &msgs[nmsgs];
/freebsd-current/sys/arm/ti/
H A Dti_i2c.c356 * @msgs: the messages to send/receive
357 * @nmsgs: the number of messages in the msgs array
368 ti_i2c_transfer(device_t dev, struct iic_msg *msgs, uint32_t nmsgs) argument
387 sc->sc_buffer = &msgs[i];
420 ti_i2c_write_2(sc, I2C_REG_SA, msgs[i].slave >> 1);
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_internal_defs.h310 const char* msgs[] = {msg, __VA_ARGS__}; \
311 for (const char* m : msgs) RawWrite(m); \
/freebsd-current/contrib/ntp/libntp/lib/isc/include/isc/
H A Dutil.h90 #include <isc/msgs.h> /* Required for isc_msgcat when tracing. */
/freebsd-current/contrib/ntp/libntp/lib/isc/unix/
H A Dinterfaceiter.c39 #include <isc/msgs.h>
H A Dnet.c35 #include <isc/msgs.h>
/freebsd-current/contrib/ntp/libntp/lib/isc/win32/
H A Dnet.c26 #include <isc/msgs.h>
/freebsd-current/sys/arm/nvidia/
H A Dtegra_i2c.c532 tegra_i2c_transfer(device_t dev, struct iic_msg *msgs, uint32_t nmsgs) argument
548 sc->msg = &msgs[i];
561 if (msgs[i].flags & IIC_M_NOSTOP)
566 if (msgs[i + 1].flags & IIC_M_NOSTART)
/freebsd-current/usr.sbin/bhyve/
H A Dpci_emul.h256 void pci_populate_msicap(struct msicap *cap, int msgs, int nextptr);
/freebsd-current/libexec/rc/rc.d/
H A DMakefile57 msgs \
/freebsd-current/usr.bin/
H A DMakefile228 # XXX msgs?
232 SUBDIR.${MK_MAIL}+= msgs
/freebsd-current/sys/dev/cyapa/
H A Dcyapa.c288 struct iic_msg msgs[] = { local
293 return (iicbus_transfer(dev, msgs, nitems(msgs)));
300 struct iic_msg msgs[] = { local
305 return (iicbus_transfer(dev, msgs, nitems(msgs)));
/freebsd-current/contrib/wpa/src/wps/
H A Dwps.c534 void wps_free_pending_msgs(struct upnp_pending_message *msgs) argument
537 p = msgs;
H A Dwps.h893 void wps_free_pending_msgs(struct upnp_pending_message *msgs);
/freebsd-current/sys/dev/dpaa2/
H A Ddpaa2_channel.c353 struct dpaa2_dq *msgs = (struct dpaa2_dq *)buf->vaddr; local
354 struct dpaa2_dq *msg = &msgs[ch->store_idx];
/freebsd-current/sys/dev/glxiic/
H A Dglxiic.c249 static int glxiic_transfer(device_t dev, struct iic_msg *msgs,
957 glxiic_transfer(device_t dev, struct iic_msg *msgs, uint32_t nmsgs) argument
972 sc->msg = msgs;
/freebsd-current/contrib/ntp/libntp/lib/isc/
H A Dnetaddr.c27 #include <isc/msgs.h>
H A Dsockaddr.c28 #include <isc/msgs.h>
/freebsd-current/usr.sbin/crunch/examples/
H A Dreally-big.conf46 progs mkstr modstat more msgs netstat newsyslog nfsstat nice nm nohup
/freebsd-current/contrib/ntp/libntp/
H A DMakefile.am29 lib/isc/include/isc/msgs.h \
/freebsd-current/sys/dev/qlnx/qlnxe/
H A Dmcp_public.h1850 #define MFW_DRV_MSG_MAX_DWORDS(msgs) (((msgs - 1) >> 2) + 1)
/freebsd-current/sys/net/
H A Diflib.c6611 int msgs, queuemsgs, queues, rx_queues, tx_queues, vectors; local
6625 if ((msgs = pci_msix_count(dev)) == 0) {
6651 queuemsgs = min(msgs - admincnt, 1);
6653 queuemsgs = msgs - admincnt;
6663 "intr CPUs: %d queue msgs: %d admincnt: %d\n",
6701 if (msgs < vectors) {
6704 "(supported %d, need %d)\n", msgs, vectors);
6710 msgs = vectors;
6712 if (vectors != msgs) {
6715 "(got %d, need %d)\n", vectors, msgs);
[all...]

Completed in 277 milliseconds

12345