summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2012-02-11network: Add debug for network registration status updatesMarcel Holtmann1-0/+3
2012-02-09voicecall: Fix emulator AT+CHUP for HFPFrédéric Danis1-1/+2
AT+CHUP should be able to hang-up active or incoming calls
2012-02-02stkutil: Make valgrind happyDenis Kenzior1-3/+3
==29809== Conditional jump or move depends on uninitialised value(s) ==29809== at 0x4E826C: stk_file_iter_next (stkutil.c:212) ==29809== by 0x4E8CF8: parse_dataobj_file_list (stkutil.c:635) ==29809== by 0x4EBA29: parse_dataobj (stkutil.c:2410) ==29809== by 0x4ECFB5: parse_refresh (stkutil.c:2971) ==29809== by 0x4EECA3: parse_command_body (stkutil.c:3826) ==29809== by 0x4EF0DF: stk_command_new_from_pdu (stkutil.c:3948) ==29809== by 0x4D50DA: ofono_stk_proactive_command_handled_notify (stk.c:2885)
2012-02-01sim: Fix crash due to uninitialized spn_watchDenis Kenzior1-0/+8
2012-01-23sim: Make SPN change atomic for consumersOleg Zhurakivskyy1-15/+15
Due to new spn watch semantics, ofono_sim_get_spn() will report the absence of SPN while reading it, which is probably incorrect.
2012-01-18modem: Use __ofono_atom_findDenis Kenzior1-9/+3
Also remove defunct comment about registered status
2012-01-18stk: find_atom only returns registered atomsDenis Kenzior1-9/+4
This seems to be an oversight from an earlier refactoring.
2012-01-18sms: Don't need the sim member nowDenis Kenzior1-4/+4
2012-01-18cbs: finding SIM atom seems to not necessary nowDenis Kenzior1-7/+2
2012-01-18stk: Use __ofono_atom_findDenis Kenzior1-73/+28
2012-01-18gprs: Use __ofono_atom_findDenis Kenzior1-16/+10
2012-01-18cdma-connman: Use __ofono_atom_findDenis Kenzior1-4/+2
2012-01-18voicecall: Use __ofono_atom_findDenis Kenzior1-6/+3
2012-01-18ussd: Use __ofono_atom_findDenis Kenzior1-6/+4
2012-01-18emulator: Use __ofono_atom_findDenis Kenzior1-5/+2
2012-01-18call-forwarding: Use __ofono_atom_findDenis Kenzior1-6/+2
2012-01-18sms: Use __ofono_atom_findDenis Kenzior1-16/+10
2012-01-18cbs: Use __ofono_atom_find macroDenis Kenzior1-10/+3
2012-01-18network: Use __ofono_atom_find macroDenis Kenzior1-5/+2
2012-01-18message-waiting: Use __ofono_atom_find macroDenis Kenzior1-5/+2
2012-01-18ofono: Add __ofono_atom_find macroDenis Kenzior1-0/+8
2012-01-18network: Access SPN directly from the sim atomOleg Zhurakivskyy1-11/+7
2012-01-18sim: Add ofono_sim_get_spn() implementationOleg Zhurakivskyy1-0/+8
2012-01-18network: Optimize away one unneeded assignmentDenis Kenzior1-3/+2
2012-01-18network: Use sim SPN watch APIOleg Zhurakivskyy1-148/+18
2012-01-18gprs: Trivial code reflowDenis Kenzior1-8/+8
2012-01-18gprs: Use sim SPN watch APIOleg Zhurakivskyy1-40/+31
2012-01-15sim: Add SPN watch capabilityOleg Zhurakivskyy1-0/+242
2012-01-15sim: Minor style fixesOleg Zhurakivskyy1-12/+12
2012-01-07modem: Tweak produced pathDenis Kenzior1-1/+1
For drivers that contain digits at the end the currently produced path can be somewhat confusing.
2012-01-07cdma-netreg: Add provider name and SID supportPhilippe Nunes1-0/+40
2012-01-07cdma-provision: Add driver APIs implementationPhilippe Nunes1-0/+80
2012-01-07ofono.h: add API to get cdma provider namePhilippe Nunes1-0/+4
2012-01-01sim: fix "network" is pin type for "networkpuk"Jussi Kukkonen1-1/+1
2011-12-28gprs: Minor whitespace and style fixesOleg Zhurakivskyy1-11/+13
2011-12-26sim: Fix not creating simfs context in some casesDenis Kenzior1-5/+3
2011-12-16network: Refactor CPHS SPN & Short SPN handlingDenis Kenzior1-63/+29
2011-12-16network: CPHS Short SPN bits do not apply to SPNDenis Kenzior1-13/+10
2011-12-16network: Use __ofono_cphs_service_availableDenis Kenzior1-18/+6
2011-12-16message-waiting: Use new API for CPHS MBDNDenis Kenzior1-4/+2
2011-12-16sim: Add __ofono_sim_cphs_service_availableDenis Kenzior2-0/+8
2011-12-16simutil: Add util to find CPHS service availabilityDenis Kenzior2-0/+19
2011-12-16sim: Reset additional state infoDenis Kenzior1-0/+10
We were not resetting 3GPP and CPHS phase information as well as the CPHS service table entries on sim removal / reset.
2011-12-16network: Add CPHS SPN, short-SPN fallbacksOleg Zhurakivskyy1-30/+148
2011-12-16network: Guard PNN readingDenis Kenzior1-3/+10
In a somewhat bizarre case, both PNN and OPL might change, which will trigger sim_pnn_opl_changed twice. This can have some funny side-effects, so don't allow this to happen in the first place.
2011-12-15cdma-voicecall: Refactor previous commitDenis Kenzior1-17/+11
2011-12-15Add call waiting support in CDMA voice callCaiwen Zhang1-3/+32
2011-12-15network: Use netreg_emit_operator_display_name()Oleg Zhurakivskyy1-54/+22
Redundant in place code removed, netreg_emit_operator_display_name() is now used consistently everywhere in network.c
2011-12-08cdma-connman: Add dormant_notify implementationGuillaume Zajac1-0/+17
2011-12-02network: Split EFspn and EFspdi Refresh handlingDenis Kenzior1-12/+32
If both EFspn and EFspdi are changed, then we trigger reading of EFspn twice which leads to a memory leak. Instead, always read EFspdi if the relevant service is available. If EFspdi is changed, use a simple heuristic to update the 'Name' property if appropriate. This heuristic is not always correct, but in the worst case we will emit the same name.