Home
last modified time | relevance | path

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

12345678910>>...45

/Zephyr-latest/modules/openthread/platform/
Dcrypto_psa.c222 psa_mac_operation_t *operation; in otPlatCryptoHmacSha256Init() local
228 operation = aContext->mContext; in otPlatCryptoHmacSha256Init()
229 *operation = psa_mac_operation_init(); in otPlatCryptoHmacSha256Init()
236 psa_mac_operation_t *operation; in otPlatCryptoHmacSha256Deinit() local
242 operation = aContext->mContext; in otPlatCryptoHmacSha256Deinit()
244 return psaToOtError(psa_mac_abort(operation)); in otPlatCryptoHmacSha256Deinit()
249 psa_mac_operation_t *operation; in otPlatCryptoHmacSha256Start() local
256 operation = aContext->mContext; in otPlatCryptoHmacSha256Start()
257 status = psa_mac_sign_setup(operation, aKey->mKeyRef, PSA_ALG_HMAC(PSA_ALG_SHA_256)); in otPlatCryptoHmacSha256Start()
265 psa_mac_operation_t *operation; in otPlatCryptoHmacSha256Update() local
[all …]
/Zephyr-latest/include/zephyr/drivers/wifi/nrf_wifi/off_raw_tx/
Doff_raw_tx_api.h140 * Parameters which can be used to configure the offloaded raw TX operation.
186 * @retval 0 If the operation was successful.
187 * @retval -1 If the operation failed.
201 * @param conf Configuration parameters to be updated for the offloaded raw TX operation.
203 * This function is used to update configured parameters for offloaded raw TX operation.
205 * raw TX operation without having to stop it.
207 * @retval 0 If the operation was successful.
208 * @retval -1 If the operation failed.
214 * @param conf Configuration parameters necessary for the offloaded raw TX operation.
216 * This function is used to start offloaded raw TX operation. When this function is invoked
[all …]
/Zephyr-latest/include/zephyr/rtio/
Dwork.h20 * @brief Callback API to execute work operation.
22 * @param iodev_sqe Associated SQE operation.
29 * This RTIO Work request to perform a work operation decoupled
36 /** Handle to IODEV SQE containing the operation.
41 /** Callback handler where synchronous operation may be executed.
62 * @param iodev_sqe RTIO Operation information.
63 * @param handler Callback to handler where work operation is performed.
/Zephyr-latest/include/zephyr/sys/
Dnotify.h21 * Flag value that overwrites the method field when the operation has
92 * * the result of the operation, either as passed to
96 * operation succeeded, and negative if the operation failed.
102 * operation.
116 * * when operation completion is posted. This may occur before the
119 * Operation completion is technically posted when the flags field is
130 * reinitialized for the next operation.
152 * Flags recording information about the operation.
168 * The result of the operation.
197 * operation service validation of structures that contain an
[all …]
Dmath_extras.h30 * true if the operation overflowed.
39 * @return true if the operation overflowed.
48 * @return true if the operation overflowed.
58 * @return true if the operation overflowed.
67 * @return true if the operation overflowed.
77 * true if the operation overflowed.
86 * @return true if the operation overflowed.
95 * @return true if the operation overflowed.
104 * @return true if the operation overflowed.
113 * @return true if the operation overflowed.
Donoff.h92 * functions to be used to report the completion of the operation.
229 * completion of an operation.
235 * @param mgr the manager for which the operation was initiated. This may be
239 * initiated the operation.
246 * @param res the result of the operation. Expected values are
248 * operation succeeded, and negative if the operation failed. If res
272 * reinitialized for the next operation.
310 * it is known that no other process might invoke an operation that
324 * initiate an operation to request the resource be made available.
325 * If initiation of the operation succeeds the result of the request
[all …]
/Zephyr-latest/dts/bindings/bluetooth/
Dinfineon,cyw43xxx-bt-hci.yaml36 NOTE2: Use fw-download-speed and hci-operation-speed properties to configure UART
37 speeds for firmware download (fw-download-speed) and HCI operation
38 (hci-operation-speed).
39 If hci-operation-speed or fw-download-speed are not defined in bt-hci node,
68 hci-operation-speed:
71 HCI UART boudrate for feature operation. If not defined
77 HCI UART boudrate for FW download operation. If not defined
Dnxp,bt-hci-uart.yaml20 hci-operation-speed:
23 HCI UART baudrate for feature operation. If not defined
33 HCI UART primary baudrate for FW download operation.
44 HCI UART secondary baudrate for FW download operation.
/Zephyr-latest/drivers/flash/
Dsoc_flash_nrf.h48 * Callback which executes the flash operation.
51 * @retval @ref FLASH_OP_DONE once operation was done, @ref FLASH_OP_ONGOING if
52 * operation needs more time for execution and a negative error code if
53 * operation was aborted.
79 * Check if the operation need to be run synchronous with radio.
81 * @retval True if operation need to be run synchronously, otherwise False
86 * Execute the flash operation synchronously along the radio operations.
91 * FLASH_OP_ONGOING, however an operation timeout should be implemented.
94 * finished its operation.
96 * @retval 0 if op_desc->handler() was executed and finished its operation
[all …]
DKconfig.stm3235 bool "Extended operation for flash write protection control"
40 Enables flash extended operation for enabling/disabling flash write
52 bool "Extended operation for flash readout protection control"
59 Enables flash extended operation for enabling/disabling flash readout
79 bool "Extended operation for blocking option and control registers"
89 bool "Extended operation for option bytes access"
Dflash_npcx_fiu_qspi.h17 /* UMA operation flags */
28 /* UMA operation configuration for a SPI device */
71 * @param operation Qspi bus operation for the device.
75 const uint32_t operation);
/Zephyr-latest/tests/drivers/spi/spi_error_cases/src/
Dmain.c21 .operation = SPIS_OP
73 spim_invalid.config.operation |= SPI_HALF_DUPLEX; in ZTEST()
74 spis_config_invalid.operation |= SPI_HALF_DUPLEX; in ZTEST()
89 spim_invalid.config.operation |= SPI_OP_MODE_SLAVE; in ZTEST()
90 spis_config_invalid.operation &= !SPI_OP_MODE_SLAVE; in ZTEST()
92 /* Check that Operation Mode Slave on spim is not supported */ in ZTEST()
95 /* Check that Operation Mode Master on spis is not supported */ in ZTEST()
107 spim_invalid.config.operation |= SPI_MODE_LOOP; in ZTEST()
108 spis_config_invalid.operation |= SPI_MODE_LOOP; in ZTEST()
123 spim_invalid.config.operation |= SPI_LINES_DUAL; in ZTEST()
[all …]
/Zephyr-latest/subsys/bluetooth/services/ots/
DKconfig40 bool "Support OACP Create Operation"
46 bool "Support OACP Calculate Checksum operation"
49 bool "Support OACP Delete Operation"
52 bool "Support OACP Read Operation"
56 bool "Support OACP Write Operation"
63 bool "Support OLCP Go To Operation"
/Zephyr-latest/include/zephyr/console/
Dtty.h48 * interrupt-driven operation)
57 * Set timeout for getchar() operation. Default timeout after
71 * Set timeout for putchar() operation, for a case when output buffer is full.
85 * Set receive buffer or switch to unbuffered operation for receive.
88 * @param buf buffer, or NULL for unbuffered operation
89 * @param size buffer buffer size, 0 for unbuffered operation
98 * Set transmit buffer or switch to unbuffered operation for transmit.
103 * @param buf buffer, or NULL for unbuffered operation
104 * @param size buffer buffer size, 0 for unbuffered operation
/Zephyr-latest/doc/develop/api/
Dterminology.rst25 if the function may return before the operation it initializes is
26 complete (i.e. function return and operation completion are
49 suspension actually occurs depends on the operation associated with the
78 unless that thread has explicitly invoked an operation that caused it to
82 but that the operation may require an invoking thread that would have to
84 its operation. This behavior may be mediated by **no-wait**.
107 this special timeout value are to execute the function's operation as
136 calling context and transfer the operation that would sleep to a thread,
172 operation it initiates has completed. An asynchronous function will
173 generally provide a mechanism by which operation completion is reported,
[all …]
/Zephyr-latest/doc/connectivity/bluetooth/shell/audio/
Dgmap.rst70 stream 0x20020060 config operation rsp_code 0 reason 0
71 stream 0x200204d0 config operation rsp_code 0 reason 0
72 stream 0x200204d0 qos operation rsp_code 0 reason 0
73 stream 0x20020060 qos operation rsp_code 0 reason 0
75 stream 0x200204d0 enable operation rsp_code 0 reason 0
77 stream 0x20020060 enable operation rsp_code 0 reason 0
79 stream 0x200204d0 start operation rsp_code 0 reason 0
/Zephyr-latest/include/zephyr/drivers/flash/
Dnrf_qspi_nor.h15 * @brief Specifies whether XIP (execute in place) operation should be possible
18 * no QSPI operation is performed. This is done to avoid increased current
25 * occur so that it keeps the QSPI peripheral operable. When XIP operation
29 * @param enable if true, the driver enables XIP operation and suppresses
Dstm32_flash_api_extensions.h16 * As an input this operation takes a structure with two sector masks,
30 * As an input this operation takes structure with information about
38 * This operation causes option register to be locked until next boot.
46 * This operation causes control register to be locked until next boot.
47 * After calling, it's not possible to perform basic operation like
Dnpcx_flash_api_ex.h27 * NPCX Configure specific operation for Quad-SPI nor flash.
29 * It configures specific operation for Quad-SPI nor flash such as lock
35 * NPCX Get specific operation for Quad-SPI nor flash.
37 * It returns current specific operation for Quad-SPI nor flash.
/Zephyr-latest/subsys/net/lib/lwm2m/
Dlwm2m_obj_access_control.h13 * allowed to do @p operation on the object instance of object id @p obj_id
15 * be called before every operation to test access.
19 * @param server_obj_inst object instance id of the server attempting to do the operation.
20 * @param operation lwm2m operation / permission (like LWM2M_OP_READ)
28 uint16_t operation, bool bootstrap_mode);
Dlwm2m_rw_senml_json.h15 /* General Read single Path operation */
17 /* General Write single Path operation */
20 /* Send operation builder */
/Zephyr-latest/drivers/spi/
Dspi_shell.c25 .operation = SPI_OP_MODE_MASTER | SPI_WORD_SET(8)};
79 spi_operation_t operation = SPI_WORD_SET(8) | SPI_OP_MODE_MASTER; in cmd_spi_conf() local
108 operation |= SPI_MODE_CPOL; in cmd_spi_conf()
111 operation |= SPI_MODE_CPHA; in cmd_spi_conf()
114 operation |= SPI_TRANSFER_LSB; in cmd_spi_conf()
117 operation |= SPI_FRAME_FORMAT_TI; in cmd_spi_conf()
132 config.operation = operation; in cmd_spi_conf()
Dspi_litex.c62 if (config->operation & SPI_HALF_DUPLEX) { in spi_config()
67 if (SPI_WORD_SIZE_GET(config->operation) > dev_config->data_width) { in spi_config()
72 if (config->operation & SPI_CS_ACTIVE_HIGH) { in spi_config()
77 if (config->operation & SPI_LOCK_ON) { in spi_config()
83 (config->operation & SPI_LINES_MASK) != SPI_LINES_SINGLE) { in spi_config()
88 if (config->operation & SPI_TRANSFER_LSB) { in spi_config()
93 if (config->operation & (SPI_MODE_CPOL | SPI_MODE_CPHA)) { in spi_config()
98 if (config->operation & SPI_OP_MODE_SLAVE) { in spi_config()
104 if (!litex_read8(dev_config->loopback_addr) != !(config->operation & SPI_MODE_LOOP)) { in spi_config()
105 litex_write8(((config->operation & SPI_MODE_LOOP) ? 0x1 : 0x0), in spi_config()
[all …]
Dspi_ifx_cat1.c61 switch (SPI_WORD_SIZE_GET(ctx->config->operation)) { in get_dfs_value()
138 if (SPI_MODE_GET(spi_cfg->operation) & SPI_MODE_LOOP) { in spi_config()
142 if (SPI_WORD_SIZE_GET(spi_cfg->operation) > IFX_CAT1_SPI_MAX_DATA_WIDTH) { in spi_config()
143 LOG_ERR("Word size %d is greater than %d", SPI_WORD_SIZE_GET(spi_cfg->operation), in spi_config()
148 if (SPI_WORD_SIZE_GET(spi_cfg->operation) < IFX_CAT1_SPI_MIN_DATA_WIDTH) { in spi_config()
149 LOG_ERR("Word size %d is less than %d", SPI_WORD_SIZE_GET(spi_cfg->operation), in spi_config()
154 if (SPI_OP_MODE_GET(spi_cfg->operation) == SPI_OP_MODE_SLAVE) { in spi_config()
162 if (SPI_MODE_GET(spi_cfg->operation) & SPI_MODE_CPOL) { in spi_config()
166 if (SPI_MODE_GET(spi_cfg->operation) & SPI_MODE_CPHA) { in spi_config()
170 if (SPI_WORD_SIZE_GET(spi_cfg->operation)) { in spi_config()
[all …]
/Zephyr-latest/tests/subsys/fs/multi-fs/src/
Dmain.c16 * fat dir operation. in ZTEST()
27 * fat file operation. in ZTEST()
40 * littlefs dir operation. in ZTEST()
51 * littlefs file operation. in ZTEST()

12345678910>>...45