Searched refs:msgs (Results 1 - 25 of 112) sorted by relevance

12345

/freebsd-11-stable/usr.bin/localedef/
H A Dmessages.c47 static struct lc_messages_T msgs; variable in typeref:struct:lc_messages_T
52 (void) memset(&msgs, 0, sizeof (msgs));
68 msgs.yesstr = str;
71 msgs.nostr = str;
74 msgs.yesexpr = str;
77 msgs.noexpr = str;
92 if (msgs.yesstr == NULL) {
94 msgs.yesstr = "";
96 if (msgs
[all...]
/freebsd-11-stable/etc/rc.d/
H A Dmsgs6 # PROVIDE: msgs
11 name="msgs"
12 desc="Make a bounds file for msgs(1)"
18 # Make a bounds file for msgs(1) if there isn't one already
20 if [ -d /var/msgs -a ! -f /var/msgs/bounds -a ! -L /var/msgs/bounds ]; then
21 echo 0 > /var/msgs/bounds
/freebsd-11-stable/usr.bin/msgs/
H A DMakefile4 PROG= msgs
/freebsd-11-stable/crypto/heimdal/lib/gssapi/krb5/
H A Ddisplay_status.c39 static const char *msgs[] = { local
50 else if (v >= sizeof(msgs)/sizeof(*msgs))
53 return msgs[v];
59 static const char *msgs[] = { local
86 else if (v >= sizeof(msgs)/sizeof(*msgs))
89 return msgs[v];
95 static const char *msgs[] = { local
106 if (v >= sizeof(msgs)/sizeo
[all...]
/freebsd-11-stable/crypto/heimdal/lib/gssapi/mech/
H A Dgss_display_status.c66 static const char *msgs[] = { local
77 else if (v >= sizeof(msgs)/sizeof(*msgs))
80 return msgs[v];
86 static const char *msgs[] = { local
111 if (v >= sizeof(msgs)/sizeof(*msgs))
114 return msgs[v];
120 static const char *msgs[] = { local
131 if (v >= sizeof(msgs)/sizeo
[all...]
/freebsd-11-stable/contrib/openpam/t/
H A Dt_pam_conv.h37 struct pam_message *msgs; member in struct:t_pam_conv_script
H A Dt_pam_conv.c65 t_pam_conv(int nm, const struct pam_message **msgs, argument
88 if (msgs[i]->msg_style != s->msgs[i].msg_style) {
91 s->msgs[i].msg_style, msgs[i]->msg_style);
94 if (strcmp(msgs[i]->msg, s->msgs[i].msg) != 0) {
97 s->msgs[i].msg, msgs[i]->msg);
100 switch (msgs[
[all...]
/freebsd-11-stable/etc/periodic/daily/
H A D130.clean-msgs18 if [ ! -d /var/msgs ]
20 echo '$daily_clean_msgs_enable is set but /var/msgs' \
29 msgs -c $arg && rc=0 || rc=3
/freebsd-11-stable/sys/dev/iicbus/
H A Diiconf.c390 iicbus_transfer(device_t bus, struct iic_msg *msgs, uint32_t nmsgs) argument
393 return (IICBUS_TRANSFER(device_get_parent(bus), msgs, nmsgs));
397 iicbus_transfer_excl(device_t dev, struct iic_msg *msgs, uint32_t nmsgs, argument
406 error = IICBUS_TRANSFER(bus, msgs, nmsgs);
417 iicbus_transfer_gen(device_t dev, struct iic_msg *msgs, uint32_t nmsgs) argument
434 addr = msgs[i].slave;
435 if (msgs[i].flags & IIC_M_RD)
440 if (!(msgs[i].flags & IIC_M_NOSTART)) {
450 if (msgs[i].flags & IIC_M_RD)
451 error = iicbus_read(bus, msgs[
475 struct iic_msg msgs[2]; local
500 struct iic_msg msgs[2]; local
[all...]
H A Diicsmb.c308 #define TRANSFER_MSGS(dev, msgs) iicbus_transfer(dev, msgs, nitems(msgs))
313 struct iic_msg msgs[] = { local
326 error = TRANSFER_MSGS(dev, msgs);
333 struct iic_msg msgs[] = { local
338 error = TRANSFER_MSGS(dev, msgs);
345 struct iic_msg msgs[] = { local
350 error = TRANSFER_MSGS(dev, msgs);
358 struct iic_msg msgs[] local
371 struct iic_msg msgs[] = { local
383 struct iic_msg msgs[] = { local
397 struct iic_msg msgs[] = { local
414 struct iic_msg msgs[] = { local
430 struct iic_msg msgs[] = { local
445 struct iic_msg msgs[] = { local
[all...]
H A Diic.h55 struct iic_msg *msgs; member in struct:iic_rdwr_data
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/mib/
H A Dtst.icmp.ksh47 msgs = args[0];
51 /in && reps && msgs/
/freebsd-11-stable/usr.bin/talk/
H A DMakefile6 init_disp.c invite.c io.c look_up.c msgs.c talk.c
/freebsd-11-stable/sys/arm/nvidia/
H A Das3722.c83 struct iic_msg msgs[2] = { local
88 msgs[0].slave = sc->bus_addr;
89 msgs[1].slave = sc->bus_addr;
92 rv = iicbus_transfer(sc->dev, msgs, 2);
107 struct iic_msg msgs[2] = { local
112 msgs[0].slave = sc->bus_addr;
113 msgs[1].slave = sc->bus_addr;
116 rv = iicbus_transfer(sc->dev, msgs, 2);
132 struct iic_msg msgs[1] = { local
136 msgs[
154 struct iic_msg msgs[2] = { local
[all...]
/freebsd-11-stable/sys/dev/mps/
H A Dmps_pci.c69 static int mps_alloc_msix(struct mps_softc *sc, int msgs);
70 static int mps_alloc_msi(struct mps_softc *sc, int msgs);
244 int error, msgs; local
248 msgs = 0;
251 msgs = pci_msix_count(dev);
252 if (msgs >= MPS_MSI_COUNT)
255 if (((error != 0) || (msgs == 0)) && (sc->disable_msi == 0)) {
256 msgs = pci_msi_count(dev);
257 if (msgs >= MPS_MSI_COUNT)
261 msgs
379 mps_alloc_msix(struct mps_softc *sc, int msgs) argument
388 mps_alloc_msi(struct mps_softc *sc, int msgs) argument
[all...]
/freebsd-11-stable/sys/arm/allwinner/
H A Daw_rsb.c262 rsb_transfer(device_t dev, struct iic_msg *msgs, uint32_t nmsgs) argument
282 if (nmsgs != 2 || (msgs[0].flags & IIC_M_RD) == IIC_M_RD ||
283 (msgs[0].slave >> 1) != (msgs[1].slave >> 1) ||
284 msgs[0].len != 1 || msgs[1].len > RSB_MAXLEN)
288 if ((msgs[1].flags & IIC_M_RD) != 0) {
289 switch (msgs[1].len) {
303 switch (msgs[1].len) {
325 device_addr = msgs[
[all...]
/freebsd-11-stable/usr.bin/xlint/lint1/
H A Derr.c58 const char *msgs[] = { variable
392 for (i = 0; i < sizeof(msgs) / sizeof(msgs[0]); i++)
393 printf("%zu\t%s\n", i, msgs[i]);
428 (void)vprintf(msgs[n], ap);
447 (void)vprintf(msgs[n], ap);
501 (void)vprintf(msgs[n], ap);
/freebsd-11-stable/contrib/com_err/
H A Derror.c52 return p->table->msgs[code - p->table->base];
62 const char *msg = p->table->msgs[code - p->table->base];
88 if (et->table->msgs == messages)
95 et->table->msgs = messages;
/freebsd-11-stable/crypto/heimdal/lib/com_err/
H A Dcom_right.h64 char const * const * msgs; member in struct:error_table
H A Derror.c55 return p->table->msgs[code - p->table->base];
65 const char *msg = p->table->msgs[code - p->table->base];
91 if (et->table->msgs == messages)
98 et->table->msgs = messages;
/freebsd-11-stable/lib/libgssapi/
H A Dgss_display_status.c106 static const char *msgs[] = { local
115 if (v >= nitems(msgs))
118 return msgs[v];
124 static const char *msgs[] = { local
149 if (v >= nitems(msgs))
152 return msgs[v];
158 static const char *msgs[] = { local
169 if (v >= nitems(msgs))
172 return msgs[v];
/freebsd-11-stable/sys/dev/mpr/
H A Dmpr_pci.c70 static int mpr_alloc_msix(struct mpr_softc *sc, int msgs);
71 static int mpr_alloc_msi(struct mpr_softc *sc, int msgs);
259 int error, msgs; local
263 msgs = 0;
266 msgs = pci_msix_count(dev);
267 if (msgs >= MPR_MSI_COUNT)
270 if (((error != 0) || (msgs == 0)) && (sc->disable_msi == 0)) {
271 msgs = pci_msi_count(dev);
272 if (msgs >= MPR_MSI_COUNT)
276 msgs
394 mpr_alloc_msix(struct mpr_softc *sc, int msgs) argument
403 mpr_alloc_msi(struct mpr_softc *sc, int msgs) argument
[all...]
/freebsd-11-stable/lib/libpam/modules/pam_radius/
H A Dpam_radius.c178 struct pam_message msgs[MAX_CHALLENGE_MSGS]; local
202 msgs[num_msgs].msg = rad_cvt_string(attrval, attrlen);
203 if (msgs[num_msgs].msg == NULL) {
208 msgs[num_msgs].msg_style = PAM_TEXT_INFO;
209 msg_ptrs[num_msgs] = &msgs[num_msgs];
219 msgs[num_msgs].msg = strdup("(null RADIUS challenge): ");
220 if (msgs[num_msgs].msg == NULL) {
224 msgs[num_msgs].msg_style = PAM_TEXT_INFO;
225 msg_ptrs[num_msgs] = &msgs[num_msgs];
228 msgs[num_msg
[all...]
/freebsd-11-stable/sys/dev/drm2/i915/
H A Dintel_iic.c318 gmbus_is_index_read(struct iic_msg *msgs, int i, int num) argument
321 !(msgs[i].flags & I2C_M_RD) && msgs[i].len <= 2 &&
322 (msgs[i + 1].flags & I2C_M_RD));
326 gmbus_xfer_index_read(struct drm_i915_private *dev_priv, struct iic_msg *msgs) argument
333 if (msgs[0].len == 2)
335 msgs[0].buf[1] | (msgs[0].buf[0] << 8);
336 if (msgs[0].len == 1)
338 (msgs[
354 gmbus_xfer(device_t adapter, struct iic_msg *msgs, uint32_t num) argument
621 iicbb_nostop_transfer_impl(device_t dev, struct iic_msg *msgs, uint32_t nmsgs) argument
661 iicbb_nostop_transfer(device_t dev, struct iic_msg *msgs, uint32_t nmsgs) argument
[all...]
/freebsd-11-stable/sys/dev/ichiic/
H A Dig4_iic.c363 ig4iic_transfer(device_t dev, struct iic_msg *msgs, uint32_t nmsgs) argument
393 if (i == 0 && (msgs[i].flags & IIC_M_NOSTART) != 0) {
397 if (i == nmsgs - 1 && (msgs[i].flags & IIC_M_NOSTOP) != 0) {
402 if (msgs[i].len == 0) {
407 if ((msgs[i].flags & IIC_M_NOSTART) != 0 &&
408 (msgs[i - 1].flags & IIC_M_NOSTOP) == 0) {
412 if ((msgs[i - 1].flags & IIC_M_NOSTOP) != 0 &&
413 msgs[i].slave != msgs[i - 1].slave) {
417 if ((msgs[
[all...]

Completed in 173 milliseconds

12345