Lines Matching full:modem_chat

8 LOG_MODULE_REGISTER(modem_chat, CONFIG_MODEM_MODULES_LOG_LEVEL);
25 static void modem_chat_log_received_command(struct modem_chat *chat) in modem_chat_log_received_command()
55 static void modem_chat_log_received_command(struct modem_chat *chat) in modem_chat_log_received_command()
61 static void modem_chat_script_stop(struct modem_chat *chat, enum modem_chat_script_result result) in modem_chat_script_stop()
99 static void modem_chat_script_send(struct modem_chat *chat) in modem_chat_script_send()
109 static void modem_chat_script_next(struct modem_chat *chat, bool initial) in modem_chat_script_next()
144 static void modem_chat_script_start(struct modem_chat *chat, const struct modem_chat_script *script) in modem_chat_script_start()
166 struct modem_chat *chat = CONTAINER_OF(item, struct modem_chat, script_run_work); in modem_chat_script_run_handler()
175 struct modem_chat *chat = CONTAINER_OF(dwork, struct modem_chat, script_timeout_work); in modem_chat_script_timeout_handler()
183 struct modem_chat *chat = CONTAINER_OF(item, struct modem_chat, script_abort_work); in modem_chat_script_abort_handler()
194 static bool modem_chat_script_send_request(struct modem_chat *chat) in modem_chat_script_send_request()
231 static bool modem_chat_script_send_delimiter(struct modem_chat *chat) in modem_chat_script_send_delimiter()
265 static bool modem_chat_script_chat_is_no_response(struct modem_chat *chat) in modem_chat_script_chat_is_no_response()
273 static uint16_t modem_chat_script_chat_get_send_timeout(struct modem_chat *chat) in modem_chat_script_chat_get_send_timeout()
284 struct modem_chat *chat = CONTAINER_OF(dwork, struct modem_chat, script_send_work); in modem_chat_script_send_handler()
319 struct modem_chat *chat = CONTAINER_OF(dwork, struct modem_chat, script_send_timeout_work); in modem_chat_script_send_timeout_handler()
329 static void modem_chat_parse_reset(struct modem_chat *chat) in modem_chat_parse_reset()
339 static void modem_chat_parse_save_match(struct modem_chat *chat) in modem_chat_parse_save_match()
362 static bool modem_chat_match_matches_received(struct modem_chat *chat, in modem_chat_match_matches_received()
377 static bool modem_chat_parse_find_match(struct modem_chat *chat) in modem_chat_parse_find_match()
404 static bool modem_chat_parse_is_separator(struct modem_chat *chat) in modem_chat_parse_is_separator()
416 static bool modem_chat_parse_end_del_start(struct modem_chat *chat) in modem_chat_parse_end_del_start()
427 static bool modem_chat_parse_end_del_complete(struct modem_chat *chat) in modem_chat_parse_end_del_complete()
441 static void modem_chat_on_command_received_unsol(struct modem_chat *chat) in modem_chat_on_command_received_unsol()
449 static void modem_chat_on_command_received_abort(struct modem_chat *chat) in modem_chat_on_command_received_abort()
460 static void modem_chat_on_command_received_resp(struct modem_chat *chat) in modem_chat_on_command_received_resp()
476 static bool modem_chat_parse_find_catch_all_match(struct modem_chat *chat) in modem_chat_parse_find_catch_all_match()
494 static void modem_chat_on_command_received(struct modem_chat *chat) in modem_chat_on_command_received()
513 static void modem_chat_on_unknown_command_received(struct modem_chat *chat) in modem_chat_on_unknown_command_received()
532 static void modem_chat_process_byte(struct modem_chat *chat, uint8_t byte) in modem_chat_process_byte()
635 static bool modem_chat_discard_byte(struct modem_chat *chat, uint8_t byte) in modem_chat_discard_byte()
647 static void modem_chat_process_bytes(struct modem_chat *chat) in modem_chat_process_bytes()
661 struct modem_chat *chat = CONTAINER_OF(dwork, struct modem_chat, process_work); in modem_chat_process_handler()
681 struct modem_chat *chat = (struct modem_chat *)user_data; in modem_chat_pipe_callback()
688 int modem_chat_init(struct modem_chat *chat, const struct modem_chat_config *config) in modem_chat_init()
728 int modem_chat_attach(struct modem_chat *chat, struct modem_pipe *pipe) in modem_chat_attach()
736 int modem_chat_run_script_async(struct modem_chat *chat, const struct modem_chat_script *script) in modem_chat_run_script_async()
770 int modem_chat_run_script(struct modem_chat *chat, const struct modem_chat_script *script) in modem_chat_run_script()
789 void modem_chat_script_abort(struct modem_chat *chat) in modem_chat_script_abort()
794 void modem_chat_release(struct modem_chat *chat) in modem_chat_release()