/nrf52832-nimble/rt-thread/components/net/uip/uip/ |
H A D | pt.h | 138 * Block and wait until condition is true. 140 * This macro blocks the protothread until the specified condition is 177 * Block and wait until a child protothread completes. 180 * will block until the child protothread completes. 195 * Spawn a child protothread and wait until it exits. 197 * This macro spawns a child protothread and waits until it exits. The 300 * \brief Yield from the protothread until a condition occurs. 304 * This function will yield the protothread, until the
|
H A D | psock.h | 165 * until all data has been sent and is known to have been received by 239 * Read data until the buffer is full. 243 * until the buffer is full.. 259 * read until the specifieed character appears in the data stream. 342 * Wait until a condition is true. 344 * This macro blocks the protothread until the specified condition is
|
H A D | psock.c | 193 /* We loop here until all data is sent. The s->sendlen variable is in PT_THREAD() 199 * protothread will wait here until all data has been acknowledged in PT_THREAD() 200 * (data_acked() returns true) and until all data has been sent in PT_THREAD() 237 /* Wait until all data is sent and acknowledged. */ in PT_THREAD()
|
/nrf52832-nimble/packages/NimBLE-latest/porting/nimble/src/ |
H A D | os_cputime.c | 45 * Wait until the number of ticks has elapsed. This is a blocking delay. 52 uint32_t until; in os_cputime_delay_ticks() local 54 until = os_cputime_get32() + ticks; in os_cputime_delay_ticks() 55 while ((int32_t)(os_cputime_get32() - until) < 0) { in os_cputime_delay_ticks()
|
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/src/include/lwip/ |
H A D | sio.h | 70 * @note This function will block until the character can be sent. 81 * @note This function will block until a character is received. 95 * @note This function will block until data can be received. The blocking 123 * @note This function will block until all data can be sent.
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/include/lwip/ |
H A D | sio.h | 71 * @note This function will block until the character can be sent. 82 * @note This function will block until a character is received. 96 * @note This function will block until data can be received. The blocking 124 * @note This function will block until all data can be sent.
|
H A D | dhcp.h | 85 u16_t t1_renew_time; /* #ticks with period DHCP_COARSE_TIMER_SECS until next renew try */ 86 u16_t t2_rebind_time; /* #ticks with period DHCP_COARSE_TIMER_SECS until next rebind try */
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/include/lwip/ |
H A D | sio.h | 71 * @note This function will block until the character can be sent. 82 * @note This function will block until a character is received. 96 * @note This function will block until data can be received. The blocking 124 * @note This function will block until all data can be sent.
|
/nrf52832-nimble/nordic/nrfx/drivers/include/ |
H A D | nrfx_qspi.h | 156 * - blocking mode (without handler) - a delay occurs until the last operation still runs and 157 * until operation data is still being read. 179 * - blocking mode (without handler) - a delay occurs until the last operation still runs and 180 * until operation data is still being sent. 206 * - blocking mode (without handler) - a delay occurs until the last operation still runs and 207 * until operation data is still being sent.
|
/nrf52832-nimble/nordic/nrfx/hal/ |
H A D | nrf_spu.h | 176 * @param[in] lock_conf Lock configuration until next SoC reset. 192 * @param[in] lock_conf Lock configuration until next SoC reset. 206 * @param[in] lock_conf Lock configuration until next SoC reset. 221 * @param[in] lock_conf Lock configuration until next SoC reset. 238 * @param[in] lock_conf Lock configuration until next SoC reset. 255 * @param[in] lock_conf Lock configuration until next SoC reset. 270 * @param[in] lock_conf Lock configuration until next SoC reset.
|
/nrf52832-nimble/rt-thread/examples/libc/ |
H A D | ex5.c | 34 /* Wait until buffer is not full */ in put() 49 /* Wait until buffer is not empty */ in get() 98 /* Wait until producer and consumer finish. */ in libc_ex5()
|
H A D | ex2.c | 36 /* Wait until buffer is not full */ in put() 56 /* Wait until buffer is not empty */ in get() 108 /* Wait until producer and consumer finish. */ in libc_ex2()
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/include/lwip/apps/ |
H A D | smtp.h | 52 * (e.g. using mem_malloc/mem_free) until its 'callback_fn' is called. 63 * This means less memory usage, but data must stay untouched until 93 * data, your function will be repeatedly called until that happens; so if you
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/doc/ |
H A D | sys_arch.txt | 71 blocked until the semaphore is signalled. 110 Blocks the thread until the mutex can be grabbed. 148 Posts the "msg" to the mailbox. This function have to block until 158 Blocks the thread until a message arrives in the mailbox, but does 161 be blocked until a message arrives. The "msg" argument is a result
|
/nrf52832-nimble/rt-thread/components/dfs/filesystems/jffs2/cyg/compress/src/ |
H A D | inflate.h | 47 DONE, /* finished check, done -- remain here until reset */ 48 BAD, /* got a data error -- remain here until reset */ 49 MEM, /* got an inflate() memory error -- remain here until reset */
|
/nrf52832-nimble/packages/NimBLE-latest/docs/ble_setup/ |
H A D | ble_sync_cb.rst | 20 should delay all BLE operations until the sync callback has been called. 29 reset, the application should refrain from using the host until sync is
|
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/doc/ |
H A D | sys_arch.txt | 72 blocked until the semaphore is signalled. 115 Posts the "msg" to the mailbox. This function have to block until 125 Blocks the thread until a message arrives in the mailbox, but does 128 be blocked until a message arrives. The "msg" argument is a result
|
/nrf52832-nimble/packages/NimBLE-latest/porting/nimble/include/os/ |
H A D | os_cputime.h | 136 * Wait until 'nsecs' nanoseconds has elapsed. This is a blocking delay. 170 * Wait until the number of ticks has elapsed. This is a blocking delay. 177 * Wait until 'usecs' microseconds has elapsed. This is a blocking delay.
|
/nrf52832-nimble/rt-thread/components/libc/termios/ |
H A D | posix_termios.c | 35 * Don't make the change until all currently written data in tcsetattr() 40 /* Don't make the change until all currently written data in tcsetattr()
|
/nrf52832-nimble/rt-thread/libcpu/c-sky/common/ |
H A D | csi_instr.h | 43 …\details Wait For Interrupt is a hint instruction that suspends execution until one of a number of… 52 …\details Wait For Interrupt is a hint instruction that suspends execution until one interrupt occu… 61 …\details Doze For Interrupt is a hint instruction that suspends execution until one interrupt occu… 70 …\details Stop For Interrupt is a hint instruction that suspends execution until one interrupt occu…
|
/nrf52832-nimble/rt-thread/tools/kconfig-frontends/scripts/.autostuff/m4/ |
H A D | ltsugar.m4 | 21 # Needed until we can rely on m4_join from Autoconf 2.62, since all earlier 54 # This macro is needed until we can rely on Autoconf 2.62, since earlier 67 # Needed until we can rely on m4_combine added in Autoconf 2.62.
|
/nrf52832-nimble/rt-thread/components/net/uip/doc/html/ |
H A D | a00142.html | 68 …ad is running. Each time the function is called, the protothread will run until it blocks or exits… 113 <tr><td class="mdescLeft"> </td><td class="mdescRight">Block and wait until condition is true.… 120 <tr><td class="mdescLeft"> </td><td class="mdescRight">Block and wait until a child protothrea… 123 …eft"> </td><td class="mdescRight">Spawn a child protothread and wait until it exits. <a href… 141 <tr><td class="mdescLeft"> </td><td class="mdescRight">Yield from the protothread until a cond… 423 Spawn a child protothread and wait until it exits. 425 This macro spawns a child protothread and waits until it exits. The macro can only be used within a… 505 Block and wait until a child protothread completes. 507 This macro schedules a child protothread. The current protothread will block until the child protot… 549 Block and wait until condition is true. [all …]
|
H A D | a00128.html | 54 <tr><td class="mdescLeft"> </td><td class="mdescRight">Block and wait until condition is true.… 61 <tr><td class="mdescLeft"> </td><td class="mdescRight">Block and wait until a child protothrea… 64 …eft"> </td><td class="mdescRight">Spawn a child protothread and wait until it exits. <a href… 82 <tr><td class="mdescLeft"> </td><td class="mdescRight">Yield from the protothread until a cond…
|
/nrf52832-nimble/rt-thread/components/dfs/filesystems/jffs2/cyg/compress/include/ |
H A D | zlib.h | 291 avail_out), until the flush is complete (deflate returns with non-zero 300 more input data, until it returns with Z_STREAM_END or an error. After 379 accordingly. inflate() provides as much output as possible, until there 407 deflate stream. The end-of-block will not be indicated until all of the 413 inflate() should normally be called until it returns Z_STREAM_END or an 760 Skips invalid compressed data until a full flush point (see above the 761 description of deflate with Z_FULL_FLUSH) can be found, or until all 770 until success or end of the input data. 821 As inflate() processes the gzip stream, head->done is zero until the header 889 the output function, at least until inflateBack() returns. [all …]
|
/nrf52832-nimble/rt-thread/components/dfs/filesystems/jffs2/cyg/compress/ |
H A D | zlib.h | 291 avail_out), until the flush is complete (deflate returns with non-zero 300 more input data, until it returns with Z_STREAM_END or an error. After 379 accordingly. inflate() provides as much output as possible, until there 407 deflate stream. The end-of-block will not be indicated until all of the 413 inflate() should normally be called until it returns Z_STREAM_END or an 760 Skips invalid compressed data until a full flush point (see above the 761 description of deflate with Z_FULL_FLUSH) can be found, or until all 770 until success or end of the input data. 821 As inflate() processes the gzip stream, head->done is zero until the header 889 the output function, at least until inflateBack() returns. [all …]
|