summaryrefslogtreecommitdiffstats
path: root/include
AgeCommit message (Collapse)AuthorFilesLines
2011-02-16emulator: add HFP emulator typeFrédéric Danis1-0/+1
2011-02-16emulator: Add additional APIsDenis Kenzior1-0/+7
2011-02-15emulator: Add basic API for emulatorDenis Kenzior1-0/+33
2011-02-10emulator: Add basic emulator APIDenis Kenzior1-0/+48
2011-02-08gprs-provision: add SPN to provisioning API headerJukka Saunamaki1-1/+1
2011-02-07sim: Add API for watching files changed via stkDenis Kenzior1-0/+9
2011-02-03sim: ofono_sim_context api header changesAndrzej Zaborowski1-3/+7
This patch introduces sim FS contexts which are used to queue file read and write operations. When a context is freed all pending operations in that context are cancelled preventing callbacks from being called causing segfaults.
2011-02-02include: fix comment on dst valueJeevaka Badrappan1-1/+1
2011-02-01include: define initializer for ofono_callLucas De Marchi1-0/+1
Some fields in struct ofono_call such as cnap_validity and clip_validity are not correctly initialized as 0 since this means they are present. If driver does not implement the necessary handlers, it might send to core an ofono_call signalling that cnap and clip are available when they are actually not.
2011-01-26voicecall: remove ofono_cug_optionJeevaka Badrappan2-8/+2
2011-01-26include: Refactor gprs-provision APIDenis Kenzior1-1/+1
2011-01-26gprs-provision: add driver API headerJukka Saunamaki1-0/+59
2011-01-26include: don't use c++ keyword in public headerLucas De Marchi1-1/+1
2011-01-25types: extend OFONO_MAX_PHONE_NUMBER_LENGTHRafael Ignacio Zurita1-1/+1
2011-01-23dbus: Add global definition of supplementary services interfaceMarcel Holtmann1-0/+1
2011-01-20include: Add SIM authentication atom'sAndrzej Zaborowski1-0/+64
Structures and function declarations for the SIM authentication atom as proposed by Pekka Pessi, with just one method at the moment.
2011-01-20sim: getters for mcc and mnc definitionJukka Saunamaki1-0/+2
2011-01-20api: Remove deregister from modem driver APIAki Niemi1-2/+0
2011-01-20gprs: Declaration for packet switched bearer notificationsRémi Denis-Courmont1-0/+1
2011-01-18include: add method for querying cdip supportLucas De Marchi1-0/+2
2011-01-18include: add cdip field in ofono_callLucas De Marchi1-0/+1
2011-01-14include: Clarify hold_all_active semanticsPekka Pessi1-1/+2
2011-01-13include: remove unused mpty from ofono_callJeevaka Badrappan1-1/+0
2011-01-13gps: define new dbus interfaceRafael Ignacio Zurita1-0/+1
2011-01-12include: M15 coding style fixJeevaka Badrappan1-1/+1
2011-01-10include: add method to query pin RetriesLucas De Marchi1-0/+5
2011-01-05cdma-sms: Add CDMA SMS SupportLei Yu1-0/+67
2011-01-04dbus: Add CDMA SMS InterfaceLei Yu1-0/+1
2010-12-22cdma-voicecall: Minor style fixesDenis Kenzior1-13/+9
2010-12-22cdma-voicecall: Add CDMA MO Call SupportDara Spieker-Doyle1-0/+89
2010-12-20types: Add CDMA Phone NumberDara Spieker-Doyle1-0/+8
2010-12-20dbus: Add CDMA Voicecall InterfaceDara Spieker-Doyle1-0/+3
2010-12-16include: add cnap_query callbackGustavo F. Padovan1-0/+2
2010-12-16include: add CNAP types to ofono_call structureGustavo F. Padovan1-0/+3
2010-12-08include: Minor style fixesDenis Kenzior2-10/+10
2010-12-08radio-settings: add frequency band selection methodsLucas De Marchi1-0/+33
2010-12-07modem: add ofono_modem_reset() to modem.hGustavo F. Padovan1-0/+2
2010-11-29radio-settings: Update API to use ofono_bool_tDenis Kenzior1-1/+1
2010-11-26ctm: add public headerLucas De Marchi1-0/+66
2010-11-24text-telephony: define new dbus interfaceLucas De Marchi1-0/+1
2010-10-27radio settings: add FastDormancy propertyMika Liljeberg1-0/+13
2010-10-27gprs-context: Replace TYPE_INVALID with TYPE_ANYDenis Kenzior1-1/+1
2010-10-27stk: Remove ofono_stk_terminal_response_sent_notifyDenis Kenzior1-3/+0
Not needed for now. We can always put this back in later if need be.
2010-10-27gprs-context: add IMS connection typePekka Pessi1-0/+1
2010-10-27gprs: Add support for setting GPRS context typeMarcel Holtmann1-0/+3
2010-10-27gprs: Make GPRS context type a public enumMarcel Holtmann1-0/+7
2010-10-25modem: Add ofono_modem_is_registeredDenis Kenzior1-0/+2
2010-10-20voicecall: Document driver methodsDenis Kenzior1-0/+43
2010-10-15sim: add new parameter to file-info utilityPetteri Tikander1-0/+1
2010-10-14API for STK driver to signal executed commandsAndrzej Zaborowski1-0/+7
Some modems are able to handle some proactive commands in their firmware or otherwise, if the command doesn't require input from user. Nevertheles ofono may need to update internal state or notify the user where necessary. With this api the driver can notify core that a command is being executed in the modem or that a command is finished executing and the TERMINAL RESPONSE has been sent to SIM. It would also be possible for a driver to handle a command.