summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2010-03-25Rename AvailableOperators to OperatorsDenis Kenzior1-2/+2
2010-03-25Refactor: Simplify Technology valuesDenis Kenzior1-8/+8
Applications don't really understand our current values very well and would need to look up the spec. Instead we change to much more commonly accepted terms.
2010-03-25Refactor: Remove MobileNetworkCodeLength propertyDenis Kenzior1-6/+36
Replaced by MNC/MCC properties which is more intuitive for use by external applications.
2010-03-24Add enum for cdma sms tpdu data objectsYang Gu1-0/+1
2010-03-24Fix enum for more time proactive commandYang Gu1-2/+3
2010-03-23Fix: Handle broken modems that returns empty COPSDenis Kenzior1-0/+20
2010-03-23Move netreg interface definitions to dbus.hDenis Kenzior1-60/+57
2010-03-23Style: Fixup some style issuesDenis Kenzior1-11/+28
- Large if statements should be handled as switchcase - Avoid initialization of variables, even if code needs to be rearranged
2010-03-23Add parser for file list objectsYang Gu2-0/+99
2010-03-22Move sim manager interface definition to dbus.hDenis Kenzior1-26/+21
2010-03-22Move cbs interface definition to dbus.hDenis Kenzior1-12/+10
2010-03-22Move call volume interface definition to dbus.hDenis Kenzior1-13/+17
2010-03-22Move mwi interface definition to dbus.hDenis Kenzior1-14/+12
2010-03-22Move radio settings interface definition to dbus.hDenis Kenzior1-8/+6
2010-03-22Move sms interface definition to dbus.hDenis Kenzior1-9/+7
2010-03-22Move voicecall interface definitions to dbus.hDenis Kenzior1-28/+24
2010-03-20Revert the default statement for PIN type checkingMarcel Holtmann2-8/+5
Also fix the coding style for the switch statement and remove the number assignment for an internal enum.
2010-03-19Trivial: Add break statementDenis Kenzior1-0/+3
In case we ever extend the enum/switch and unwittingly introduce a bug.
2010-03-19Fix: Check password length based on its typePekka Pessi5-22/+48
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-03-18Fix: Interrogation of barring does not need pinPekka Pessi1-1/+1
2010-03-18Fix: Number of barring services is constantPekka Pessi1-10/+3
2010-03-18Style: Remove the now unnecessary bracesDenis Kenzior1-2/+1
2010-03-18Fix: Return newly-queried barring statusPekka Pessi1-3/+2
We were returning the contents of the old locks
2010-03-18Fix: call barring can only be (de)activatedPekka Pessi1-2/+2
2010-03-16Fix: Use g_try_malloc when parsing stk resultDenis Kenzior1-1/+6
2010-03-16Fix: Use g_try_malloc when parsing stk addressDenis Kenzior1-1/+6
2010-03-16Fix: Use g_try_malloc instead of g_malloc in utilDenis Kenzior1-3/+3
In these cases we were checking for NULL return, but the function used should have been g_try_malloc instead.
2010-03-16Refactor: create_dirs logicDenis Kenzior1-8/+17
- Remove reference to g_malloc and replace with g_try_malloc - Be extra pedantic on the inputs - Refactor the logic to make it slightly easier to follow
2010-03-16Fix: Fixup error paths in sim_op_check_cachedDenis Kenzior1-1/+7
2010-03-16Fix: avoid assigning to return structure on errorDenis Kenzior1-1/+1
2010-03-16Style: Spaces before / after arithmetic operationsDenis Kenzior1-5/+5
2010-03-16Style: Align the enum values to be easier to readDenis Kenzior1-213/+213
2010-03-16Handle the conversion failure when parsing itemYang Gu1-1/+7
2010-03-16Fix the structure of stk_subaddressYang Gu1-1/+1
2010-03-15Add stk tone type enumDenis Kenzior1-0/+31
2010-03-15Add parser for STK send sms proactive commandsDenis Kenzior2-0/+62
2010-03-15Refactor: stk send_sms datastructureDenis Kenzior2-17/+19
2010-03-15Refactor: stk result dataobjectDenis Kenzior2-3/+44
2010-03-15Reorder: stk response length structureDenis Kenzior1-9/+9
Follow the order of the specification
2010-03-15Refactor: stk item id dataobjDenis Kenzior1-3/+3
2010-03-15Refactor: stk item dataobjectDenis Kenzior1-2/+7
2010-03-15Refactor: stk configuration capability parametersDenis Kenzior2-13/+25
2010-03-15Refactor: Update the subaddress structureDenis Kenzior2-7/+22
2010-03-15Refactor: stk alpha identifier objectDenis Kenzior2-7/+13
Style issues, we must also return FALSE in case conversion fails
2010-03-10Refactor: stk address structureDenis Kenzior2-4/+2
2010-03-10Add parser for tone objectsYang Gu1-0/+23
2010-03-10Add parser for sms tpdu objectsYang Gu2-0/+33
2010-03-10Add parser for result objectsYang Gu2-0/+41
2010-03-10Add parser for item identifier objectsYang Gu1-0/+22
2010-03-10Add parser for item objectsYang Gu2-0/+31