summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2011-01-26stk: Fix issue in stk_alpha_id_setJeevaka Badrappan1-1/+6
Fixes the crash seen with the null alpha identifier. Also removed the icon check since the decision of whether to inform the user of the action is dependent entirely on whether the alpha identifier is provided by the UICC.
2011-01-26gprs: Refactor gprs provisioningDenis Kenzior1-54/+70
2011-01-26gprs: Put back the id if context creation failsDenis Kenzior1-0/+1
2011-01-26gprs: write out MessageCenter and MessageProxyDenis Kenzior1-0/+9
These values were not written out to settings
2011-01-26gprs-provision: Refactor provisioningDenis Kenzior2-19/+17
2011-01-26gprs: add gprs context provisioningJukka Saunamaki1-4/+95
2011-01-26gprs-provision: add driver API sourcesJukka Saunamaki1-0/+104
2011-01-26ofono.h: add gprs-provisionJukka Saunamaki1-0/+8
2011-01-26simutil: Add EFcsp file and service group IDsAki Niemi1-0/+16
2011-01-26modem: Simplify the modem lockdown modificationMarcel Holtmann1-26/+27
2011-01-26modem: Be a bit more paranoid with lock_owner resetMarcel Holtmann1-0/+4
2011-01-26modem: do not allow more than one client to lock downRémi Denis-Courmont1-7/+6
2011-01-25call-settings: use enum valuesLucas De Marchi1-8/+8
Use the enum values defined for CLIP, CNAP, CLIR, COLP and COLR.
2011-01-25common: add function to validate long numbersRafael Ignacio Zurita3-3/+21
Also, adapt voicecall to use the new function for outgoing calls.
2011-01-25simutil: EF Fileid additions USIM and SIM PhonebookJessica Nilsson1-0/+12
Also, adding some general fileids for building paths
2011-01-24stk: change timeout from 10 to 3mintuesJeevaka Badrappan1-1/+1
2011-01-23modem: Add feature entry for supplementary servicesMarcel Holtmann1-0/+1
2011-01-23ussd: Use global definition of supplementary services interfaceMarcel Holtmann1-8/+9
2011-01-22sim: Remove double empty linesMarcel Holtmann1-1/+0
2011-01-21voicecall: Fix some minor style issues for voicecall propertiesMarcel Holtmann1-13/+13
2011-01-20sms: Break out message objects into message.[ch]Faiyaz Baxamusa3-219/+310
These can be used as is by the CDMA SMS manager atom
2011-01-20sim-auth: Add skeleton for the sim-auth atomAndrzej Zaborowski2-0/+136
2011-01-20ofono.h: Remove unneeded initialisersAndrzej Zaborowski1-24/+24
They have no effect, enum already ensures the values are unique.
2011-01-20simutil: Fix a memory leakDenis Kenzior1-1/+3
2011-01-20simutil: SIM applications directory decoding utilsAndrzej Zaborowski2-0/+65
2011-01-20sim: getters for mcc and mnc implementationJukka Saunamaki1-0/+16
2011-01-20sim: store mcc and mnc separate from imsiJukka Saunamaki1-19/+15
2011-01-20stk: Handle Launch Browser proactive commandJeevaka Badrappan3-0/+154
2011-01-20stkutil: add check for qualifier and browser idJeevaka Badrappan1-1/+8
Checks the valid qualifier and browser id values applicable for launch browser proactive command
2011-01-20gprs: Make gprs atom offline-safePekka Pessi1-2/+13
Allow use of GPRS atom both in online and offline (post_sim) states. The GPRS now considers the removal of the netreg atom as implicit detach and registration change to NOT_REGISTERED.
2011-01-20netreg: Deprecate the deregister methodAki Niemi1-27/+1
2011-01-20gprs: Move packet bearer stuff into gprs.cDenis Kenzior3-35/+35
2011-01-20gprs: mark context driver as not used when removing active contextTomasz Gregorek1-0/+2
2011-01-20core: Always return success to a no-opAki Niemi1-3/+3
A SetProperty that doesn't actually change the Online property's state when no change to that state is pending, should not fail. It should always succeed regardless of the current modem state.
2011-01-20gprs: Core support for packet switched bearer reportingRémi Denis-Courmont1-0/+27
2011-01-20common: Define packet switched bearersRémi Denis-Courmont2-0/+36
2011-01-19voicecall: Handle empty EFecc properlyDenis Kenzior1-4/+1
When EFecc is empty we should still set the calling codes to the default_en_list, not keep the default_en_list + default_en_list_no_sim
2011-01-18sms: make sms atom offline-safePekka Pessi1-6/+91
Allow use of SMS atom both in online and offline (post_sim) states. SMS atom now watches network registration atom and state. Thmessages are queued but not sent if not registered to a network. Errors occurring when a short message is being sent while transition from online to offline or when network coverage is dropped are now handled gracefully.
2011-01-18voicecall: Update to the new APIDenis Kenzior1-3/+5
2011-01-18call-settings: apply rule M11 of coding styleLucas De Marchi1-17/+17
2011-01-18call-settings: add support for cdipLucas De Marchi1-2/+71
2011-01-18voicecall: add support for cdipLucas De Marchi1-2/+36
Enable oFono to show the identification informed with CDIP.
2011-01-18simutil: Sort sim_fileid in numerical orderDenis Kenzior1-5/+5
2011-01-18simutil: M9, M11, Minor style fixes and indentationJessica Nilsson1-5/+5
2011-01-18netreg: Remove default statementAki Niemi1-2/+2
2011-01-18netreg: Fix userdata -> user_dataAki Niemi1-10/+10
This convention has been advertized on the mailing list.
2011-01-18simutil: Style fixes, M12Aki Niemi1-29/+29
2011-01-18netreg: Style fixes, M12Aki Niemi1-8/+8
2011-01-18common: Style fixes, M12Aki Niemi1-57/+57
2011-01-17sim: fix issue with sizeof callJeevaka Badrappan1-1/+1
In some compilers, sizeof the functional argument is not returning the actual sizeof the argument.