HomeSort by relevance Sort by last modified time
    Searched full:at_command (Results 1 - 10 of 10) sorted by null

  /external/autotest/client/cros/cellular/wardmodem/
at_transceiver_unittest.py 326 at_command = 'AT+commmmmmmmmand'
327 self._mock_mm_channel.send(at_command)
330 self._at_transceiver._process_wardmodem_at_command(at_command)
339 at_command = 'AT+commmmmmmmmand'
343 self._at_transceiver._post_wardmodem_request(at_command)
346 self._at_transceiver._process_mm_at_command(at_command)
368 at_command = 'AT+commmmmmmmmand'
369 self._mock_mm_channel.send(at_command)
372 self._at_transceiver._process_modem_at_command(at_command)
381 at_command = 'AT+commmmmmmmmand
    [all...]
at_channel.py 137 def send(self, at_command):
141 @param at_command: The AT command to send.
150 at_command = self._prepare_for_send(at_command)
152 os.write(self._channel, at_command)
156 self._channel_name, repr(at_command))
161 self._channel_name, repr(at_command))
at_transceiver.py 344 def _execute_state_machine_function(self, at_command, action, function,
351 @param at_command: The AT command for which this function was called.
369 at_command, action, inspect.getargspec(function), str(e))
380 {at_command, {(arg1, arg2, ...), (state_machine_name,
384 - at_command [string] is the AT Command received,
  /external/clang/include/clang/AST/
CommentLexer.h 40 at_command, // Command with an ID, that used 'at' marker. enumerator in enum:clang::comments::tok::TokenKind
123 assert(is(tok::backslash_command) || is(tok::at_command));
128 assert(is(tok::backslash_command) || is(tok::at_command));
CommentParser.h 84 return (Tok.is(tok::backslash_command) || Tok.is(tok::at_command)) &&
  /external/clang/lib/AST/
CommentParser.cpp 312 assert(Tok.is(tok::backslash_command) || Tok.is(tok::at_command));
404 assert(Tok.is(tok::backslash_command) || Tok.is(tok::at_command));
572 case tok::at_command: {
582 << Tok.is(tok::at_command)
733 case tok::at_command:
CommentBriefParser.cpp 81 if (Tok.is(tok::backslash_command) || Tok.is(tok::at_command)) {
CommentLexer.cpp 320 (*TokenPtr == '@') ? tok::at_command : tok::backslash_command;
  /external/autotest/client/cros/cellular/wardmodem/configurations/
base.conf 53 # {at_command: (state_machine_name, function, (idx1, idx2, ...))}
56 # - at_command [string] is the AT Command received,
65 # Note: the at_command might use the special character '*' to indicate an
  /external/clang/unittests/AST/
CommentLexer.cpp 421 ASSERT_EQ(tok::at_command, Toks[1].getKind());
424 ASSERT_EQ(tok::at_command, Toks[2].getKind());
430 ASSERT_EQ(tok::at_command, Toks[4].getKind());
436 ASSERT_EQ(tok::at_command, Toks[6].getKind());
518 ASSERT_EQ(tok::at_command, Toks[5].getKind());
    [all...]

Completed in 251 milliseconds