Lines Matching +full:response +full:- +full:timeout

4  * Text-based command handler implementation for modem context driver.
10 * SPDX-License-Identifier: Apache-2.0
30 .cmd_len = (uint16_t)sizeof(cmd_)-1, \
40 .cmd_len = (uint16_t)sizeof(cmd_)-1, \
52 .cmd_len = (uint16_t)sizeof(cmd_)-1, \
173 * @param sem: wait for response semaphore
174 * @param timeout: timeout of command
183 struct k_sem *sem, k_timeout_t timeout, int flags);
193 * @param sem: wait for response semaphore
194 * @param timeout: timeout of command
203 k_timeout_t timeout) in modem_cmd_send_nolock() argument
206 handler_cmds_len, buf, sem, timeout, in modem_cmd_send_nolock()
218 * @param sem: wait for response semaphore
219 * @param timeout: timeout of command
227 struct k_sem *sem, k_timeout_t timeout) in modem_cmd_send() argument
230 handler_cmds_len, buf, sem, timeout, 0); in modem_cmd_send()
240 * @param sem: wait for response semaphore
241 * @param timeout: timeout of command
248 struct k_sem *sem, k_timeout_t timeout);
257 * @param sem: wait for response semaphore
258 * @param timeout: timeout of command
266 k_timeout_t timeout);
279 * @param alloc_timeout Timeout for allocating data in buffer pool
282 * @param response_cmds Array of response command handlers
283 * @param response_cmds_len Length of response command handlers array
313 * @return -EINVAL if any argument is invalid
323 * This is semaphore-based rather than mutex based, which means there's no
329 * @param timeout: give up after timeout
334 k_timeout_t timeout);
360 handler->process(handler, iface); in modem_cmd_handler_process()