Home
last modified time | relevance | path

Searched refs:mbox (Results 1 – 25 of 30) sorted by relevance

12

/third_party/lwip/test/unit/arch/
Dsys_arch.c209 sys_mbox_new(sys_mbox_t *mbox, int size) in sys_mbox_new() argument
212 LWIP_ASSERT("mbox != NULL", mbox != NULL); in sys_mbox_new()
217 mbox->head = mbox->tail = 0; in sys_mbox_new()
218 mbox->sem = mbox; /* just point to something for sys_mbox_valid() */ in sys_mbox_new()
219 mbox->q_mem = (void**)malloc(sizeof(void*)*mboxsize); in sys_mbox_new()
220 mbox->size = mboxsize; in sys_mbox_new()
221 mbox->used = 0; in sys_mbox_new()
223 memset(mbox->q_mem, 0, sizeof(void*)*mboxsize); in sys_mbox_new()
228 sys_mbox_free(sys_mbox_t *mbox) in sys_mbox_free() argument
231 LWIP_ASSERT("mbox != NULL", mbox != NULL); in sys_mbox_free()
[all …]
Dsys_arch.h50 #define sys_mbox_valid(mbox) ((mbox != NULL) && ((mbox)->sem != NULL) && ((mbox)->sem != (void*)-1… argument
51 #define sys_mbox_valid_val(mbox) (((mbox).sem != NULL) && ((mbox).sem != (void*)-1)) argument
/third_party/lwip/src/include/lwip/
Dsys.h285 err_t sys_mbox_new(sys_mbox_t *mbox, int size);
294 void sys_mbox_post(sys_mbox_t *mbox, void *msg);
304 err_t sys_mbox_trypost(sys_mbox_t *mbox, void *msg);
314 err_t sys_mbox_trypost_fromisr(sys_mbox_t *mbox, void *msg);
336 u32_t sys_arch_mbox_fetch(sys_mbox_t *mbox, void **msg, u32_t timeout);
355 u32_t sys_arch_mbox_tryfetch(sys_mbox_t *mbox, void **msg);
360 #define sys_mbox_tryfetch(mbox, msg) sys_arch_mbox_tryfetch(mbox, msg)
369 void sys_mbox_free(sys_mbox_t *mbox);
370 #define sys_mbox_fetch(mbox, msg) sys_arch_mbox_fetch(mbox, msg, 0)
379 int sys_mbox_valid(sys_mbox_t *mbox);
[all …]
Dstats.h120 struct stats_syselem mbox; member
/third_party/lwip/src/api/
Dtcpip.c72 #define TCPIP_MBOX_FETCH(mbox, msg) sys_mbox_fetch(mbox, msg) argument
75 #define TCPIP_MBOX_FETCH(mbox, msg) tcpip_timeouts_mbox_fetch(mbox, msg) argument
84 tcpip_timeouts_mbox_fetch(sys_mbox_t *mbox, void **msg) in tcpip_timeouts_mbox_fetch() argument
94 sys_arch_mbox_fetch(mbox, msg, 0); in tcpip_timeouts_mbox_fetch()
104 res = sys_arch_mbox_fetch(mbox, msg, sleeptime); in tcpip_timeouts_mbox_fetch()
Dapi_msg.c69 #define NETCONN_MBOX_VALID(conn, mbox) (sys_mbox_valid(mbox) && ((conn->flags & NETCONN_FLAG_MBOXIN… argument
71 #define NETCONN_MBOX_VALID(conn, mbox) sys_mbox_valid(mbox) argument
/third_party/libsoup/
Dlibsoup.doap21 <foaf:mbox rdf:resource="mailto:danw@gnome.org" />
28 <foaf:mbox rdf:resource="mailto:csaavedra@igalia.com" />
35 <foaf:mbox rdf:resource="mailto:pgriffis@igalia.com" />
/third_party/lwip/src/core/
Dstats.c136 LWIP_PLATFORM_DIAG(("mbox.used: %"STAT_COUNTER_F"\n\t", sys->mbox.used)); in stats_display_sys()
137 LWIP_PLATFORM_DIAG(("mbox.max: %"STAT_COUNTER_F"\n\t", sys->mbox.max)); in stats_display_sys()
138 LWIP_PLATFORM_DIAG(("mbox.err: %"STAT_COUNTER_F"\n", sys->mbox.err)); in stats_display_sys()
/third_party/pulseaudio/src/utils/
Dqpaeq198 mbox=QtWidgets.QMessageBox(self)
199 mbox.setText('%s preset already exists'%(profile,))
200 mbox.setInformativeText('Do you want to save over it?')
201 mbox.setStandardButtons(mbox.Save|mbox.Discard|mbox.Cancel)
202 mbox.setDefaultButton(mbox.Save)
203 ret=mbox.exec_()
204 if ret!=mbox.Save:
/third_party/python/Doc/library/
Dmailbox.rst19 Supported mailbox formats are Maildir, mbox, MH, Babyl, and MMDF.
72 tasks is Maildir; try to avoid using single-file formats such as mbox for
92 :class:`mboxMessage` instance and this is an :class:`mbox` instance), its
124 :class:`mbox` instance), its format-specific information is
438 .. _mailbox-mbox:
440 :class:`mbox`
444 .. class:: mbox(path, factory=None, create=True)
446 A subclass of :class:`Mailbox` for mailboxes in mbox format. Parameter *factory*
453 The mbox format is the classic format for storing mail on Unix systems. All
454 messages in an mbox mailbox are stored in a single file with the beginning of
[all …]
Demail.generator.rst58 *mangle_from_* is intended for use when messages are stored in unix mbox
159 *mangle_from_* is intended for use when messages are stored in unix mbox
Demail.compat32-message.rst86 required by the unix mbox format. For more flexibility, instantiate a
128 required by the unix mbox format. For more flexibility, instantiate a
/third_party/python/Lib/test/
Dtest_mailbox.py1119 _factory = lambda self, path, factory=None: mailbox.mbox(path, factory)
1130 self._box = mailbox.mbox(self._path, create=True)
2154 def createMessage(self, dir, mbox=False): argument
2163 if mbox:
2178 self.mbox = mailbox.Maildir(os_helper.TESTFN)
2181 self.assertIsNone(self.mbox.next())
2182 self.assertIsNone(self.mbox.next())
2186 self.mbox = mailbox.Maildir(os_helper.TESTFN)
2188 self.assertIsNotNone(self.mbox.next())
2189 self.assertIsNone(self.mbox.next())
[all …]
Dmime.types110 application/mbox mbox
/third_party/skia/third_party/externals/harfbuzz/
Dharfbuzz.doap21 <foaf:mbox rdf:resource="mailto:harfbuzz@behdad.org" />
/third_party/harfbuzz/
Dharfbuzz.doap21 <foaf:mbox rdf:resource="mailto:harfbuzz@behdad.org" />
/third_party/flutter/skia/third_party/externals/harfbuzz/
Dharfbuzz.doap21 <foaf:mbox rdf:resource="mailto:harfbuzz@behdad.org" />
/third_party/boost/libs/math/doc/equations/
Dbessel11.mml1 …th/MathML" display="block" ><mrow > <!--mstyle class="mbox"--><mtext class="te…
Dmbessel11.mml1 …h/MathML" display="block" ><mrow > <!--mstyle class="mbox"--><mtext class="te…
Dmbessel12.mml1 …998/Math/MathML" display="block" ><mrow > <!--mstyle class="mbox"--><mtext class="te…
Dbessel12.mml1 …ww.w3.org/1998/Math/MathML" display="block" ><mrow > <!--mstyle class="mbox"--><mtext class="te…
/third_party/node/deps/npm/node_modules/mime-db/
DHISTORY.md248 - `application/mbox+xml`
/third_party/lwip/
DUPGRADING190 * Converted mbox- and semaphore-functions to take pointers to sys_mbox_t/
DCHANGELOG1652 mbox and semaphore functions to take pointers to sys_mbox_t/sys_sem_t;
1729 added timers.c/.h: Separated timer implementation from semaphore/mbox
2434 sent to mbox
2730 netconn::mbox (sys_mbox_t) per netconn::sem (sys_sem_t) for the task #7490
2738 in opt.h to indicate sizes for tcpip::mbox, netconn::recvmbox, and for the
3347 netconn, this recvmbox is later freed and a new mbox is allocated for acceptmbox.
3759 * api_lib.c, api_msg.c, tcpip.c: integrate sys_mbox_fetch(conn->mbox, NULL) calls from
3790 * tcpip.c: Initialize tcpip's mbox, and verify if initialized in tcpip_input,
/third_party/python/Doc/whatsnew/
D2.5.rst1406 :class:`mbox`, :class:`MH`, and :class:`Maildir` are used to read mailboxes, and
1409 The following example converts a maildir-format mailbox into an mbox-format
1417 dest = mailbox.mbox('/tmp/mbox')

12