HomeSort by: relevance | last modified time | path
    Searched refs:mbox (Results 1 - 25 of 110) sorted by relevancy

1 2 3 4 5

  /src/usr.bin/mail/
v7.local.c 59 char *mbox; local in function:findmail
61 if (!(mbox = getenv("MAIL")))
64 (void)strlcpy(buf, mbox, bufsize);
quit.c 177 "%s/mbox.XXXXXXXXXX", tmpdir);
260 * Save all of the undetermined messages at the top of "mbox"
273 const char *mbox; local in function:quit
301 * See if there any messages to save in mbox. If no, we
302 * can save copying mbox to /tmp and back.
305 * Delete all untouched messages to keep them out of mbox.
365 holdbit = autohold ? MPRESERVE : MBOX;
366 nohold = MBOX|MSAVED|MDELETED|MPRESERVE;
387 if (mp->m_flag & MBOX)
420 * Create another temporary file and copy user's mbox fil
    [all...]
  /src/sys/dev/fdt/
fdt_mbox.c 66 if (of_getprop_uint32(phandle, "#mbox-cells", &cells) != 0) {
67 aprint_debug_dev(dev, "missing #mbox-cells");
99 struct fdtbus_mbox_channel *mbox = NULL; local in function:fdtbus_mbox_get_index
131 mbox = kmem_alloc(sizeof(*mbox), KM_SLEEP);
132 mbox->mb_ctlr = mc;
133 mbox->mb_priv = mbox_priv;
144 return mbox;
153 err = fdtbus_get_index(phandle, "mbox-names", name, &index);
161 fdtbus_mbox_put(struct fdtbus_mbox_channel *mbox)
    [all...]
  /src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/ti/
k3-j721e-som-p0.dtsi 193 mbox_mcu_r5fss0_core0: mbox-mcu-r5fss0-core0 {
194 ti,mbox-rx = <0 0 0>;
195 ti,mbox-tx = <1 0 0>;
198 mbox_mcu_r5fss0_core1: mbox-mcu-r5fss0-core1 {
199 ti,mbox-rx = <2 0 0>;
200 ti,mbox-tx = <3 0 0>;
207 mbox_main_r5fss0_core0: mbox-main-r5fss0-core0 {
208 ti,mbox-rx = <0 0 0>;
209 ti,mbox-tx = <1 0 0>;
212 mbox_main_r5fss0_core1: mbox-main-r5fss0-core1
    [all...]
k3-j7200-som-p0.dtsi 149 mbox_mcu_r5fss0_core0: mbox-mcu-r5fss0-core0 {
150 ti,mbox-rx = <0 0 0>;
151 ti,mbox-tx = <1 0 0>;
154 mbox_mcu_r5fss0_core1: mbox-mcu-r5fss0-core1 {
155 ti,mbox-rx = <2 0 0>;
156 ti,mbox-tx = <3 0 0>;
163 mbox_main_r5fss0_core0: mbox-main-r5fss0-core0 {
164 ti,mbox-rx = <0 0 0>;
165 ti,mbox-tx = <1 0 0>;
168 mbox_main_r5fss0_core1: mbox-main-r5fss0-core1
    [all...]
k3-j7200-main.dtsi 120 #mbox-cells = <1>;
138 #mbox-cells = <1>;
139 ti,mbox-num-users = <4>;
140 ti,mbox-num-fifos = <16>;
147 #mbox-cells = <1>;
148 ti,mbox-num-users = <4>;
149 ti,mbox-num-fifos = <16>;
156 #mbox-cells = <1>;
157 ti,mbox-num-users = <4>;
158 ti,mbox-num-fifos = <16>
    [all...]
k3-am642-evm.dts 490 mbox_main_r5fss0_core0: mbox-main-r5fss0-core0 {
491 ti,mbox-rx = <0 0 2>;
492 ti,mbox-tx = <1 0 2>;
495 mbox_main_r5fss0_core1: mbox-main-r5fss0-core1 {
496 ti,mbox-rx = <2 0 2>;
497 ti,mbox-tx = <3 0 2>;
506 mbox_main_r5fss1_core0: mbox-main-r5fss1-core0 {
507 ti,mbox-rx = <0 0 2>;
508 ti,mbox-tx = <1 0 2>;
511 mbox_main_r5fss1_core1: mbox-main-r5fss1-core1
    [all...]
k3-am642-sk.dts 389 mbox_main_r5fss0_core0: mbox-main-r5fss0-core0 {
390 ti,mbox-rx = <0 0 2>;
391 ti,mbox-tx = <1 0 2>;
394 mbox_main_r5fss0_core1: mbox-main-r5fss0-core1 {
395 ti,mbox-rx = <2 0 2>;
396 ti,mbox-tx = <3 0 2>;
405 mbox_main_r5fss1_core0: mbox-main-r5fss1-core0 {
406 ti,mbox-rx = <0 0 2>;
407 ti,mbox-tx = <1 0 2>;
410 mbox_main_r5fss1_core1: mbox-main-r5fss1-core1
    [all...]
k3-am65-main.dtsi 478 #mbox-cells = <1>;
496 #mbox-cells = <1>;
497 ti,mbox-num-users = <4>;
498 ti,mbox-num-fifos = <16>;
505 #mbox-cells = <1>;
506 ti,mbox-num-users = <4>;
507 ti,mbox-num-fifos = <16>;
514 #mbox-cells = <1>;
515 ti,mbox-num-users = <4>;
516 ti,mbox-num-fifos = <16>
    [all...]
  /src/bin/ksh/
mail.c 24 typedef struct mbox { struct
25 struct mbox *mb_next; /* next mbox in list */
38 static mbox_t mbox; variable in typeref:typename:mbox_t
43 static mbox_t * mballoc ARGS((char *p, char *m)); /* allocate a new mbox */
63 mbp = &mbox;
103 if (mbox.mb_msg)
104 afree((void *)mbox.mb_msg, APERM);
105 if (mbox.mb_path)
106 afree((void *)mbox.mb_path, APERM)
    [all...]
  /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
dra7-ipu-dsp-common.dtsi 8 mbox_ipu1_ipc3x: mbox-ipu1-ipc3x {
11 mbox_dsp1_ipc3x: mbox-dsp1-ipc3x {
18 mbox_ipu2_ipc3x: mbox-ipu2-ipc3x {
dra72x.dtsi 80 mbox_ipu1_ipc3x: mbox-ipu1-ipc3x {
81 ti,mbox-tx = <6 2 2>;
82 ti,mbox-rx = <4 2 2>;
85 mbox_dsp1_ipc3x: mbox-dsp1-ipc3x {
86 ti,mbox-tx = <5 2 2>;
87 ti,mbox-rx = <1 2 2>;
93 mbox_ipu2_ipc3x: mbox-ipu2-ipc3x {
94 ti,mbox-tx = <6 2 2>;
95 ti,mbox-rx = <4 2 2>;
dra74-ipu-dsp-common.dtsi 9 mbox_dsp2_ipc3x: mbox-dsp2-ipc3x {
dra74x.dtsi 148 mbox_ipu1_ipc3x: mbox-ipu1-ipc3x {
149 ti,mbox-tx = <6 2 2>;
150 ti,mbox-rx = <4 2 2>;
153 mbox_dsp1_ipc3x: mbox-dsp1-ipc3x {
154 ti,mbox-tx = <5 2 2>;
155 ti,mbox-rx = <1 2 2>;
161 mbox_ipu2_ipc3x: mbox-ipu2-ipc3x {
162 ti,mbox-tx = <6 2 2>;
163 ti,mbox-rx = <4 2 2>;
166 mbox_dsp2_ipc3x: mbox-dsp2-ipc3x
    [all...]
omap2420.dtsi 196 #mbox-cells = <1>;
197 ti,mbox-num-users = <4>;
198 ti,mbox-num-fifos = <6>;
199 mbox_dsp: mbox-dsp {
200 ti,mbox-tx = <0 0 0>;
201 ti,mbox-rx = <1 0 0>;
203 mbox_iva: mbox-iva {
204 ti,mbox-tx = <2 1 3>;
205 ti,mbox-rx = <3 1 3>;
omap2430.dtsi 284 #mbox-cells = <1>;
285 ti,mbox-num-users = <4>;
286 ti,mbox-num-fifos = <6>;
287 mbox_dsp: mbox-dsp {
288 ti,mbox-tx = <0 0 0>;
289 ti,mbox-rx = <1 0 0>;
  /src/sys/arch/arm/broadcom/
bcm2835_mbox_subr.c 50 uint32_t mbox; local in function:bcm2835_mbox_read
65 mbox = bus_space_read_4(iot, ioh, BCM2835_MBOX0_READ);
67 rchan = BCM2835_MBOX_CHAN(mbox);
68 rdata = BCM2835_MBOX_DATA(mbox);
bcm2835_mbox.c 53 uint32_t mbox, chan, data; local in function:bcmmbox_intr1
64 mbox = bus_space_read_4(sc->sc_iot, sc->sc_ioh,
67 chan = BCM2835_MBOX_CHAN(mbox);
68 data = BCM2835_MBOX_DATA(mbox);
99 /* enable mbox interrupt */
  /src/sys/external/bsd/drm2/dist/drm/i915/
intel_sideband.c 342 static inline int gen6_check_mailbox_status(u32 mbox)
344 switch (mbox & GEN6_PCODE_ERROR_MASK) {
357 MISSING_CASE(mbox & GEN6_PCODE_ERROR_MASK);
362 static inline int gen7_check_mailbox_status(u32 mbox)
364 switch (mbox & GEN6_PCODE_ERROR_MASK) {
376 MISSING_CASE(mbox & GEN6_PCODE_ERROR_MASK);
382 u32 mbox, u32 *val, u32 *val1,
403 GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
410 &mbox))
419 return gen7_check_mailbox_status(mbox);
    [all...]
intel_sideband.h 135 int sandybridge_pcode_read(struct drm_i915_private *i915, u32 mbox,
137 int sandybridge_pcode_write_timeout(struct drm_i915_private *i915, u32 mbox,
140 #define sandybridge_pcode_write(i915, mbox, val) \
141 sandybridge_pcode_write_timeout(i915, mbox, val, 500, 0)
143 int skl_pcode_request(struct drm_i915_private *i915, u32 mbox, u32 request,
  /src/sys/dev/pci/
mfii.c 717 union mfi_mbox mbox; local in function:mfii_attach
930 memset(&mbox, 0, sizeof(mbox));
932 mbox.b[0] = 1;
934 if (mfii_mgmt(sc, MR_DCMD_LD_GET_LIST, &mbox, &sc->sc_ld_list,
1117 union mfi_mbox mbox; local in function:mfii_shutdown
1120 memset(&mbox, 0, sizeof(mbox));
1132 mbox.b[0] = MR_FLUSH_CTRL_CACHE | MR_FLUSH_DISK_CACHE;
1134 if (mfii_do_mgmt(sc, ccb, MR_DCMD_CTRL_CACHE_FLUSH, &mbox,
1433 union mfi_mbox mbox; local in function:mfii_aen_ld_update
2990 union mfi_mbox mbox; local in function:mfii_bio_getitall
3213 union mfi_mbox mbox; local in function:mfii_ioctl_disk
3407 union mfi_mbox mbox; local in function:mfii_ioctl_blink
3469 union mfi_mbox mbox; local in function:mfii_makegood
3536 union mfi_mbox mbox; local in function:mfii_makespare
3577 union mfi_mbox mbox; local in function:mfii_ioctl_setstate
3817 union mfi_mbox mbox; local in function:mfii_bio_hs
    [all...]
  /src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/broadcom/stingray/
stingray-fs4.dtsi 40 compatible = "brcm,iproc-flexrm-mbox";
43 #mbox-cells = <3>;
48 compatible = "brcm,iproc-flexrm-mbox";
52 #mbox-cells = <3>;
  /src/sys/kern/
subr_ipi.c 269 put_msg(ipi_mbox_t *mbox, ipi_msg_t *msg)
274 if (atomic_cas_ptr(&mbox->msg[i], NULL, msg) == NULL) {
324 ipi_mbox_t *mbox = &ipi_mboxes[cpu_index(ci)]; local in function:ipi_msg_cpu_handler
330 if ((msg = atomic_load_acquire(&mbox->msg[i])) == NULL) {
333 atomic_store_relaxed(&mbox->msg[i], NULL);
  /src/sys/dev/ic/
mfi.c 972 union mfi_mbox mbox; local in function:mfi_shutdown
977 memset(&mbox, 0, sizeof(mbox));
978 mbox.b[0] = MR_FLUSH_CTRL_CACHE | MR_FLUSH_DISK_CACHE;
980 MFI_DATA_NONE, 0, NULL, &mbox, true)) {
985 mbox.b[0] = 0;
987 MFI_DATA_NONE, 0, NULL, &mbox, true)) {
1583 union mfi_mbox mbox; local in function:mfi_scsipi_request
1688 memset(&mbox, 0, sizeof(mbox));
2041 union mfi_mbox mbox; local in function:mfi_ioctl_vol
2149 union mfi_mbox mbox; local in function:mfi_ioctl_disk
2307 union mfi_mbox mbox; local in function:mfi_ioctl_blink
2368 union mfi_mbox mbox; local in function:mfi_ioctl_setstate
2437 union mfi_mbox mbox; local in function:mfi_bio_hs
3394 union mfi_mbox mbox; local in function:mfi_tbolt_sync_map_info
    [all...]
  /src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/freescale/
imx8-ss-audio.dtsi 59 mbox-names = "txdb0", "txdb1",

Completed in 25 milliseconds

1 2 3 4 5