summaryrefslogtreecommitdiffstats
path: root/src/call-meter.c
AgeCommit message (Collapse)AuthorFilesLines
2012-05-20Do not set signature and reply in GDBus tablesLucas De Marchi1-12/+12
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-8/+13
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
2011-02-25sim: check lock state with call meterJussi Kangas1-0/+15
2011-02-08sim: Allow usage of SIM codes longer than 8 digitsJussi Kangas1-2/+2
Some PIN codes (e.g. subsidy locks, etc) can have PIN codes much longer than the default 8 digits.
2011-02-02call-meter: Fix style issuesAki Niemi1-5/+6
2010-11-29core: explicitly compare pointers to NULLLucas De Marchi1-13/+13
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-09-21Fix multi-line comment style issuesJeevaka Badrappan1-2/+4
2010-03-19Fix: Check password length based on its typePekka Pessi1-2/+2
The different password types have different length requirements, so update is_valid_pin to validate according to the password type being validated (PIN / PUK / NET)
2010-02-15Fix: Use g_dbus_emit_signal in call-barring,meterAndrzej Zaborowski1-10/+2
2010-02-08Fix: Don't use ofono_debug directly in the coreDenis Kenzior1-3/+3
Use DBG macro which is integrated with the new debug framework.
2010-01-01Update copyright informationMarcel Holtmann1-1/+1
2009-09-22Simplify: Use dbus_message_iter_get_argsDenis Kenzior1-10/+5
2009-09-01change int vendor to unsigned int vendorDenis Kenzior1-1/+1
2009-09-01Add vendor parameter to call-meterDenis Kenzior1-2/+2
2009-08-19Fix whitespace and style issuesDenis Kenzior1-1/+1
2009-08-17Remove the use of driver.hDenis Kenzior1-1/+0
2009-08-14Move CALL_METER_INTERFACE define to dbus.hDenis Kenzior1-14/+17
2009-08-14Use atom's modem in call meterDenis Kenzior1-13/+12
2009-08-14Update to use the new atom_free APIDenis Kenzior1-1/+1
2009-08-14Evolve the call meter driver APIDenis Kenzior1-200/+242
2009-08-07No need to use g_timeout_add hereDenis Kenzior1-27/+13
2009-08-05Use invalid_args instead of invalid_formatAndrzej Zaborowski1-2/+2
2009-07-29Remove all uses of modem.hDenis Kenzior1-1/+0
2009-07-29Rename modem_add_interface / modem_remove_interfaceDenis Kenzior1-2/+2
Move to ofono_modem_add_interface, ofono_modem_remove_interface and put in ofono/modem.h
2009-07-29Get rid of dbus-gsm.hDenis Kenzior1-2/+0
2009-07-29Rename dbus_gsm_pending_replyDenis Kenzior1-11/+11
2009-07-29Rename dbus_gsm_dict_appendDenis Kenzior1-5/+5
2009-07-29Move & Rename PROPERTIES_ARRAY_SIGNATUREDenis Kenzior1-1/+2
2009-07-29Rename dbus_gsm_signal_property_changedDenis Kenzior1-5/+5
2009-07-29Rename dbus_gsm error functions to __ofono_errorDenis Kenzior1-27/+27
2009-07-29Move & Rename dbus_gsm_connectionDenis Kenzior1-8/+8
Move to ofono/dbus.h ofono_dbus_get_connection
2009-05-12Remove unused variables.Andrzej Zaborowski1-3/+0
2009-05-05Add implementation of telephony daemonDenis Kenzior1-0/+764