Home | History | Annotate | Download | only in cellular

Lines Matching defs:SMS

10 into the device.  Invoked with the proper flags it can test that SMS
171 class SMS(DBusObjectWithProperties):
172 """SMS Object.
174 Mock SMS message.
177 def __init__(self, manager, name='/SMS/0', text='test',
182 self.text = text or 'test sms at %s' % name
531 def AddSMS(self, sms):
532 logging.info('Adding SMS %s to list', sms.path)
533 self.smses[sms.path] = sms
641 - to test that Chrome property displays SMS messages
657 SMS testing can be accomnplished by supplying the -s flag to simulate
658 the receipt of a number of SMS messages. The message text can be
661 file, then each line corresponds to a single SMS message.
663 Chrome should display the SMS messages as soon as a user logs in to
683 help='<text> := text for sms messages')
687 help='<filename> := file with text for sms messages')
713 sms = SMS(manager, name='/SMS/%s' % index, text=line)
714 modem.AddSMS(sms)
717 sms = SMS(manager, name='/SMS/%s' % index,
719 modem.AddSMS(sms)