summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2010-12-17call-forwarding: More style fixesDenis Kenzior1-6/+6
2010-12-17call-forwarding: Use a flag instead of a booleanDenis Kenzior1-4/+3
For storing the presence of CPHS CFF file
2010-12-17call-forwarding: Get rid of cfis_indicatorDenis Kenzior1-9/+7
There's no need to track this information, since if we pick a record with cfis_indicator for something besides Voice only, then when we set the record again, the number we set is no longer applicable to those services.
2010-12-17simutil: Remove inaccurate commentDenis Kenzior1-2/+0
2010-12-17call-forwarding: Minor style fixesDenis Kenzior1-10/+7
2010-12-17call-forwarding: Get rid of unneeded variableDenis Kenzior1-2/+1
2010-12-17call-forwarding: Read/Write cfis/cphs-cffJeevaka Badrappan1-2/+241
2010-12-17voicecall: Minor style nitpickDenis Kenzior1-2/+2
2010-12-17voicecall: Add emergency propertyJohn Mathew1-0/+37
2010-12-16call-settings: add CNAP supportGustavo F. Padovan1-9/+93
2010-12-16call-settings: fix coding styleGustavo F. Padovan1-10/+10
2010-12-16voicecall: Use cnap validity in get_propertiesDenis Kenzior1-5/+2
2010-12-16voicecall: Use clip_validity in get_propertiesDenis Kenzior1-1/+6
2010-12-16voicecall: Minor style fixesDenis Kenzior1-6/+5
2010-12-16voicecall: add support for CNAPGustavo F. Padovan1-0/+53
Enable oFono to get a info about the Calling Name.
2010-12-16common: add CNAP definesGustavo F. Padovan1-0/+7
2010-12-12simfs: Add unknown sim phase checkJeevaka Badrappan1-1/+8
2010-12-12sim: fix minor issue in ofono_sim_get_phaseJeevaka Badrappan1-1/+1
2010-12-10stkutil: Allow empty strings in for Text dataobjDenis Kenzior1-4/+0
Explicitly allow length = 1 (DCS) followed by zero characters. This seems to be explicitly allowed by the test specification (namely Get Input 1.9.1A)
2010-12-10stk: fix issue to avoid null pointer for alpha_idGuillaume Lucas1-7/+6
If a SET UP CALL proactive command with no alpha identifier occurs, the alpha_id pointer will be set to NULL. This will generate a crash in the stkagent with dbus function. To avoid this we use an empty string if the alpha identifier is not present in the command.
2010-12-10stk: No need to check for null textDenis Kenzior1-13/+8
For Set up idle mode text
2010-12-10stkutil: fix crash cause by null text stringGuillaume Lucas1-2/+4
According to 3GPP TS 31.124 a zero length for the text string should be allowed. An empty string must be returned to the user in this case.
2010-12-08radio-settings: Minor style fixes for rule M13Denis Kenzior1-3/+3
2010-12-08radio-settings: Minor style issuesDenis Kenzior1-4/+2
2010-12-08radio-settings: add frequency band selection propsLucas De Marchi1-2/+248
2010-12-08simutil: fixup style according to M11Denis Kenzior1-158/+158
2010-12-08stk: Handle provide local info proactive commandYang Gu1-0/+77
2010-12-08smsutil: Make timezone an optional fieldYang Gu3-12/+13
2010-12-07smsutil: Change the range of time zoneYang Gu1-2/+9
2010-12-07Add ofono_modem_reset()Gustavo F. Padovan1-0/+20
Some modems can screw up everything and then we will need to do a silent reset of the modem. This patch take the modem back to the OFFLINE state.
2010-12-07modem: only unref pending if it is a powered pendingGustavo F. Padovan1-1/+2
2010-12-07smsutil: Minor style fixDenis Kenzior1-1/+2
2010-12-03voicecall: fix dial result handlingPekka Pessi1-3/+16
The existing call will be automatically put on hold if there is an existing active call when dialing. On some modems the dial request returns only after the dialed call is active and the existing call has been put on hold. However, on isimodem driver the dial request returns immediately before the existing call has changed its status. With isimodem driver the dial_handle_result() selected the existing call from the list when it should have created a new one. The dial result handling now guards againt returning a previously dialed active call as result.
2010-12-03network: Send strength as a byte, not uint16Denis Kenzior1-4/+5
To be consistent with the documentation
2010-12-02smsutil: Fix issue in mwi dcs decodingJeevaka Badrappan1-1/+6
2010-12-02gprs: Fix for gprs context conversionAntti Paila1-1/+1
2010-12-02smsutil: Fix uninitialized optional elementsDenis Kenzior1-2/+2
sms_decode was never memsetting the returned structure, so if any optional elements were present in the SMS (e.g. status report) then the structure was not completely initialized.
2010-12-02sms: Use the right union member for DCS checkDenis Kenzior1-1/+1
2010-11-30stk: Add busy error for the display text commandGuillaume Lucas3-2/+26
According to the sequence 1.2 of the ETSI TS 102 384 a busy screen error should be returns for the display text proactive command when the ME is not able to display the text.
2010-11-29sim: be more paranoid for triggering EFest readJeevaka Badrappan1-3/+10
2010-11-29core: explicitly compare pointers to NULLLucas De Marchi26-271/+248
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-29simutil: explicitly compare pointers to NULLLucas De Marchi1-8/+8
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-29simfs: explicitly compare pointers to NULLLucas De Marchi1-14/+14
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-29util: explicitly compare pointers to NULLLucas De Marchi1-11/+7
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-29stkutil: explicitly compare pointers to NULLLucas De Marchi1-2/+2
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-29smsutil: explicitly compare pointers to NULLLucas De Marchi1-22/+17
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-27simutil: Add EFcfis and EFcphs-cff file IdsJeevaka Badrappan1-0/+2
2010-11-26call-volume: Minor coding style fixJeevaka Badrappan1-2/+1
2010-11-26audio-settings: Remove unwanted checkJeevaka Badrappan1-4/+1
2010-11-26call-volume: Remove extra line at EOFJeevaka Badrappan1-1/+0