Lines Matching full:command
77 * for current pending command
138 again before passing on to the command issuer */
246 /* no command pending */
293 RLOGE("Unsupported AT command type %d\n", s_type);
649 /* FIXME is it ok to call this from the reader and the command thread? */
721 static int at_send_command_full_nolock (const char *command, ATCommandType type,
735 err = writeline (command);
796 static int at_send_command_full (const char *command, ATCommandType type,
809 err = at_send_command_full_nolock(command, type,
824 * Issue a single normal AT command with no intermediate response expected
826 * "command" should not include \r
832 int at_send_command (const char *command, ATResponse **pp_outResponse)
836 err = at_send_command_full (command, NO_RESULT, NULL,
843 int at_send_command_singleline (const char *command,
849 err = at_send_command_full (command, SINGLELINE, responsePrefix,
856 /* successful command must have an intermediate response */
866 int at_send_command_numeric (const char *command,
871 err = at_send_command_full (command, NUMERIC, NULL,
878 /* successful command must have an intermediate response */
888 int at_send_command_sms (const char *command,
895 err = at_send_command_full (command, SINGLELINE, responsePrefix,
902 /* successful command must have an intermediate response */
912 int at_send_command_multiline (const char *command,
918 err = at_send_command_full (command, MULTILINE, responsePrefix,
925 /** This callback is invoked on the command thread */
945 * Periodically issue an AT command and wait for a response.