summaryrefslogtreecommitdiffstats
path: root/src/radio-settings.c
AgeCommit message (Collapse)AuthorFilesLines
2015-11-05radio-settings: Implement get_modem()Denis Kenzior1-0/+6
2014-12-12radio-settings: Show all available technologiesAlfonso Sanchez-Beato1-2/+2
Not all possible futures technologies were being showed on the DBus interface.
2014-12-10radio-settings: Always query available ratsDenis Kenzior1-1/+1
If fast dormancy query is not implemented the available rats are not queried.
2014-12-10radio-settings: Add additional sanity checkDenis Kenzior1-1/+1
2014-12-10radio-settings: rework AvailableTechnologies logicDenis Kenzior1-10/+14
Take advantage of the new enum structure to future proof and simplify the logic of generating the AvailableTechnologies property
2014-12-10src: Implement RAT list propertyAlfonso Sanchez-Beato1-1/+46
2012-05-20Do not set signature and reply in GDBus tablesLucas De Marchi1-5/+5
Use GDBUS_* macros, so signature and reply fields are not set in each method/signal.
2012-05-20Convert GDBus methods to use macro helpersLucas De Marchi1-5/+8
With these macro helpers we can separate in/out arguments and use their own vector.
2012-05-20Constify GDBus signal tablesHenrique Dante de Almeida1-1/+1
Constify signal tables with the following command: find . -name '*.[ch]' -exec \ sed -i 's/\(GDBusSignalTable .* =\)/const \1/g' {} \;
2012-05-20Constify GDBus method tablesHenrique Dante de Almeida1-1/+1
Constify method tables with the following command: find . -name '*.[ch]' -exec \ sed -i 's/\(GDBusMethodTable .* =\)/const \1/g' {} \;
2011-10-10core: Update copyright informationMarcel Holtmann1-1/+1
2010-12-08radio-settings: Minor style fixes for rule M13Denis Kenzior1-3/+3
2010-12-08radio-settings: Minor style issuesDenis Kenzior1-4/+2
2010-12-08radio-settings: add frequency band selection propsLucas De Marchi1-2/+248
2010-11-29core: explicitly compare pointers to NULLLucas De Marchi1-10/+10
This patch was generated by the following semantic patch (http://coccinelle.lip6.fr/) // <smpl> @fix disable is_null,isnt_null1@ expression *E; @@ - !E + E == NULL // </smpl>
2010-11-22src: coding style fixes - rule M6Jeevaka Badrappan1-2/+2
2010-10-27radio-settings: Don't check for cachedDenis Kenzior1-2/+1
Checking for this flag does not have the desired effect, or rather it has other side-effects (e.g. setting the property twice before GetProperties). oFono discourages spurious signal emission.
2010-10-27radio-settings: Add extra newlinesDenis Kenzior1-0/+11
To be compliant with the coding style
2010-10-27radio settings: add FastDormancy propertyMika Liljeberg1-6/+108
2010-10-21radio settings: Fix string to enum mappingAki Niemi1-4/+4
2010-10-20radio-settings: Get rid of unneeded castsDenis Kenzior1-18/+22
2010-10-20radio-settings: Fixup various style issuesDenis Kenzior1-13/+14
2010-03-25Refactor: Rename radio setting type namesDenis Kenzior1-12/+12
2010-03-22Move radio settings interface definition to dbus.hDenis Kenzior1-8/+6
2010-02-08Fix: Don't use ofono_debug directly in the coreDenis Kenzior1-2/+2
Use DBG macro which is integrated with the new debug framework.
2010-02-04Add radio settings atom and driver APIAki Niemi1-0/+376
This interface exposes a read-write property for radio access technology selection mode.