Home
last modified time | relevance | path

Searched full:operation (Results 1 – 25 of 235) sorted by relevance

12345678910

/nrf52832-nimble/nordic/nrfx/drivers/include/
H A Dnrfx_qspi.h54 … xip_offset; /**< Address offset into the external memory for Execute in Place operation. */
154 * Write, read, and erase operations check memory device busy state before starting the operation.
155 …* If the memory is busy, the resulting action depends on the mode in which the read operation is u…
156 * - blocking mode (without handler) - a delay occurs until the last operation still runs and
157 * until operation data is still being read.
158 * - interrupt mode (with handler) - event emission occurs after the last operation
165 * @retval NRFX_SUCCESS If the operation was successful (blocking mode) or operation
167 * @retval NRFX_ERROR_BUSY If the driver currently handles another operation.
177 * Write, read, and erase operations check memory device busy state before starting the operation.
178 …* If the memory is busy, the resulting action depends on the mode in which the write operation is …
[all …]
H A Dnrfx_twi.h288 …* - @ref NRFX_TWI_XFER_TXRX<span></span>: Write operation followed by a read operation (without ST…
289 …* - @ref NRFX_TWI_XFER_TXTX<span></span>: Write operation followed by a write operation (without S…
290 * - @ref NRFX_TWI_XFER_TX<span></span>: Write operation (with or without STOP condition).
291 * - @ref NRFX_TWI_XFER_RX<span></span>: Read operation (with STOP condition).
H A Dnrfx_twim.h308 …* - @ref NRFX_TWIM_XFER_TXRX<span></span>: Write operation followed by a read operation (without S…
309 …* - @ref NRFX_TWIM_XFER_TXTX<span></span>: Write operation followed by a write operation (without …
310 * - @ref NRFX_TWIM_XFER_TX<span></span>: Write operation (with or without STOP condition).
311 * - @ref NRFX_TWIM_XFER_RX<span></span>: Read operation (with STOP condition).
H A Dnrfx_pdm.h77 nrf_pdm_mode_t mode; ///< Interface operation mode.
164 * @retval NRFX_ERROR_BUSY If a previous start/stop operation is in progress.
176 * @retval NRFX_ERROR_BUSY If a previous start/stop operation is in progress.
/nrf52832-nimble/nordic/nrfx/soc/
H A Dnrfx_atomic.h84 * @brief Function for running a logical OR operation on an atomic object
88 * @param[in] value Value of the second operand in the OR operation.
95 * @brief Function for running a logical OR operation on an atomic object
99 * @param[in] value Value of the second operand in the OR operation.
106 * @brief Function for running a logical AND operation on an atomic object
110 * @param[in] value Value of the second operand in the AND operation.
117 * @brief Function for running a logical AND operation on an atomic object
121 * @param[in] value Value of the second operand in the AND operation.
128 * @brief Function for running a logical XOR operation on an atomic object
132 * @param[in] value Value of the second operand in the XOR operation.
[all …]
H A Dnrfx_atomic_internal.h237 * @brief Atomic operation generic macro.
239 * @param[in] asm_op Operation: mov, orr, and, eor, add, sub.
240 * @param[out] old_val Atomic object output (uint32_t), value before operation.
241 * @param[out] new_val Atomic object output (uint32_t), value after operation.
242 * @param[in] value Atomic operation operand.
/nrf52832-nimble/rt-thread/components/libc/aio/
H A Dposix_aio.c42 * descriptor with which the asynchronous operation was initiated, unspecified results occur.
66 * asynchronous I/O operation is the errno value that would be set by the corresponding
81 * operation, as specified by the op argument, for I/O operations associated with
94 * completion. If the aio_fsync() function fails, or if the operation queued by
106 * operation while it is proceeding. When the request is queued, the error status
107 * for the operation is [EINPROGRESS]. When all data has been successfully transferred,
108 * the error status shall be reset to reflect the success or failure of the operation.
109 * If the operation does not complete successfully, the error status for the
110 * operation shall be set to indicate the error. The aio_sigevent member determines
185 * If prioritized I/O is supported for this file, then the asynchronous operation
[all …]
/nrf52832-nimble/rt-thread/components/net/uip/uip/
H A Dlc.h66 * This operation initializes the local continuation, thereby
76 * The set operation saves the state of the function at the point
77 * where the operation is executed. As far as the set operation is
89 * The resume operation resumes a previously set local continuation, thus
92 * previously set, the resume operation does nothing.
101 * The end operation signifies that local continuations should not be
102 * used any more in the function. This operation is not needed for
/nrf52832-nimble/nordic/nrfx/templates/
H A Dnrfx_glue.h179 …* @brief Macro for running a bitwise OR operation on an atomic object and returning its previous v…
182 * @param[in] value Value of the second operand in the OR operation.
189 * @brief Macro for running a bitwise AND operation on an atomic object
193 * @param[in] value Value of the second operand in the AND operation.
200 * @brief Macro for running a bitwise XOR operation on an atomic object
204 * @param[in] value Value of the second operand in the XOR operation.
211 * @brief Macro for running an addition operation on an atomic object
215 * @param[in] value Value of the second operand in the ADD operation.
222 * @brief Macro for running a subtraction operation on an atomic object
226 * @param[in] value Value of the second operand in the SUB operation.
/nrf52832-nimble/nordic/nrfx/drivers/
H A Dnrfx_errors.h50 …NRFX_SUCCESS = (NRFX_ERROR_BASE_NUM + 0), ///< Operation performed successfull…
52 NRFX_ERROR_NO_MEM = (NRFX_ERROR_BASE_NUM + 2), ///< No memory for operation.
55 …NRFX_ERROR_INVALID_STATE = (NRFX_ERROR_BASE_NUM + 5), ///< Invalid state, operation disall…
57 NRFX_ERROR_TIMEOUT = (NRFX_ERROR_BASE_NUM + 7), ///< Operation timed out.
58 NRFX_ERROR_FORBIDDEN = (NRFX_ERROR_BASE_NUM + 8), ///< Operation is forbidden.
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/include/lwip/
H A Derrno.h48 #define EPERM 1 /* Operation not permitted */
88 #define EWOULDBLOCK EAGAIN /* Operation would block */
137 #define ENOTSOCK 88 /* Socket operation on non-socket */
144 #define EOPNOTSUPP 95 /* Operation not supported on transport endpoint */
163 #define EALREADY 114 /* Operation already in progress */
164 #define EINPROGRESS 115 /* Operation now in progress */
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/include/lwip/
H A Derrno.h48 #define EPERM 1 /* Operation not permitted */
88 #define EWOULDBLOCK EAGAIN /* Operation would block */
137 #define ENOTSOCK 88 /* Socket operation on non-socket */
144 #define EOPNOTSUPP 95 /* Operation not supported on transport endpoint */
163 #define EALREADY 114 /* Operation already in progress */
164 #define EINPROGRESS 115 /* Operation now in progress */
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/api/
H A Derr.c54 EINPROGRESS, /* ERR_INPROGRESS -5 Operation in progress */
56 EWOULDBLOCK, /* ERR_WOULDBLOCK -7 Operation would block. */
86 "Operation in progress.", /* ERR_INPROGRESS -5 */
88 "Operation would block.", /* ERR_WOULDBLOCK -7 */
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/api/
H A Derr.c54 EINPROGRESS, /* ERR_INPROGRESS -5 Operation in progress */
56 EWOULDBLOCK, /* ERR_WOULDBLOCK -7 Operation would block. */
86 "Operation in progress.", /* ERR_INPROGRESS -5 */
88 "Operation would block.", /* ERR_WOULDBLOCK -7 */
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/src/include/lwip/
H A Darch.h79 #define EPERM 1 /* Operation not permitted */
119 #define EWOULDBLOCK EAGAIN /* Operation would block */
168 #define ENOTSOCK 88 /* Socket operation on non-socket */
175 #define EOPNOTSUPP 95 /* Operation not supported on transport endpoint */
194 #define EALREADY 114 /* Operation already in progress */
195 #define EINPROGRESS 115 /* Operation now in progress */
H A Derr.h57 #define ERR_INPROGRESS -5 /* Operation in progress */
59 #define ERR_WOULDBLOCK -7 /* Operation would block. */
/nrf52832-nimble/packages/NimBLE-latest/nimble/host/include/host/
H A Dble_store.h232 * Indicates an inability to perform a store operation. This callback should
234 * o Address the problem and return 0, indicating that the store operation
236 * o Return nonzero to indicate that the store operation should be aborted.
241 * @return 0 if the store operation should proceed;
242 * nonzero if the store operation should be
/nrf52832-nimble/rt-thread/tools/kconfig-frontends/scripts/.autostuff/scripts/
H A Dar-lib79 # func_at_file at_file operation archive
80 # Iterate over all members in AT_FILE performing OPERATION on ARCHIVE
87 operation=$2
95 $AR -NOLOGO $operation:"$member" "$archive" || exit $?
/nrf52832-nimble/nordic/nrfx/hal/
H A Dnrf_pdm.h97 * @brief PDM operation mode.
240 * @brief Function for setting the PDM operation mode.
242 * @param[in] pdm_mode PDM operation mode.
248 * @brief Function for getting the PDM operation mode.
250 * @param[out] p_pdm_mode PDM operation mode.
302 * The amount of allocated RAM depends on the operation mode.
/nrf52832-nimble/rt-thread/libcpu/arm/armv6/
H A Dvfp.h48 #define FPSCR_IOE (1<<8) /* Invalid Operation exception trap enable bit */
54 #define FPSCR_IOC (1<<0) /* Invalid Operation cumulative exception flag */
66 #define FPEXC_IOC (1 << 0) /* Potential invalid operation flag */
/nrf52832-nimble/rt-thread/components/net/uip/doc/html/
H A Da00191.html86 <a name="l00066"></a>00066 <span class="comment"> * This operation initializes the local continuati…
96 <a name="l00076"></a>00076 <span class="comment"> * The set operation saves the state of the functi…
97 …0077"></a>00077 <span class="comment"> * where the operation is executed. As far as the set operat…
109 <a name="l00089"></a>00089 <span class="comment"> * The resume operation resumes a previously set l…
112 <a name="l00092"></a>00092 <span class="comment"> * previously set, the resume operation does nothi…
121 <a name="l00101"></a>00101 <span class="comment"> * The end operation signifies that local continua…
122 <a name="l00102"></a>00102 <span class="comment"> * used any more in the function. This operation i…
/nrf52832-nimble/rt-thread/components/dfs/filesystems/jffs2/cyg/compress/src/
H A Dinftrees.h12 information needed to do the operation requested by the code that
25 unsigned char op; /* operation, extra bits, table bits */
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/src/api/
H A Derr.c49 "Operation in progress.", /* ERR_INPROGRESS -5 */
51 "Operation would block.", /* ERR_WOULDBLOCK -7 */
/nrf52832-nimble/rt-thread/src/
H A Dthread.c227 * @return the operation status, RT_EOK on OK, -RT_ERROR on error
284 * @return the operation status, RT_EOK on OK, -RT_ERROR on error
327 * @return the operation status, RT_EOK on OK, -RT_ERROR on error
427 * @return the operation status, RT_EOK on OK, -RT_ERROR on error
651 * @return the operation status, RT_EOK on OK, -RT_ERROR on error
703 * @return the operation status, RT_EOK on OK, -RT_ERROR on error
/nrf52832-nimble/rt-thread/components/drivers/include/drivers/
H A Dmtd.h23 * MTD operation modes
66 uint8_t mode; /* operation mode(enum mtd_opm) */

12345678910