summaryrefslogtreecommitdiffstats
path: root/src/phonebook.c
AgeCommit message (Collapse)AuthorFilesLines
2012-05-20Do not set signature and reply in GDBus tablesLucas De Marchi1-1/+1
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-2/+3
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-13/+13
2010-11-29core: explicitly compare pointers to NULLLucas De Marchi1-7/+5
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-6/+6
2010-09-21Fix multi-line comment style issuesJeevaka Badrappan1-2/+3
2010-02-05Fix: Use snprintf instead of sprintf in the coreDenis Kenzior1-1/+1
2010-01-28Fix some leftover oudated copyrightsMarcel Holtmann1-1/+1
2009-09-01change int vendor to unsigned int vendorDenis Kenzior1-1/+1
2009-09-01Add vendor flag capability to phonebookDenis Kenzior1-2/+2
2009-08-17Remove the use of driver.hDenis Kenzior1-1/+0
2009-08-14Move PHONEBOOK_INTERFACE define to dbus.hDenis Kenzior1-6/+5
2009-08-14Use atom's modem in phonebookDenis Kenzior1-7/+6
2009-08-14Update to use the new atom_free APIDenis Kenzior1-1/+1
2009-08-14Evolve the phonebook driverDenis Kenzior1-70/+118
2009-08-12Always output useable FN in VCardDenis Kenzior1-1/+6
If text is NULL or empty, use the number field for the FN VCard entry instead.
2009-08-12Fix a segfault in need_mergeDenis Kenzior1-3/+15
2009-08-12Bail out early if text & number are emptyDenis Kenzior1-0/+5
2009-07-29Remove all uses of modem.hDenis Kenzior1-2/+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-1/+1
2009-07-29Rename dbus_gsm error functions to __ofono_errorDenis Kenzior1-1/+1
2009-07-29Move & Rename dbus_gsm_connectionDenis Kenzior1-2/+2
Move to ofono/dbus.h ofono_dbus_get_connection
2009-07-29Fix tolower undeclared warningDenis Kenzior1-0/+1
2009-07-27Handle phonebook text field with uppercase typeYang Gu1-2/+2
2009-07-16Don't escape phonebooksDenis Kenzior1-1/+1
2009-07-13Fix unused variable warningsDenis Kenzior1-6/+0
2009-07-01Change sequence in phonebook merge_listYang Gu1-0/+1
2009-06-22Cleanup phonebook againDenis Kenzior1-64/+100
2009-06-22Merge phonebook entries belong to one personYang Gu1-34/+212
2009-06-17Phonebook API tweakDenis Kenzior1-3/+3
2009-06-16Refactor phonebook codeDenis Kenzior1-60/+54
Use immediate mode reporting, which means that the individual CPBR lines are reported up to the core immediately. This has a couple advantages: - We do not need to malloc/free a bunch of single variables and copy them over. Helps performance. - The lines are not buffered up and given to the plugin in one shot, instead processing is performed piecemeal. This helps with keeping memory consumption down to a minimum
2009-06-16Cleanup phonebook implementationDenis Kenzior1-38/+50
2009-06-16Fix style issuesDenis Kenzior1-6/+17
2009-06-16Change some definesDenis Kenzior1-6/+5
2009-06-16Export phonebook as vCard 3.0 formatYang Gu1-0/+318