Lines Matching full:static
24 static struct modem_pipelink *at_shell_pipelink =
27 static struct modem_chat at_shell_chat;
28 static uint8_t at_shell_chat_receive_buf[CONFIG_MODEM_AT_SHELL_CHAT_RECEIVE_BUF_SIZE];
29 static uint8_t *at_shell_chat_argv_buf[2];
30 static uint8_t at_shell_request_buf[CONFIG_MODEM_AT_SHELL_COMMAND_MAX_SIZE];
31 static struct modem_chat_script_chat at_shell_script_chat[1];
32 static struct modem_chat_match at_shell_script_chat_matches[2];
33 static uint8_t at_shell_match_buf[CONFIG_MODEM_AT_SHELL_RESPONSE_MAX_SIZE];
34 static const struct shell *at_shell_active_shell;
35 static struct k_work at_shell_open_pipe_work;
36 static struct k_work at_shell_attach_chat_work;
37 static struct k_work at_shell_release_chat_work;
38 static atomic_t at_shell_state;
40 static void at_shell_print_any_match(struct modem_chat *chat, char **argv, uint16_t argc, in at_shell_print_any_match()
54 static void at_shell_print_match(struct modem_chat *chat, char **argv, uint16_t argc, in at_shell_print_match()
73 static void at_shell_script_callback(struct modem_chat *chat, in at_shell_script_callback()
88 static void at_shell_pipe_callback(struct modem_pipe *pipe, in at_shell_pipe_callback()
127 static void at_shell_open_pipe_handler(struct k_work *work) in at_shell_open_pipe_handler()
140 static void at_shell_attach_chat_handler(struct k_work *work) in at_shell_attach_chat_handler()
149 static void at_shell_release_chat_handler(struct k_work *work) in at_shell_release_chat_handler()
158 static void at_shell_init_work(void) in at_shell_init_work()
165 static void at_shell_init_chat(void) in at_shell_init_chat()
181 static void at_shell_init_script_chat(void) in at_shell_init_script_chat()
207 static void at_shell_init_pipelink(void) in at_shell_init_pipelink()
212 static int at_shell_init(void) in at_shell_init()
223 static int at_shell_cmd_handler(const struct shell *sh, size_t argc, char **argv) in at_shell_cmd_handler()