24
|
1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
2 |
// All rights reserved.
|
|
3 |
// This component and the accompanying materials are made available
|
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
|
5 |
// which accompanies this distribution, and is available
|
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
7 |
//
|
|
8 |
// Initial Contributors:
|
|
9 |
// Nokia Corporation - initial contribution.
|
|
10 |
//
|
|
11 |
// Contributors:
|
|
12 |
//
|
|
13 |
// Description:
|
|
14 |
//
|
|
15 |
|
|
16 |
/**
|
|
17 |
@file
|
|
18 |
@internalAll
|
|
19 |
*/
|
|
20 |
|
|
21 |
|
|
22 |
#ifndef __MMTSY_H
|
|
23 |
#define __MMTSY_H
|
|
24 |
|
|
25 |
#include <e32base.h>
|
|
26 |
#include <et_phone.h>
|
|
27 |
#include "ETELMM.H"
|
|
28 |
#include "mmlist.h"
|
|
29 |
#include "coretsy.H"
|
|
30 |
#include "mmretrieve.h"
|
|
31 |
|
|
32 |
/**************************************************************************/
|
|
33 |
//
|
|
34 |
// Utility classes used by dummy Multimode TSY
|
|
35 |
//
|
|
36 |
/**************************************************************************/
|
|
37 |
|
|
38 |
class CListReadAllAttempt : public CBase
|
|
39 |
{
|
|
40 |
public:
|
|
41 |
static CListReadAllAttempt* NewL(RMobilePhone::TClientId* aId, TTsyReqHandle aReqHandle);
|
|
42 |
~CListReadAllAttempt();
|
|
43 |
|
|
44 |
protected:
|
|
45 |
CListReadAllAttempt(RMobilePhone::TClientId* aId, TTsyReqHandle aReqHandle);
|
|
46 |
|
|
47 |
private:
|
|
48 |
void ConstructL();
|
|
49 |
|
|
50 |
public:
|
|
51 |
CBufBase* iListBuf;
|
|
52 |
RMobilePhone::TClientId iClient;
|
|
53 |
TTsyReqHandle iReqHandle;
|
|
54 |
};
|
|
55 |
|
|
56 |
class CPhoneDMmTsy;
|
|
57 |
|
|
58 |
/**************************************************************************/
|
|
59 |
//
|
|
60 |
// CCallDMmTsy
|
|
61 |
//
|
|
62 |
/**************************************************************************/
|
|
63 |
|
|
64 |
class CCallDMmTsy : public CCallDummyBase
|
|
65 |
{
|
|
66 |
public:
|
|
67 |
static CCallDMmTsy* NewL(CPhoneDMmTsy *aPhone, CPhoneFactoryDummyBase* aFac);
|
|
68 |
CCallDMmTsy(CPhoneDMmTsy *aPhone, CPhoneFactoryDummyBase* aFac);
|
|
69 |
void ConstructL();
|
|
70 |
~CCallDMmTsy();
|
|
71 |
public:
|
|
72 |
virtual TInt ExtFunc(const TTsyReqHandle aTsyReqHandle,const TInt aIpc,const TDataPackage& aPackage);
|
|
73 |
virtual TReqMode ReqModeL(const TInt aIpc);
|
|
74 |
virtual CTelObject* OpenNewObjectByNameL(const TDesC& aName);
|
|
75 |
virtual CTelObject* OpenNewObjectL(TDes& aNewName);
|
|
76 |
virtual TInt CancelService(const TInt aIpc, const TTsyReqHandle aTsyReqHandle);
|
|
77 |
virtual TInt RegisterNotification(const TInt aIpc);
|
|
78 |
virtual TInt DeregisterNotification(const TInt aIpc);
|
|
79 |
virtual TInt NumberOfSlotsL(const TInt aIpc);
|
|
80 |
private:
|
|
81 |
// static CCallDMmTsy* This(TAny* aPtr);
|
|
82 |
|
|
83 |
TInt GetMobileDataCallCaps(const TTsyReqHandle aTsyReqHandle, TDes8* aCaps);
|
|
84 |
TInt NotifyMobileDataCallCapsChange(const TTsyReqHandle aTsyReqHandle, TDes8* aCaps);
|
|
85 |
TInt NotifyMobileDataCallCapsChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
86 |
|
|
87 |
static void InitialiseDataCallCaps(TDes8* aCallCaps);
|
|
88 |
|
|
89 |
TInt GetMobileDataCallRLPRange(const TTsyReqHandle aTsyReqHandle, TInt* aRLPVersion, TDes8* aRLPRange);
|
|
90 |
TInt GetMobileDataCallRLPRangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
91 |
|
|
92 |
TInt SetDynamicHscsdParams(const TTsyReqHandle aTsyReqHandle, TInt* aAiur, TInt* aRxTimeslots);
|
|
93 |
TInt SetDynamicHscsdParamsCancel(const TTsyReqHandle aTsyReqHandle);
|
|
94 |
|
|
95 |
TInt GetCurrentHscsdInfo(const TTsyReqHandle aTsyReqHandle, TDes8* aHSCSDInfo);
|
|
96 |
TInt NotifyHscsdInfoChange(const TTsyReqHandle aTsyReqHandle, TDes8* aHSCSDInfo);
|
|
97 |
TInt NotifyHscsdInfoChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
98 |
|
|
99 |
TInt NotifyVoiceFallback(const TTsyReqHandle aTsyReqHandle, TDes* aCallName);
|
|
100 |
TInt NotifyVoiceFallbackCancel(const TTsyReqHandle aTsyReqHandle);
|
|
101 |
|
|
102 |
static void InitialiseHscsdInfo(RMobileCall::TMobileCallHscsdInfoV1& aHSCSDInfo);
|
|
103 |
|
|
104 |
TInt SwitchAlternatingCall(const TTsyReqHandle aTsyReqHandle);
|
|
105 |
TInt SwitchAlternatingCallCancel(const TTsyReqHandle aTsyReqHandle);
|
|
106 |
TInt NotifyAlternatingCallSwitch(const TTsyReqHandle aTsyReqHandle);
|
|
107 |
TInt NotifyAlternatingCallSwitchCancel(const TTsyReqHandle aTsyReqHandle);
|
|
108 |
|
|
109 |
TInt GetMobileCallCaps(const TTsyReqHandle aTsyReqHandle, TDes8* aCaps);
|
|
110 |
TInt NotifyMobileCallCapsChange(const TTsyReqHandle aTsyReqHandle, TDes8* aCaps);
|
|
111 |
TInt NotifyMobileCallCapsChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
112 |
|
|
113 |
TInt GetMobileCallStatus(const TTsyReqHandle aTsyReqHandle,RMobileCall::TMobileCallStatus* aStatus);
|
|
114 |
TInt NotifyMobileCallStatusChange(const TTsyReqHandle aTsyReqHandle,RMobileCall::TMobileCallStatus* aStatus);
|
|
115 |
TInt NotifyMobileCallStatusChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
116 |
|
|
117 |
TInt Hold(const TTsyReqHandle aTsyReqHandle);
|
|
118 |
TInt HoldCancel(const TTsyReqHandle aTsyReqHandle);
|
|
119 |
|
|
120 |
TInt Resume(const TTsyReqHandle aTsyReqHandle);
|
|
121 |
TInt ResumeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
122 |
|
|
123 |
TInt Swap(const TTsyReqHandle aTsyReqHandle);
|
|
124 |
TInt SwapCancel(const TTsyReqHandle aTsyReqHandle);
|
|
125 |
|
|
126 |
TInt Deflect(const TTsyReqHandle aTsyReqHandle, RMobileCall::TMobileCallDeflect* aDeflectType, RMobilePhone::TMobileAddress* aDestination);
|
|
127 |
TInt DeflectCancel(const TTsyReqHandle aTsyReqHandle);
|
|
128 |
|
|
129 |
TInt Transfer(const TTsyReqHandle aTsyReqHandle);
|
|
130 |
TInt TransferCancel(const TTsyReqHandle aTsyReqHandle);
|
|
131 |
|
|
132 |
TInt GoOneToOne(const TTsyReqHandle aTsyReqHandle);
|
|
133 |
TInt GoOneToOneCancel(const TTsyReqHandle aTsyReqHandle);
|
|
134 |
|
|
135 |
TInt NotifyCallEvent(const TTsyReqHandle aTsyReqHandle, RMobileCall::TMobileCallEvent* aEvent);
|
|
136 |
TInt NotifyCallEventCancel(const TTsyReqHandle aTsyReqHandle);
|
|
137 |
|
|
138 |
TInt DialNoFdnCheck(const TTsyReqHandle aTsyReqHandle, TDesC8* aCallParams, TDesC* aNumber);
|
|
139 |
TInt DialNoFdnCheckCancel(const TTsyReqHandle aTsyReqHandle);
|
|
140 |
|
|
141 |
TInt DialCallControl(const TTsyReqHandle aTsyReqHandle, TDesC8* aCallParams, TDesC* aNumber);
|
|
142 |
TInt DialCallControlCancel(const TTsyReqHandle aTsyReqHandle);
|
|
143 |
|
|
144 |
TInt SetPrivacySetting(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhonePrivacy* aPrivacySetting);
|
|
145 |
TInt NotifyPrivacyConfirmation(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhonePrivacy* aPrivacySetting);
|
|
146 |
TInt NotifyPrivacyConfirmationCancel(const TTsyReqHandle aTsyReqHandle);
|
|
147 |
|
|
148 |
TInt SetTrafficChannel(const TTsyReqHandle aTsyReqHandle, RMobileCall::TMobileCallTch* aTchRequest);
|
|
149 |
TInt NotifyTrafficChannelConfirmation(const TTsyReqHandle aTsyReqHandle, RMobileCall::TMobileCallTch* aTchType);
|
|
150 |
TInt NotifyTrafficChannelConfirmationCancel(const TTsyReqHandle aTsyReqHandle);
|
|
151 |
|
|
152 |
TInt GetMobileCallInfo(const TTsyReqHandle aTsyReqHandle, TDes8* aInfo);
|
|
153 |
TInt GetMobileCallInfoCancel(const TTsyReqHandle aTsyReqHandle);
|
|
154 |
|
|
155 |
TInt NotifyRemotePartyInfoChange(const TTsyReqHandle aTsyReqHandle, TDes8* aRemotePartyInfo);
|
|
156 |
TInt NotifyRemotePartyInfoChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
157 |
|
|
158 |
TInt DialEmergencyCall(const TTsyReqHandle aTsyReqHandle, TDesC* aNumber);
|
|
159 |
TInt DialEmergencyCallCancel(const TTsyReqHandle aTsyReqHandle);
|
|
160 |
|
|
161 |
TInt ActivateCCBS(const TTsyReqHandle aTsyReqHandle, TInt* aIndex);
|
|
162 |
TInt ActivateCCBSCancel(const TTsyReqHandle aTsyReqHandle);
|
|
163 |
TInt RejectCCBS(const TTsyReqHandle aTsyReqHandle);
|
|
164 |
|
|
165 |
TInt GetUUSCaps(const TTsyReqHandle aTsyReqHandle, TUint32* aCaps);
|
|
166 |
TInt NotifyUUSCapsChange(const TTsyReqHandle aTsyReqHandle, TUint32* aCaps);
|
|
167 |
TInt NotifyUUSCapsChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
168 |
TInt ValidateCallParams(TDesC8* aCallParams);
|
|
169 |
TInt ActivateUUS(const TTsyReqHandle aTsyReqHandle, TDes8* aUUIRequest);
|
|
170 |
TInt ActivateUUSCancel(const TTsyReqHandle aTsyReqHandle);
|
|
171 |
TInt SendUUI(const TTsyReqHandle aTsyReqHandle, TBool* aMore, TDesC16* aUUI);
|
|
172 |
TInt SendUUICancel(const TTsyReqHandle aTsyReqHandle);
|
|
173 |
TInt ReceiveUUI(const TTsyReqHandle aTsyReqHandle, TDes16* aUUI);
|
|
174 |
TInt ReceiveUUICancel(const TTsyReqHandle aTsyReqHandle);
|
|
175 |
TInt HangupWithUUI(const TTsyReqHandle aTsyReqHandle, TDesC16* aUUI);
|
|
176 |
TInt HangupWithUUICancel(const TTsyReqHandle aTsyReqHandle);
|
|
177 |
TInt AnswerIncomingCallWithUUI(const TTsyReqHandle aTsyReqHandle, TDesC8* aCallParams, TDesC16* aUUI);
|
|
178 |
TInt AnswerIncomingCallWithUUICancel(const TTsyReqHandle aTsyReqHandle);
|
|
179 |
TInt AnswerMultimediaCallAsVoice(const TTsyReqHandle aTsyReqHandle, TDesC8* aCallParams, TDes16* aCallName);
|
|
180 |
TInt AnswerMultimediaCallAsVoiceCancel(const TTsyReqHandle aTsyReqHandle);
|
|
181 |
TInt NotifyAudioToneEvent(const TTsyReqHandle aTsyReqHandle, TDes8* aAudioTone);
|
|
182 |
TInt NotifyAudioToneEventCancel(const TTsyReqHandle aTsyReqHandle);
|
|
183 |
|
|
184 |
TInt DialISV(const TTsyReqHandle aTsyReqHandle, TDesC8* aCallParams, TDesC* aNumber);
|
|
185 |
TInt DialISVCancel(const TTsyReqHandle aTsyReqHandle);
|
|
186 |
TInt AnswerIncomingCallISV(const TTsyReqHandle aTsyReqHandle, TDesC8* aCallParams);
|
|
187 |
TInt AnswerIncomingCallISVCancel(const TTsyReqHandle aTsyReqHandle);
|
|
188 |
|
|
189 |
private: // data
|
|
190 |
TInt iNotifyMobileCallStatusChange;
|
|
191 |
TInt iNotifyCallEvent;
|
|
192 |
TInt iNotifyMobileCallCapsChange;
|
|
193 |
TInt iNotifyRemotePartyInfoChange;
|
|
194 |
TInt iNotifyMobileDataCallCapsChange;
|
|
195 |
TInt iNotifyHscsdParamsChange;
|
|
196 |
TInt iNotifyHscsdInfoChange;
|
|
197 |
TInt iNotifyPrivacyConfirmation;
|
|
198 |
TInt iNotifyTrafficChannelConfirmation;
|
|
199 |
TInt iNotifyVoiceFallback;
|
|
200 |
TInt iNotifyAlternatingCallSwitch;
|
|
201 |
TInt iNotifyUUSCapsChange;
|
|
202 |
TInt iCallTestCount;
|
|
203 |
CPhoneDMmTsy *iPhone;
|
|
204 |
TInt iNotifyAudioToneEvent;
|
|
205 |
protected:
|
|
206 |
};
|
|
207 |
|
|
208 |
/**************************************************************************/
|
|
209 |
//
|
|
210 |
// CLineDMmTsy
|
|
211 |
//
|
|
212 |
/**************************************************************************/
|
|
213 |
|
|
214 |
class CLineDMmTsy : public CLineDummyBase
|
|
215 |
{
|
|
216 |
public:
|
|
217 |
static CLineDMmTsy* NewL(CPhoneDMmTsy *aPhone, CPhoneFactoryDummyBase* aFac);
|
|
218 |
CLineDMmTsy(CPhoneDMmTsy *aPhone, CPhoneFactoryDummyBase* aFac);
|
|
219 |
void ConstructL();
|
|
220 |
~CLineDMmTsy();
|
|
221 |
virtual CTelObject* OpenNewObjectByNameL(const TDesC& aName);
|
|
222 |
virtual CTelObject* OpenNewObjectL(TDes& aNewName);
|
|
223 |
virtual TInt ExtFunc(const TTsyReqHandle aTsyReqHandle,const TInt aIpc,const TDataPackage& aPackage);
|
|
224 |
virtual TReqMode ReqModeL(const TInt aIpc);
|
|
225 |
virtual TInt CancelService(const TInt aIpc, const TTsyReqHandle aTsyReqHandle);
|
|
226 |
virtual TInt RegisterNotification(const TInt aIpc);
|
|
227 |
virtual TInt DeregisterNotification(const TInt aIpc);
|
|
228 |
virtual TInt NumberOfSlotsL(const TInt aIpc);
|
|
229 |
virtual TInt GetCaps(const TTsyReqHandle aTsyReqHandle,RLine::TCaps* aCaps);
|
|
230 |
|
|
231 |
private:
|
|
232 |
TInt GetMobileLineStatus(const TTsyReqHandle aTsyReqHandle,RMobileCall::TMobileCallStatus* aStatus);
|
|
233 |
TInt NotifyMobileLineStatusChange(const TTsyReqHandle aTsyReqHandle, RMobileCall::TMobileCallStatus* aStatus);
|
|
234 |
TInt NotifyMobileLineStatusChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
235 |
|
|
236 |
private:// data
|
|
237 |
//
|
|
238 |
TInt iNotifyMobileLineStatusChange;
|
|
239 |
TInt iCallObjectCount;
|
|
240 |
CPhoneDMmTsy *iPhone;
|
|
241 |
protected:
|
|
242 |
};
|
|
243 |
|
|
244 |
/**************************************************************************/
|
|
245 |
//
|
|
246 |
// CPhoneDMmTsy
|
|
247 |
//
|
|
248 |
/**************************************************************************/
|
|
249 |
|
|
250 |
class CPhoneDMmTsy : public CPhoneDummyBase
|
|
251 |
{
|
|
252 |
public:
|
|
253 |
static CPhoneDMmTsy* NewL(CPhoneFactoryDummyBase* aFac);
|
|
254 |
CPhoneDMmTsy(CPhoneFactoryDummyBase* aFac);
|
|
255 |
void ConstructL();
|
|
256 |
~CPhoneDMmTsy();
|
|
257 |
public:
|
|
258 |
virtual void Init();
|
|
259 |
virtual TInt ExtFunc(const TTsyReqHandle aTsyReqHandle,const TInt aIpc,const TDataPackage& aPackage);
|
|
260 |
virtual CTelObject::TReqMode ReqModeL(const TInt aIPC);
|
|
261 |
virtual CTelObject* OpenNewObjectByNameL(const TDesC& aName);
|
|
262 |
virtual CTelObject* OpenNewObjectL(TDes& aNewName);
|
|
263 |
virtual TInt CancelService(const TInt aIpc, const TTsyReqHandle aTsyReqHandle);
|
|
264 |
virtual TInt RegisterNotification(const TInt aIpc);
|
|
265 |
virtual TInt DeregisterNotification(const TInt aIpc);
|
|
266 |
virtual TInt NumberOfSlotsL(const TInt aIpc);
|
|
267 |
|
|
268 |
// methods for the list of aos which correspond to the outstanding delayed asyncrhonous reqs
|
|
269 |
TInt RemoveDelayedReq(const TTsyReqHandle aTsyReqHandle);
|
|
270 |
void AddDelayedReq(const TTsyReqHandle aTsyReqHandle, CTelObject *aTelObject);
|
|
271 |
// methods for the list of aos which correspond to the outstanding location services delayed asyncrhonous reqs
|
|
272 |
void AddDelayedReq(const TTsyReqHandle aTsyReqHandle, CTelObject *aTelObject,TInt aPriority);
|
|
273 |
private:
|
|
274 |
void RegisterDelayedReqL(const TTsyReqHandle aTsyReqHandle, CTelObject *aTelObject);
|
|
275 |
void RegisterDelayedReqL(const TTsyReqHandle aTsyReqHandle, CTelObject *aTelObject,TInt aPriority);
|
|
276 |
private:
|
|
277 |
static CPhoneDMmTsy* This(TAny* aPtr);
|
|
278 |
|
|
279 |
TInt GetMultimodeCaps(const TTsyReqHandle aTsyReqHandle, TUint32* aCaps);
|
|
280 |
TInt GetPhoneStoreInfo(const TTsyReqHandle aTsyReqHandle, TDes8* aGetInfo, TDes* aName);
|
|
281 |
TInt GetPhoneStoreInfo(const TTsyReqHandle aTsyReqHandle, TDes8* aGetInfo, RMobilePhone::TPhoneStoreNameAndIccType* aTable);
|
|
282 |
TInt GetPhoneStoreInfoCancel(const TTsyReqHandle aTsyReqHandle);
|
|
283 |
|
|
284 |
TInt GetIccAccessCaps(const TTsyReqHandle aTsyReqHandle, TUint32* aCaps);
|
|
285 |
TInt NotifyIccAccessCapsChange(const TTsyReqHandle aTsyReqHandle, TUint32* aCaps);
|
|
286 |
TInt NotifyIccAccessCapsChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
287 |
|
|
288 |
TInt GetIccIdentity(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TIccIdentity* aIdentity);
|
|
289 |
TInt GetIccIdentityCancel(const TTsyReqHandle aTsyReqHandle);
|
|
290 |
|
|
291 |
TInt GetCustomerServiceProfile(const TTsyReqHandle aTsyReqHandle, TDes8* aFile);
|
|
292 |
TInt GetCustomerServiceProfileCancel(const TTsyReqHandle aTsyReqHandle);
|
|
293 |
|
|
294 |
TInt GetServiceTable(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneServiceTable* aTable, TDes8* aFile);
|
|
295 |
TInt GetServiceTableCancel(const TTsyReqHandle aTsyReqHandle);
|
|
296 |
|
|
297 |
TInt GetBatteryCaps(const TTsyReqHandle aTsyReqHandle, TUint32* aCaps);
|
|
298 |
TInt GetBatteryInfo(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneBatteryInfoV1* aInfo);
|
|
299 |
TInt GetBatteryInfoCancel(const TTsyReqHandle aTsyReqHandle);
|
|
300 |
TInt NotifyBatteryInfoChange(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneBatteryInfoV1* aInfo);
|
|
301 |
TInt NotifyBatteryInfoChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
302 |
|
|
303 |
TInt GetSignalCaps(const TTsyReqHandle aTsyReqHandle, TUint32* aCaps);
|
|
304 |
TInt GetSignalStrength(const TTsyReqHandle aTsyReqHandle, TInt32* aSignalStrength, TInt8* aBar);
|
|
305 |
TInt GetSignalStrengthCancel(const TTsyReqHandle aTsyReqHandle);
|
|
306 |
TInt NotifySignalStrengthChange(const TTsyReqHandle aTsyReqHandle, TInt32* aSignalStrength, TInt8* aBar);
|
|
307 |
TInt NotifySignalStrengthChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
308 |
|
|
309 |
TInt GetIndicatorCaps(const TTsyReqHandle aTsyReqHandle, TUint32* aActionCaps, TUint32* aIndCaps);
|
|
310 |
TInt GetIndicator(const TTsyReqHandle aTsyReqHandle, TUint32* aIndicator);
|
|
311 |
TInt GetIndicatorCancel(const TTsyReqHandle aTsyReqHandle);
|
|
312 |
TInt NotifyIndicatorChange(const TTsyReqHandle aTsyReqHandle, TUint32* aIndicator);
|
|
313 |
TInt NotifyIndicatorChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
314 |
|
|
315 |
TInt GetIdentityCaps(const TTsyReqHandle aTsyReqHandle, TUint32* aCaps);
|
|
316 |
TInt GetPhoneId(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneIdentityV1* aId);
|
|
317 |
TInt GetPhoneIdCancel(const TTsyReqHandle aTsyReqHandle);
|
|
318 |
TInt GetSubscriberId(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneSubscriberId* aId);
|
|
319 |
TInt GetSubscriberIdCancel(const TTsyReqHandle aTsyReqHandle);
|
|
320 |
|
|
321 |
TInt GetDTMFCaps(const TTsyReqHandle aTsyReqHandle, TUint32* aCaps);
|
|
322 |
TInt NotifyDTMFCapsChange(const TTsyReqHandle aTsyReqHandle, TUint32* aCaps);
|
|
323 |
TInt NotifyDTMFCapsChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
324 |
|
|
325 |
TInt NotifyStopInDTMFString(const TTsyReqHandle aTsyReqHandle);
|
|
326 |
TInt NotifyStopInDTMFStringCancel(const TTsyReqHandle aTsyReqHandle);
|
|
327 |
|
|
328 |
TInt SendDTMFTones(const TTsyReqHandle aTsyReqHandle, TDesC* aTones);
|
|
329 |
TInt SendDTMFTonesCancel(const TTsyReqHandle aTsyReqHandle);
|
|
330 |
|
|
331 |
TInt ReadDTMFTones(const TTsyReqHandle aTsyReqHandle, TDes* aTones);
|
|
332 |
TInt ReadDTMFTonesCancel(const TTsyReqHandle aTsyReqHandle);
|
|
333 |
|
|
334 |
TInt StartDTMFTone(const TTsyReqHandle aTsyReqHandle, TChar* aTone);
|
|
335 |
|
|
336 |
TInt StopDTMFTone(const TTsyReqHandle aTsyReqHandle);
|
|
337 |
|
|
338 |
TInt ContinueDTMFStringSending(const TTsyReqHandle aTsyReqHandle, TBool *aContinue);
|
|
339 |
|
|
340 |
TInt GetNetworkCaps(const TTsyReqHandle aTsyReqHandle, TUint32* aCaps);
|
|
341 |
|
|
342 |
TInt GetCurrentMode(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneNetworkMode* aMode);
|
|
343 |
TInt NotifyModeChange(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneNetworkMode* aMode);
|
|
344 |
TInt NotifyModeChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
345 |
|
|
346 |
TInt GetHomeNetwork(const TTsyReqHandle aTsyReqHandle, TDes8* aNetworkInfoPckg);
|
|
347 |
TInt GetHomeNetworkCancel(const TTsyReqHandle aTsyReqHandle);
|
|
348 |
|
|
349 |
TInt GetCurrentNetwork(const TTsyReqHandle aTsyReqHandle, TDes8* aNetworkInfoPckg, RMobilePhone::TMobilePhoneLocationAreaV1* aArea);
|
|
350 |
TInt GetCurrentNetworkCancel(const TTsyReqHandle aTsyReqHandle);
|
|
351 |
TInt NotifyCurrentNetworkChange(const TTsyReqHandle aTsyReqHandle, TDes8* aNetworkInfoPckg, RMobilePhone::TMobilePhoneLocationAreaV1* aArea);
|
|
352 |
TInt NotifyCurrentNetworkChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
353 |
|
|
354 |
TInt GetCellInfo(const TTsyReqHandle aTsyReqHandle, TDes8* aCellInfoPckg);
|
|
355 |
TInt GetCellInfoCancel(const TTsyReqHandle aTsyReqHandle);
|
|
356 |
TInt NotifyCellInfoChange(const TTsyReqHandle aTsyReqHandle, TDes8* aCellInfoPckg);
|
|
357 |
TInt NotifyCellInfoChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
358 |
|
|
359 |
TInt GetNetworkRegistrationStatus(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneRegistrationStatus* aStatus);
|
|
360 |
TInt GetNetworkRegistrationStatusCancel(const TTsyReqHandle aTsyReqHandle);
|
|
361 |
TInt NotifyNetworkRegistrationStatusChange(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneRegistrationStatus* aStatus);
|
|
362 |
TInt NotifyNetworkRegistrationStatusChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
363 |
|
|
364 |
TInt GetDetectedNetworksPhase1(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aClient, TInt* aBufSize);
|
|
365 |
TInt ProcessGetDetectedNetworksPhase1L(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aClient, TInt* aBufSize);
|
|
366 |
TInt GetDetectedNetworksPhase2(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aClient, TDes8* aBuf);
|
|
367 |
TInt GetDetectedNetworksCancel(const TTsyReqHandle aTsyReqHandle);
|
|
368 |
|
|
369 |
TInt GetDetectedNetworksV2Phase1(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aClient, TInt* aBufSize);
|
|
370 |
TInt ProcessGetDetectedNetworksV2Phase1L(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aClient, TInt* aBufSize);
|
|
371 |
TInt GetDetectedNetworksV2Phase2(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aClient, TDes8* aBuf);
|
|
372 |
TInt GetDetectedNetworksV2Cancel(const TTsyReqHandle aTsyReqHandle);
|
|
373 |
|
|
374 |
TInt GetDetectedNetworksV5Phase1(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aClient, TInt* aBufSize);
|
|
375 |
TInt ProcessGetDetectedNetworksV5Phase1L(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aClient, TInt* aBufSize);
|
|
376 |
TInt GetDetectedNetworksV5Phase2(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aClient, TDes8* aBuf);
|
|
377 |
TInt GetDetectedNetworksV5Cancel(const TTsyReqHandle aTsyReqHandle);
|
|
378 |
|
|
379 |
TInt GetDetectedNetworksV8Phase1(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aClient, TInt* aBufSize);
|
|
380 |
TInt ProcessGetDetectedNetworksV8Phase1L(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aClient, TInt* aBufSize);
|
|
381 |
TInt GetDetectedNetworksV8Phase2(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aClient, TDes8* aBuf);
|
|
382 |
TInt GetDetectedNetworksV8Cancel(const TTsyReqHandle aTsyReqHandle);
|
|
383 |
|
|
384 |
TInt GetNetworkSelectionSetting(const TTsyReqHandle aTsyReqHandle, TDes8 *aSetting);
|
|
385 |
TInt SetNetworkSelectionSetting(const TTsyReqHandle aTsyReqHandle, TDes8* aSetting);
|
|
386 |
TInt SetNetworkSelectionSettingCancel(const TTsyReqHandle aTsyReqHandle);
|
|
387 |
TInt NotifyNetworkSelectionSettingChange(const TTsyReqHandle aTsyReqHandle, TDes8* aSetting);
|
|
388 |
TInt NotifyNetworkSelectionSettingChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
389 |
TInt SelectNetwork(const TTsyReqHandle aTsyReqHandle, TBool* aIsManual, RMobilePhone::TMobilePhoneNetworkManualSelection* aManualSelection);
|
|
390 |
TInt SelectNetworkCancel(const TTsyReqHandle aTsyReqHandle);
|
|
391 |
|
|
392 |
TInt GetNetworkTimeInfo(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneNITZ* aDateTime);
|
|
393 |
TInt NotifyNetworkTimeInfoChange(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneNITZ* aDateTime);
|
|
394 |
TInt NotifyNetworkTimeInfoChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
395 |
|
|
396 |
TInt GetServiceProviderName(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneServiceProviderNameV2* aName);
|
|
397 |
TInt GetServiceProviderNameCancel(const TTsyReqHandle aTsyReqHandle);
|
|
398 |
|
|
399 |
TInt GetDefaultPrivacy(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhonePrivacy* aSetting);
|
|
400 |
TInt SetDefaultPrivacy(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhonePrivacy* aSetting);
|
|
401 |
TInt SetDefaultPrivacyCancel(const TTsyReqHandle aTsyReqHandle);
|
|
402 |
TInt NotifyDefaultPrivacyChange(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhonePrivacy* aSetting);
|
|
403 |
TInt NotifyDefaultPrivacyChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
404 |
|
|
405 |
TInt GetCallServiceCaps(const TTsyReqHandle aTsyReqHandle, TUint32* aCaps);
|
|
406 |
TInt NotifyCallServiceCapsChange(const TTsyReqHandle aTsyReqHandle, TUint32* aCaps);
|
|
407 |
TInt NotifyCallServiceCapsChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
408 |
|
|
409 |
TInt ProgramFeatureCodeString(const TTsyReqHandle aTsyReqHandle, TDesC* aFCString, RMobilePhone::TNetworkServiceAndAction *aFeatureCode);
|
|
410 |
TInt ProgramFeatureCodeStringCancel(const TTsyReqHandle aTsyReqHandle);
|
|
411 |
TInt GetFeatureCodeString(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TNetworkServiceAndAction *aFeatureCode, TDes *aFCString);
|
|
412 |
TInt GetFeatureCodeStringCancel(const TTsyReqHandle aTsyReqHandle);
|
|
413 |
TInt SendNetworkServiceRequest(const TTsyReqHandle aTsyReqHandle, TDesC* aString);
|
|
414 |
TInt SendNetworkServiceRequestCancel(const TTsyReqHandle aTsyReqHandle);
|
|
415 |
|
|
416 |
TInt GetCallForwardingStatusPhase1(const TTsyReqHandle aTsyReqHandle, CRetrieveMobilePhoneCFList::TGetCallForwardingRequest* aReqData, TInt* aBufSize);
|
|
417 |
TInt ProcessGetCallForwardingStatusPhase1L(const TTsyReqHandle aTsyReqHandle, CRetrieveMobilePhoneCFList::TGetCallForwardingRequest* aReqData, TInt* aBufSize);
|
|
418 |
TInt GetCallForwardingStatusPhase2(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aClient, TDes8* aBuf);
|
|
419 |
TInt GetCallForwardingStatusCancel(const TTsyReqHandle aTsyReqHandle);
|
|
420 |
TInt NotifyCallForwardingStatusChange(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneCFCondition* aCondition);
|
|
421 |
TInt NotifyCallForwardingStatusChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
422 |
TInt SetCallForwardingStatus(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneCFCondition* aCondition, RMobilePhone::TMobilePhoneCFChangeV1* aInfo);
|
|
423 |
TInt SetCallForwardingStatusCancel(const TTsyReqHandle aTsyReqHandle);
|
|
424 |
TInt NotifyCallForwardingActive(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobileService* aServiceGroup, RMobilePhone::TMobilePhoneCFActive* aActive);
|
|
425 |
TInt NotifyCallForwardingActiveCancel(const TTsyReqHandle aTsyReqHandle);
|
|
426 |
|
|
427 |
TInt GetIdentityServiceStatus(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TIdServiceAndLocation *aInfo,
|
|
428 |
RMobilePhone::TMobilePhoneIdServiceStatus* aStatus);
|
|
429 |
TInt GetIdentityServiceStatusCancel(const TTsyReqHandle aTsyReqHandle);
|
|
430 |
|
|
431 |
TInt GetCallBarringPhase1(const TTsyReqHandle aTsyReqHandle, CRetrieveMobilePhoneCBList::TGetCallBarringRequest* aReqData, TInt* aBufSize);
|
|
432 |
TInt ProcessGetCallBarringPhase1L(const TTsyReqHandle aTsyReqHandle, CRetrieveMobilePhoneCBList::TGetCallBarringRequest* aReqData, TInt* aBufSize);
|
|
433 |
TInt GetCallBarringPhase2(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aClient, TDes8* aBuf);
|
|
434 |
TInt GetCallBarringCancel(const TTsyReqHandle aTsyReqHandle);
|
|
435 |
|
|
436 |
TInt SetCallBarringStatus(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneCBCondition *aCondition, RMobilePhone::TMobilePhoneCBChangeV1* aInfo);
|
|
437 |
TInt SetCallBarringStatusCancel(const TTsyReqHandle aTsyReqHandle);
|
|
438 |
TInt NotifyCallBarringStatusChange(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneCBCondition* aCondition);
|
|
439 |
TInt NotifyCallBarringStatusChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
440 |
TInt SetCallBarringPassword(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhonePasswordChangeV1* aPassword);
|
|
441 |
TInt SetCallBarringPasswordCancel(const TTsyReqHandle aTsyReqHandle);
|
|
442 |
TInt SetSSPassword(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhonePasswordChangeV2* aPassword, TInt* aService);
|
|
443 |
TInt SetSSPasswordCancel(const TTsyReqHandle aTsyReqHandle);
|
|
444 |
|
|
445 |
TInt GetCallWaitingPhase1(const TTsyReqHandle aTsyReqHandle, CRetrieveMobilePhoneCWList::TGetCallWaitingRequest* aReqData, TInt* aBufSize);
|
|
446 |
TInt ProcessGetCallWaitingPhase1L(const TTsyReqHandle aTsyReqHandle, CRetrieveMobilePhoneCWList::TGetCallWaitingRequest* aReqData, TInt* aBufSize);
|
|
447 |
TInt GetCallWaitingPhase2(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aClient, TDes8* aBuf);
|
|
448 |
TInt GetCallWaitingCancel(const TTsyReqHandle aTsyReqHandle);
|
|
449 |
TInt SetCallWaitingStatus(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobileService* aServiceGroup, RMobilePhone::TMobilePhoneServiceAction *aAction);
|
|
450 |
TInt SetCallWaitingStatusCancel(const TTsyReqHandle aTsyReqHandle);
|
|
451 |
TInt NotifyCallWaitingStatusChange(const TTsyReqHandle aTsyReqHandle, TDes8* aCWStatus);
|
|
452 |
TInt NotifyCallWaitingStatusChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
453 |
|
|
454 |
TInt GetCCBSStatus(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneCCBSStatus* aCcbsStatus, RMobilePhone::TMobileInfoLocation* aLocation);
|
|
455 |
TInt GetCCBSStatusCancel(const TTsyReqHandle aTsyReqHandle);
|
|
456 |
TInt NotifyCCBSStatusChange(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneCCBSStatus* aCcbsStatus);
|
|
457 |
TInt NotifyCCBSStatusChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
458 |
TInt DeactivateCCBS(const TTsyReqHandle aTsyReqHandle, TInt* aIndex);
|
|
459 |
TInt DeactivateCCBSCancel(const TTsyReqHandle aTsyReqHandle);
|
|
460 |
TInt AcceptCCBSRecall(const TTsyReqHandle aTsyReqHandle, TInt* aIndex, TDes* aCallName);
|
|
461 |
TInt AcceptCCBSRecallCancel(const TTsyReqHandle aTsyReqHandle);
|
|
462 |
TInt RefuseCCBSRecall(const TTsyReqHandle aTsyReqHandle, TInt* aIndex);
|
|
463 |
TInt NotifyCCBSRecall(const TTsyReqHandle aTsyReqHandle, TDes8* aCCBSEntry);
|
|
464 |
TInt NotifyCCBSRecallCancel(const TTsyReqHandle aTsyReqHandle);
|
|
465 |
|
|
466 |
|
|
467 |
TInt GetCallCompletionPhase1(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aReqData, TInt* aBufSize);
|
|
468 |
TInt ProcessGetCallCompletionPhase1L(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aReqData, TInt* aBufSize);
|
|
469 |
TInt GetCallCompletionPhase2(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aClient, TDes8* aBuf);
|
|
470 |
TInt GetCallCompletionCancel(const TTsyReqHandle aTsyReqHandle);
|
|
471 |
|
|
472 |
TInt GetAlternatingCallCaps(const TTsyReqHandle aTsyReqHandle, TUint32* aCaps);
|
|
473 |
TInt NotifyAlternatingCallCapsChange(const TTsyReqHandle aTsyReqHandle, TUint32* aCaps);
|
|
474 |
TInt NotifyAlternatingCallCapsChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
475 |
|
|
476 |
TInt GetAlternatingCallMode(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneAlternatingCallMode* aMode, RMobilePhone::TMobileService* aFirstService);
|
|
477 |
TInt SetAlternatingCallMode(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneAlternatingCallMode* aMode, RMobilePhone::TMobileService* aFirstService);
|
|
478 |
TInt SetAlternatingCallModeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
479 |
TInt NotifyAlternatingCallModeChange(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneAlternatingCallMode* aMode, RMobilePhone::TMobileService* aFirstService);
|
|
480 |
TInt NotifyAlternatingCallModeChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
481 |
|
|
482 |
TInt GetALSLine(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneALSLine* aALSLine);
|
|
483 |
TInt SetALSLine(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneALSLine* aALSLine);
|
|
484 |
TInt SetALSLineCancel(const TTsyReqHandle aTsyReqHandle);
|
|
485 |
TInt NotifyALSLineChange(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneALSLine* aALSLine);
|
|
486 |
TInt NotifyALSLineChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
487 |
|
|
488 |
TInt GetCostCaps(const TTsyReqHandle aTsyReqHandle, TUint32* aCaps);
|
|
489 |
TInt NotifyCostCapsChange(const TTsyReqHandle aTsyReqHandle, TUint32* aCaps);
|
|
490 |
TInt NotifyCostCapsChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
491 |
TInt ClearCostMeter(const TTsyReqHandle aTsyReqHandle,RMobilePhone::TMobilePhoneCostMeters* aMeters);
|
|
492 |
TInt ClearCostMeterCancel(const TTsyReqHandle aTsyReqHandle);
|
|
493 |
TInt SetMaxCostMeter(const TTsyReqHandle aTsyReqHandle, TUint *aUnits);
|
|
494 |
TInt SetMaxCostMeterCancel(const TTsyReqHandle aTsyReqHandle);
|
|
495 |
TInt SetPuct(const TTsyReqHandle aTsyReqHandle, TDes8* aPuct);
|
|
496 |
TInt SetPuctCancel(const TTsyReqHandle aTsyReqHandle);
|
|
497 |
TInt GetCostInfo(const TTsyReqHandle aTsyReqHandle, TDes8* aCostInfo);
|
|
498 |
TInt GetCostInfoCancel(const TTsyReqHandle aTsyReqHandle);
|
|
499 |
TInt NotifyCostInfoChange(const TTsyReqHandle aTsyReqHandle, TDes8* aCostInfo);
|
|
500 |
TInt NotifyCostInfoChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
501 |
|
|
502 |
TInt GetSecurityCaps(const TTsyReqHandle aTsyReqHandle, TUint32* aCaps);
|
|
503 |
TInt NotifySecurityCapsChange(const TTsyReqHandle aTsyReqHandle, TUint32* aCaps);
|
|
504 |
TInt NotifySecurityCapsChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
505 |
TInt GetLockInfo(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneLock *aLock, TDes8* aLockInfo) ;
|
|
506 |
TInt GetLockInfoCancel(const TTsyReqHandle aTsyReqHandle);
|
|
507 |
TInt NotifyLockInfoChange(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneLock* aLock, TDes8* aLockInfo);
|
|
508 |
TInt NotifyLockInfoChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
509 |
TInt SetLockSetting(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneLock *aLock, RMobilePhone::TMobilePhoneLockSetting *aLockSetting);
|
|
510 |
TInt SetLockSettingCancel(const TTsyReqHandle aTsyReqHandle);
|
|
511 |
TInt ChangeSecurityCode(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneSecurityCode *aType, RMobilePhone::TMobilePhonePasswordChangeV1 *aChange);
|
|
512 |
TInt ChangeSecurityCodeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
513 |
TInt GetSecurityCodeInfo(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneSecurityCode *aSecurityCode, TDes8* aSecurityCodeInfo);
|
|
514 |
TInt GetSecurityCodeInfoCancel(const TTsyReqHandle aTsyReqHandle);
|
|
515 |
TInt NotifySecurityCodeInfoChange(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneSecurityCode* aSecurityCode,TDes8* aSecurityCodeInfo);
|
|
516 |
TInt NotifySecurityCodeInfoChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
517 |
TInt NotifyOnSecurityEvent(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneSecurityEvent* aEvent);
|
|
518 |
TInt NotifyOnSecurityEventCancel(const TTsyReqHandle aTsyReqHandle);
|
|
519 |
TInt VerifySecurityCode(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneSecurityCode *aType, RMobilePhone::TCodeAndUnblockCode* aData);
|
|
520 |
TInt VerifySecurityCodeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
521 |
TInt AbortSecurityCode(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneSecurityCode *aType);
|
|
522 |
|
|
523 |
TInt NotifyMessageWaiting(const TTsyReqHandle aTsyReqHandle, TInt* aCount);
|
|
524 |
TInt NotifyMessageWaitingCancel(const TTsyReqHandle aTsyReqHandle);
|
|
525 |
TInt GetIccMessageWaitingIndicators(const TTsyReqHandle aTsyReqHandle, TDes8* aMsgIndicators);
|
|
526 |
TInt GetIccMessageWaitingIndicatorsCancel(const TTsyReqHandle aTsyReqHandle);
|
|
527 |
TInt SetIccMessageWaitingIndicators(const TTsyReqHandle aTsyReqHandle, TDes8* aMsgIndicators);
|
|
528 |
TInt SetIccMessageWaitingIndicatorsCancel(const TTsyReqHandle aTsyReqHandle);
|
|
529 |
TInt NotifyIccMessageWaitingIndicatorsChange(const TTsyReqHandle aTsyReqHandle, TDes8* aMsgIndicators);
|
|
530 |
TInt NotifyIccMessageWaitingIndicatorsChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
531 |
|
|
532 |
TInt GetFdnStatus(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneFdnStatus* aFdnStatus);
|
|
533 |
TInt GetFdnStatusCancel(const TTsyReqHandle aTsyReqHandle);
|
|
534 |
TInt SetFdnSetting(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneFdnSetting *aFdnSetting);
|
|
535 |
TInt SetFdnSettingCancel(const TTsyReqHandle aTsyReqHandle);
|
|
536 |
TInt NotifyFdnStatusChange(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneFdnStatus* aFdnStatus);
|
|
537 |
TInt NotifyFdnStatusChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
538 |
|
|
539 |
TInt GetMulticallParams(const TTsyReqHandle aTsyReqHandle, TDes8* aMulticallParams);
|
|
540 |
TInt SetMulticallParams(const TTsyReqHandle aTsyReqHandle, TInt* aUserMaxBearers);
|
|
541 |
TInt GetMulticallParamsCancel(const TTsyReqHandle aTsyReqHandle);
|
|
542 |
TInt SetMulticallParamsCancel(const TTsyReqHandle aTsyReqHandle);
|
|
543 |
TInt NotifyMulticallParamsChange(const TTsyReqHandle aTsyReqHandle, TDes8* aMulticallParams);
|
|
544 |
TInt NotifyMulticallParamsChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
545 |
|
|
546 |
TInt GetIncomingCallType(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneIncomingCallType* aCallType, TDes8* aDataParams);
|
|
547 |
TInt GetIncomingCallTypeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
548 |
TInt SetIncomingCallType(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneIncomingCallType* aCallType, TDes8* aDataParams);
|
|
549 |
TInt SetIncomingCallTypeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
550 |
TInt NotifyIncomingCallTypeChange(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneIncomingCallType* aCallType, TDes8* aDataParams);
|
|
551 |
TInt NotifyIncomingCallTypeChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
552 |
|
|
553 |
TInt GetUUSSetting(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneUUSSetting* aSetting);
|
|
554 |
TInt GetUUSSettingCancel(const TTsyReqHandle aTsyReqHandle);
|
|
555 |
TInt SetUUSSetting(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneUUSSetting* aSetting);
|
|
556 |
TInt SetUUSSettingCancel(const TTsyReqHandle aTsyReqHandle);
|
|
557 |
TInt NotifyUUSSettingChange(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneUUSSetting* aSetting);
|
|
558 |
TInt NotifyUUSSettingChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
559 |
|
|
560 |
TInt GetMultimediaCallPreference(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneMultimediaSettings* aMmSettings);
|
|
561 |
|
|
562 |
TInt SetMultimediaCallPreference(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneMultimediaSettings* aMmSettings);
|
|
563 |
TInt SetMultimediaCallPreferenceCancel(const TTsyReqHandle aTsyReqHandle);
|
|
564 |
TInt NotifyMultimediaCallPreferenceChange(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneMultimediaSettings* aMmSettings);
|
|
565 |
TInt NotifyMultimediaCallPreferenceChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
566 |
|
|
567 |
TInt GetNetworkSecurityLevel(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneNetworkSecurity* aSecurity);
|
|
568 |
TInt GetNetworkSecurityLevelCancel(const TTsyReqHandle aTsyReqHandle);
|
|
569 |
TInt NotifyNetworkSecurityLevelChange(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneNetworkSecurity* aSecurity);
|
|
570 |
TInt NotifyNetworkSecurityLevelChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
571 |
|
|
572 |
TInt EnumerateUSimApplications(const TTsyReqHandle aTsyReqHandle,TInt* aCount, RMobilePhone::TAID* aActiveAID);
|
|
573 |
TInt EnumerateUSimApplicationsCancel(const TTsyReqHandle aTsyReqHandle);
|
|
574 |
|
|
575 |
TInt SetUSimApplicationStatus(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TAID* aAID, RMobilePhone::TUSimAppAction* aAction);
|
|
576 |
TInt SetUSimApplicationStatusCancel(const TTsyReqHandle aTsyReqHandle);
|
|
577 |
|
|
578 |
TInt GetUSimApplicationInfo(const TTsyReqHandle aTsyReqHandle, TInt* aIndex,RMobilePhone::TUSimApplicationInfoV2* aInfo);
|
|
579 |
TInt GetUSimApplicationInfoCancel(const TTsyReqHandle aTsyReqHandle);
|
|
580 |
|
|
581 |
TInt NotifyUSimApplicationsInfoChange(const TTsyReqHandle aTsyReqHandle, TInt* aCount, RMobilePhone::TAID* aActiveAID);
|
|
582 |
TInt NotifyUSimApplicationsInfoChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
583 |
|
|
584 |
TInt SetUSimAppsSelectionMode(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TUSimSelectionMode* aMode);
|
|
585 |
TInt GetUSimAppsSelectionMode(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TUSimSelectionMode* aMode);
|
|
586 |
TInt NotifyUSimAppsSelectionModeChange(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TUSimSelectionMode* aMode);
|
|
587 |
TInt NotifyUSimAppsSelectionModeChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
588 |
TInt GetMailboxNumbers(const TTsyReqHandle aTsyReqHandle, TDes8 *aMialBox);
|
|
589 |
TInt GetMailboxNumbersCancel(const TTsyReqHandle aTsyReqHandle);
|
|
590 |
TInt NotifyMailboxNumbersChange(const TTsyReqHandle aTsyReqHandle, TDes8 *aMialBox);
|
|
591 |
TInt NotifyMailboxNumbersChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
592 |
TInt NotifyMmsUpdate(const TTsyReqHandle aTsyReqHandle, TDes8* aNotification);
|
|
593 |
TInt NotifyMmsUpdateCancel(const TTsyReqHandle aTsyReqHandle);
|
|
594 |
TInt SetMmsUserConnParams(const TTsyReqHandle aTsyReqHandle, TDes8* aConnectivity);
|
|
595 |
TInt SetMmsUserConnParamsCancel(const TTsyReqHandle aTsyReqHandle);
|
|
596 |
TInt SetMmsUserPreferences(const TTsyReqHandle aTsyReqHandle,TDes8* aPreferences);
|
|
597 |
TInt SetMmsUserPreferencesCancel(const TTsyReqHandle aTsyReqHandle);
|
|
598 |
TInt GetMmsConfig(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMmsConnParams aType, TDes8* aConnectivity);
|
|
599 |
TInt GetMmsConfigCancel(const TTsyReqHandle aTsyReqHandle);
|
|
600 |
TInt NotifyMmsConfig(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMmsConnParams aType, TDes8* aConnectivity);
|
|
601 |
TInt NotifyMmsConfigCancel(const TTsyReqHandle aTsyReqHandle);
|
|
602 |
TInt GetHomeNetworkSearchPeriod(const TTsyReqHandle aTsyReqHandle, TInt* aSearchIntv);
|
|
603 |
TInt GetHomeNetworkSearchPeriodCancel(const TTsyReqHandle aTsyReqHandle);
|
|
604 |
TInt GetLastUsedAccessTechnology(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneNetworkAccess* aAccessTech);
|
|
605 |
TInt GetLastUsedAccessTechnologyCancel(const TTsyReqHandle aTsyReqHandle);
|
|
606 |
TInt GetNetworkInvScanSetting(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneInvestigationScan* aSetting);
|
|
607 |
TInt NotifyNetworkInvScanChange(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneInvestigationScan* aSetting);
|
|
608 |
TInt NotifyNetworkInvScanChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
609 |
TInt NotifyNetworkInvScanEvent(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneInvestigationScanEvent* aEvent);
|
|
610 |
TInt NotifyNetworkInvScanEventCancel(const TTsyReqHandle aTsyReqHandle);
|
|
611 |
TInt GetCallForwardingIndicator(const TTsyReqHandle aTsyReqHandle, TDes8* aIndicator);
|
|
612 |
TInt GetCallForwardingIndicatorCancel(const TTsyReqHandle aTsyReqHandle);
|
|
613 |
TInt GetCompMethodName(const TTsyReqHandle aTsyReqHandle, TUint aCmi, TDes* aAlphaTag);
|
|
614 |
TInt GetCompMethodNameCancel(const TTsyReqHandle aTsyReqHandle);
|
|
615 |
TInt EnumerateAPNEntries(const TTsyReqHandle aTsyReqHandle, TUint32* aIndex);
|
|
616 |
TInt EnumerateAPNEntriesCancel(const TTsyReqHandle aTsyReqHandle);
|
|
617 |
TInt GetAPNname(const TTsyReqHandle aTsyReqHandle, TUint32 aIndex, TDes8* aAPN);
|
|
618 |
TInt GetAPNnameCancel(const TTsyReqHandle aTsyReqHandle);
|
|
619 |
TInt AppendAPNName(const TTsyReqHandle aTsyReqHandle, TDes8* aAPN);
|
|
620 |
TInt AppendAPNNameCancel(const TTsyReqHandle aTsyReqHandle);
|
|
621 |
TInt DeleteAPNName(const TTsyReqHandle aTsyReqHandle, TUint32 aIndex);
|
|
622 |
TInt DeleteAPNNameCancel(const TTsyReqHandle aTsyReqHandle);
|
|
623 |
TInt NotifyAPNListChanged(const TTsyReqHandle aTsyReqHandle);
|
|
624 |
TInt NotifyAPNListChangedCancel(const TTsyReqHandle aTsyReqHandle);
|
|
625 |
TInt SetAPNControlListServiceStatus(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TAPNControlListServiceStatus aAPNControlListServiceStatus);
|
|
626 |
TInt SetAPNControlListServiceStatusCancel(const TTsyReqHandle aTsyReqHandle);
|
|
627 |
TInt GetAPNControlListServiceStatus(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TAPNControlListServiceStatus* aAPNControlListServiceStatus);
|
|
628 |
TInt GetAPNControlListServiceStatusCancel(const TTsyReqHandle aTsyReqHandle);
|
|
629 |
TInt NotifyAPNControlListServiceStatusChange(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TAPNControlListServiceStatus* aAPNControlListServiceStatus);
|
|
630 |
TInt NotifyAPNControlListServiceStatusChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
631 |
TInt GetAirTimeDuration(const TTsyReqHandle aTsyReqHandle, TTimeIntervalSeconds* aTime);
|
|
632 |
TInt NotifyAirTimeDurationChange(const TTsyReqHandle aTsyReqHandle, TTimeIntervalSeconds* aTime);
|
|
633 |
TInt NotifyAirTimeDurationChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
634 |
TInt TerminateAllCalls(const TTsyReqHandle aTsyReqHandle);
|
|
635 |
TInt TerminateAllCallsCancel(const TTsyReqHandle aTsyReqHandle);
|
|
636 |
TInt TerminateActiveCalls(const TTsyReqHandle aTsyReqHandle);
|
|
637 |
TInt TerminateActiveCallsCancel(const TTsyReqHandle aTsyReqHandle);
|
|
638 |
TInt NotifySendNetworkServiceRequest(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneNotifySendSSOperation* aOperation, TDes8* aRequestComplete);
|
|
639 |
TInt NotifySendNetworkServiceRequestCancel(const TTsyReqHandle aTsyReqHandle);
|
|
640 |
TInt NotifyAllSendNetworkServiceRequest(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneNotifySendSSOperation* aOperation, TDes8* aRequestComplete);
|
|
641 |
TInt NotifyAllSendNetworkServiceRequestCancel(const TTsyReqHandle aTsyReqHandle);
|
|
642 |
TInt ClearBlacklist(const TTsyReqHandle aTsyReqHandle);
|
|
643 |
TInt ClearBlacklistCancel(const TTsyReqHandle aTsyReqHandle);
|
|
644 |
TInt NotifyDTMFEvent(const TTsyReqHandle aTsyReqHandle,RMobilePhone::TMobilePhoneDTMFEvent* aEvent);
|
|
645 |
TInt NotifyDTMFEventCancel(const TTsyReqHandle aTsyReqHandle);
|
|
646 |
TInt GetPersonalisationCaps(const TTsyReqHandle aTsyReqHandle, TUint32* aCaps);
|
|
647 |
TInt GetPersonalisationCapsCancel(const TTsyReqHandle aTsyReqHandle);
|
|
648 |
TInt GetPersonalisationStatus(const TTsyReqHandle aTsyReqHandle, TUint32* aPersSchemes);
|
|
649 |
TInt GetPersonalisationStatusCancel(const TTsyReqHandle aTsyReqHandle);
|
|
650 |
TInt SetPersonalisationStatus(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhonePersonalisation* aPersSchemes, TDes* aPersCode);
|
|
651 |
TInt SetPersonalisationStatusCancel(const TTsyReqHandle aTsyReqHandle);
|
|
652 |
TInt GetCurrentNetworkName(const TTsyReqHandle aTsyReqHandle, TDes8* aNetworkName, TDes8* aLocInfo);
|
|
653 |
TInt GetCurrentNetworkNameCancel(const TTsyReqHandle aTsyReqHandle);
|
|
654 |
TInt GetPreferredNetworksPhase1(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aClient, TInt* aBufSize);
|
|
655 |
TInt ProcessGetPreferredNetworksPhase1L(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aClient, TInt* aBufSize);
|
|
656 |
TInt GetPreferredNetworksPhase2(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aClient, TDes8* aBuf);
|
|
657 |
TInt GetPreferredNetworksCancel(const TTsyReqHandle aTsyReqHandle);
|
|
658 |
TInt ProcessStorePreferredNetworksListL(TTsyReqHandle aTsyReqHandle, TDes8* aBuffer);
|
|
659 |
TInt StorePreferredNetworksList(const TTsyReqHandle aTsyReqHandle, TDes8* aBuffer);
|
|
660 |
TInt StorePreferredNetworksListCancel(TTsyReqHandle aTsyReqHandle);
|
|
661 |
TInt NotifyStorePreferredNetworksListChange(TTsyReqHandle aTsyReqHandle);
|
|
662 |
TInt NotifyStorePreferredNetworksListChangeCancel(TTsyReqHandle aTsyReqHandle);
|
|
663 |
TInt GetCipheringIndicatorStatus(TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobileCallCipheringIndicator& aIndicatorStatus);
|
|
664 |
TInt GetCipheringIndicatorStatusCancel(TTsyReqHandle aTsyReqHandle);
|
|
665 |
TInt NotifyCipheringIndicatorStatus(TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobileCallCipheringIndicator& aIndicatorStatus);
|
|
666 |
TInt NotifyCipheringIndicatorStatusCancel(TTsyReqHandle aTsyReqHandle);
|
|
667 |
TInt SetIdentityServiceStatus(TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneIdService aService, RMobilePhone::TMobilePhoneIdServiceSetting aSetting);
|
|
668 |
TInt SetIdentityServiceStatusCancel(TTsyReqHandle aTsyReqHandle);
|
|
669 |
TInt NotifyIdentityServiceStatus(TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneIdService aService, RMobilePhone::TMobilePhoneIdServiceStatus* aStatus);
|
|
670 |
TInt NotifyIdentityServiceStatusCancel(TTsyReqHandle aTsyReqHandle);
|
|
671 |
TInt NotifyIdentitySuppressionRejected(TTsyReqHandle aTsyReqHandle);
|
|
672 |
TInt NotifyIdentitySuppressionRejectedCancel(TTsyReqHandle aTsyReqHandle);
|
|
673 |
TInt NotifyMulticallIndicatorChange(TTsyReqHandle aTsyReqHandle, RMobilePhone::TMobilePhoneMulticallIndicator* aMulticallIndicator);
|
|
674 |
TInt NotifyMulticallIndicatorChangeCancel(TTsyReqHandle aTsyReqHandle);
|
|
675 |
TInt GetAuthorizationInfoPhase1(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aClient,TInt* aBufSize);
|
|
676 |
TInt ProcessGetAuthorizationInfoPhase1L(const TTsyReqHandle aTsyReqHandle,
|
|
677 |
RMobilePhone::TClientId* aId,
|
|
678 |
TInt* aBufSize);
|
|
679 |
TInt GetAuthorizationInfoPhase2(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* ,TDes8* aBuffer);
|
|
680 |
TInt GetAuthorizationInfoCancel(const TTsyReqHandle aTsyReqHandle);
|
|
681 |
|
|
682 |
TInt GetAuthenticationData(const TTsyReqHandle aTsyReqHandle,TDes8* aAuthenticationData);
|
|
683 |
TInt GetAuthenticationDataCancel(const TTsyReqHandle aTsyReqHandle);
|
|
684 |
TInt NotifyImsAuthorizationInfoChanged(const TTsyReqHandle aTsyReqHandle);
|
|
685 |
TInt NotifyImsAuthorizationInfoChangedCancel(const TTsyReqHandle aTsyReqHandle);
|
|
686 |
|
|
687 |
TInt EnumerateSmartCardApplications(const TTsyReqHandle aTsyReqHandle,TUint* aCount);
|
|
688 |
TInt EnumerateSmartCardApplicationsCancel(const TTsyReqHandle aTsyReqHandle);
|
|
689 |
TInt GetSmartCardApplicationInfo(const TTsyReqHandle aTsyReqHandle,TUint* aAppIndex, TDes8* aInfoBuffer);
|
|
690 |
TInt GetSmartCardApplicationInfoCancel(const TTsyReqHandle aTsyReqHandle);
|
|
691 |
TInt NotifySmartCardApplicationInfoChange(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TSmartCardApplicationEvent* aEvent, RMobilePhone::TAID* aAID);
|
|
692 |
TInt NotifySmartCardApplicationInfoChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
693 |
TInt SetSmartCardApplicationStatus(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TAID* aAID, RMobilePhone::TSmartCardApplicationAction aAction);
|
|
694 |
TInt SetSmartCardApplicationStatusCancel(const TTsyReqHandle aTsyReqHandle);
|
|
695 |
TInt GetScFileInfo(const TTsyReqHandle aTsyReqHandle, const RMobilePhone::TScFilePath& aFilePathId, TDes8* aInfo);
|
|
696 |
TInt GetScFileInfoCancel(const TTsyReqHandle aTsyReqHandle);
|
|
697 |
TInt ReadScFile(const TTsyReqHandle aTsyReqHandle, const RMobilePhone::TScFilePathWithAccessOffsets& aFilePathOffsets, TDes8* aReadBuffer);
|
|
698 |
TInt ReadScFileCancel(const TTsyReqHandle aTsyReqHandle);
|
|
699 |
TInt UpdateScFile(const TTsyReqHandle aTsyReqHandle, const RMobilePhone::TScFilePathWithAccessOffsets& aFilePathOffsets, TDes8* aWriteBuffer);
|
|
700 |
TInt UpdateScFileCancel(const TTsyReqHandle aTsyReqHandle);
|
|
701 |
TInt GetCurrentActiveUSimApplication(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TAID* aAID);
|
|
702 |
TInt GetCurrentActiveUSimApplicationCancel(const TTsyReqHandle aTsyReqHandle);
|
|
703 |
|
|
704 |
TInt GetSmartCardAuthenticationData(const TTsyReqHandle aTsyReqHandle, TDes8* aSmartCardAuthData, RMobilePhone::TAID* aAID);
|
|
705 |
TInt GetSmartCardAuthenticationDataCancel(const TTsyReqHandle aTsyReqHandle);
|
|
706 |
|
|
707 |
TInt CharToSeptNumL(const TChar& aChar) const;
|
|
708 |
void ConvertTextToBinary(const TDesC& aSrc, TDes8& aDst);
|
|
709 |
TInt SetEmergencyClient(const TTsyReqHandle aTsyReqHandle, TUint32* aEmergencyRequest);
|
|
710 |
|
|
711 |
TInt GetAuthenticationListPhase1(const TTsyReqHandle aTsyReqHandle, CRetrieveMobilePhoneAuthenticationIds::TAuthRequestData* aRequest,TInt* aBufSize);
|
|
712 |
TInt ProcessGetGbaPhase1L(const TTsyReqHandle aTsyReqHandle,RMobilePhone::TClientId* aId,TInt* aBufSize);
|
|
713 |
TInt ProcessGetMbmsPhase1L(const TTsyReqHandle aTsyReqHandle,RMobilePhone::TClientId* aId,TInt* aBufSize);
|
|
714 |
TInt GetAuthenticationListPhase2(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId*,TDes8* aBuffer);
|
|
715 |
TInt GetAuthenticationListCancel(const TTsyReqHandle aTsyReqHandle);
|
|
716 |
|
|
717 |
TInt NotifyAuthenticateDataChange(const TTsyReqHandle aTsyReqHandle, TDes8* aAuthInfo);
|
|
718 |
TInt NotifyAuthenticateDataChangeCancel(TTsyReqHandle aTsyReqHandle);
|
|
719 |
|
|
720 |
TInt GetAuthenticationParams(const TTsyReqHandle aTsyReqHandle,TDes8* aAuthInfo,TDes8* aParams);
|
|
721 |
TInt GetAuthenticationParamsCancel(TTsyReqHandle aTsyReqHandle);
|
|
722 |
|
|
723 |
TInt SetGbaBootstrapParams(const TTsyReqHandle aTsyReqHandle,RMobilePhone::TAID* aAID,TDes8* aParams);
|
|
724 |
TInt SetGbaBootstrapParamsCancel(TTsyReqHandle aTsyReqHandle);
|
|
725 |
|
|
726 |
TInt NotifyWlanDataChange(const TTsyReqHandle aTsyReqHandle, TDes8* aData);
|
|
727 |
TInt NotifyWlanDataChangeCancel(TTsyReqHandle aTsyReqHandle);
|
|
728 |
|
|
729 |
TInt NotifyPreferredWlanSIDListChange(TTsyReqHandle aTsyReqHandle);
|
|
730 |
TInt NotifyPreferredWlanSIDListChangeCancel(TTsyReqHandle aTsyReqHandle);
|
|
731 |
|
|
732 |
TInt GetWlanData(const TTsyReqHandle aTsyReqHandle,TDes8* aData);
|
|
733 |
TInt GetWlanDataCancel(TTsyReqHandle aTsyReqHandle);
|
|
734 |
|
|
735 |
TInt SetWlanData(const TTsyReqHandle aTsyReqHandle,TDes8* aData);
|
|
736 |
TInt SetWlanDataCancel(TTsyReqHandle aTsyReqHandle);
|
|
737 |
|
|
738 |
TInt GetPreferredWlanSIDsPhase1(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aClient, TInt* aBufSize);
|
|
739 |
TInt ProcessGetPreferredWlanSIDsPhase1L(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aClient, TInt* aBufSize);
|
|
740 |
TInt GetPreferredWlanSIDsPhase2(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aClient, TDes8* aBuf);
|
|
741 |
TInt GetPreferredWlanSIDsCancel(const TTsyReqHandle aTsyReqHandle);
|
|
742 |
|
|
743 |
TInt StorePreferredWlanSIDList(const TTsyReqHandle aTsyReqHandle,TDes8* aBuffer);
|
|
744 |
TInt StorePreferredWlanSIDListCancel(TTsyReqHandle aTsyReqHandle);
|
|
745 |
|
|
746 |
TInt ProcessStorePreferredWlanSIDListL(TTsyReqHandle aTsyReqHandle,TDes8* aBuffer);
|
|
747 |
|
|
748 |
private:
|
|
749 |
|
|
750 |
class CActiveListNode : public CBase
|
|
751 |
{
|
|
752 |
public:
|
|
753 |
CActiveListNode(CActive *aActive, const TTsyReqHandle aTsyReqHandle);
|
|
754 |
virtual ~CActiveListNode();
|
|
755 |
public:
|
|
756 |
CActive *iActive;
|
|
757 |
const TTsyReqHandle iTsyReqHandle;
|
|
758 |
TSglQueLink iNext;
|
|
759 |
};
|
|
760 |
|
|
761 |
|
|
762 |
TInt FindDelayedReq(const TTsyReqHandle aTsyReqHandle, CActiveListNode *& aNode);
|
|
763 |
|
|
764 |
private: // data
|
|
765 |
TInt iNotifyModeChange;
|
|
766 |
TInt iNotifyIccAccessCaps;
|
|
767 |
TInt iNotifyBatteryInfoChange;
|
|
768 |
TInt iNotifySignalStrengthChange;
|
|
769 |
TInt iNotifyIndicatorChange;
|
|
770 |
TInt iNotifyDTMFCapsChange;
|
|
771 |
TInt iNotifyStopInDTMFString;
|
|
772 |
TInt iNotifyCurrentNetworkChange;
|
|
773 |
TInt iNotifyCellInfoChange;
|
|
774 |
TInt iNotifyNetworkRegistrationStatusChange;
|
|
775 |
TInt iNotifyCallForwardingStatusChange;
|
|
776 |
TInt iNotifyCallForwardingActive;
|
|
777 |
TInt iNotifyNetworkSelectionSettingChange;
|
|
778 |
TInt iNotifyNetworkTimeInfoChange;
|
|
779 |
TInt iNotifyCallServiceCaps;
|
|
780 |
TInt iNotifyCallBarringStatusChange;
|
|
781 |
TInt iNotifyCallWaitingStatusChange;
|
|
782 |
TInt iNotifyCCBSStatusChange;
|
|
783 |
TInt iNotifyCCBSRecall;
|
|
784 |
TInt iNotifyAlternatingCallCapsChange;
|
|
785 |
TInt iNotifyAlternatingCallModeChange;
|
|
786 |
TInt iNotifyALSLineChange;
|
|
787 |
TInt iNotifyCostCapsChange;
|
|
788 |
TInt iNotifyCostInfoChange;
|
|
789 |
TInt iNotifySecurityCapsChange;
|
|
790 |
TInt iNotifyLockInfoChange;
|
|
791 |
TInt iNotifySecurityCodeInfoChange;
|
|
792 |
TInt iNotifyOnSecurityEvent;
|
|
793 |
TInt iNotifyMessageWaiting;
|
|
794 |
TInt iNotifyIccMessageWaitingChange;
|
|
795 |
TInt iNotifyFdnStatusChange;
|
|
796 |
TInt iNotifyMulticallParamsChange;
|
|
797 |
TInt iNotifyIncomingCallTypeChange;
|
|
798 |
TInt iNotifyUUSSettingChange;
|
|
799 |
TInt iNotifyDefaultPrivacyChange;
|
|
800 |
TInt iNotifyMmCallPrefChange;
|
|
801 |
TInt iNotifyNetworkSecurityChange;
|
|
802 |
TInt iNotifyUSimAppsSelectionModeChange;
|
|
803 |
TInt iNotifyUSimApplicationsInfoChange;
|
|
804 |
TInt iNotifyMailBoxNumbersChange;
|
|
805 |
TInt iNotifyMmsUpdate;
|
|
806 |
TInt iNotifyMmsConfig;
|
|
807 |
TInt iNotifyNetworkInvScanEvent;
|
|
808 |
TInt iNotifyNetworkInvScanChange;
|
|
809 |
TInt iNotifyAirTimeChangeChange;
|
|
810 |
TInt iTerminateAllCalls;
|
|
811 |
TInt iTerminateActiveCalls;
|
|
812 |
TInt iNotifySendNetworkServiceRequest;
|
|
813 |
TInt iClearBlacklist;
|
|
814 |
TInt iNotifyDTMFEvent;
|
|
815 |
TInt iNotifyCipheringIndicatorStatus;
|
|
816 |
TInt iNotifyIdentityServiceStatus;
|
|
817 |
TInt iNotifyIdentitySuppressionRejected;
|
|
818 |
TInt iNotifyMulticallIndicatorChange;
|
|
819 |
TInt iNotifyImsAuthorizationInfoChange;
|
|
820 |
TInt iNotifySmartCardApplicationInfoChange;
|
|
821 |
TInt iNotifyAuthenticationDataChange;
|
|
822 |
TInt iNotifyWlanDataChange;
|
|
823 |
|
|
824 |
TInt iGbaBootstrapAuthDataFail;
|
|
825 |
TInt iGbaNafAuthDataFail;
|
|
826 |
TInt iMbmsMskUpdateAuthDataFail;
|
|
827 |
TInt iMbmsMtkGenerateAuthDataFail;
|
|
828 |
TInt iMbmsMukDeleteAuthDataFail;
|
|
829 |
TInt iMbmsMskDeleteAuthDataFail;
|
|
830 |
|
|
831 |
TInt iPhoneTestCount;
|
|
832 |
CArrayPtrFlat<CListReadAllAttempt>* iGetDetectedNetworks;
|
|
833 |
CArrayPtrFlat<CListReadAllAttempt>* iGetCFStatus;
|
|
834 |
CArrayPtrFlat<CListReadAllAttempt>* iGetCB;
|
|
835 |
CArrayPtrFlat<CListReadAllAttempt>* iGetCWStatus;
|
|
836 |
CArrayPtrFlat<CListReadAllAttempt>* iGetCcbsRequests;
|
|
837 |
CArrayPtrFlat<CListReadAllAttempt>* iGetPreferredNetworks;
|
|
838 |
CArrayPtrFlat<CListReadAllAttempt>* iGetAuthorizationData;
|
|
839 |
CArrayPtrFlat<CListReadAllAttempt>* iGetWlanSIDsData;
|
|
840 |
|
|
841 |
TSglQue<CActiveListNode> iActiveRequestObjects;
|
|
842 |
CArrayPtrFlat<CListReadAllAttempt>* iAuthReadAll;
|
|
843 |
|
|
844 |
public:
|
|
845 |
RMobilePhone::CImsAuthorizationInfoV5* iAuthInfo;
|
|
846 |
};
|
|
847 |
|
|
848 |
|
|
849 |
//
|
|
850 |
// CDelayedCompleter
|
|
851 |
//
|
|
852 |
|
|
853 |
class CDelayedCompleter : public CTimer
|
|
854 |
{
|
|
855 |
public:
|
|
856 |
static CDelayedCompleter *NewL(const TTsyReqHandle aTsyReqHandle, CPhoneDMmTsy *aPhoneObject,
|
|
857 |
CTelObject *aTelObject);
|
|
858 |
void RunL();
|
|
859 |
|
|
860 |
protected:
|
|
861 |
CDelayedCompleter(const TTsyReqHandle aTsyReqHandle, CPhoneDMmTsy *aPhoneObject,
|
|
862 |
CTelObject *aTelObject);
|
|
863 |
void ConstructL();
|
|
864 |
|
|
865 |
protected:
|
|
866 |
const TTsyReqHandle iTsyReqHandle;
|
|
867 |
CPhoneDMmTsy *iPhoneObject;
|
|
868 |
CTelObject *iTelObject;
|
|
869 |
};
|
|
870 |
|
|
871 |
|
|
872 |
/**************************************************************************/
|
|
873 |
//
|
|
874 |
// CSmsMessagingDMmTsy
|
|
875 |
//
|
|
876 |
/**************************************************************************/
|
|
877 |
|
|
878 |
class CSmsMessagingDMmTsy : public CSubSessionExtDummyBase
|
|
879 |
{
|
|
880 |
public:
|
|
881 |
static CSmsMessagingDMmTsy* NewL(CPhoneDMmTsy *aPhone, CPhoneFactoryDummyBase* aFac,const TDesC& aName);
|
|
882 |
CSmsMessagingDMmTsy(CPhoneDMmTsy *aPhone, CPhoneFactoryDummyBase* aFac,const TDesC& aName);
|
|
883 |
void ConstructL();
|
|
884 |
~CSmsMessagingDMmTsy();
|
|
885 |
virtual CTelObject* OpenNewObjectByNameL(const TDesC& aName);
|
|
886 |
virtual CTelObject* OpenNewObjectL(TDes& aNewName);
|
|
887 |
|
|
888 |
virtual TInt ExtFunc(const TTsyReqHandle aTsyReqHandle,const TInt aIpc,const TDataPackage& aPackage);
|
|
889 |
virtual CTelObject::TReqMode ReqModeL(const TInt aIPC);
|
|
890 |
virtual TInt CancelService(const TInt aIpc, const TTsyReqHandle aTsyReqHandle);
|
|
891 |
virtual void Init();
|
|
892 |
virtual TInt RegisterNotification(const TInt aIpc);
|
|
893 |
virtual TInt DeregisterNotification(const TInt aIpc);
|
|
894 |
virtual TInt NumberOfSlotsL(const TInt aIpc);
|
|
895 |
private:
|
|
896 |
TInt GetCaps(const TTsyReqHandle aTsyReqHandle, TDes8* aCaps);
|
|
897 |
|
|
898 |
TInt ReceiveMessage(const TTsyReqHandle aTsyReqHandle, TDes8* aMsgData, TDes8* aMsgAttributes);
|
|
899 |
TInt ReceiveMessageCancel(const TTsyReqHandle aTsyReqHandle);
|
|
900 |
|
|
901 |
TInt AckSmsStored(const TTsyReqHandle aTsyReqHandle, TDesC8* aMsgData, TBool *aFull);
|
|
902 |
TInt AckSmsStoredCancel(const TTsyReqHandle aTsyReqHandle);
|
|
903 |
|
|
904 |
TInt NackSmsStored(const TTsyReqHandle aTsyReqHandle, TDesC8* aMsgData, TInt* aRpCause);
|
|
905 |
TInt NackSmsStoredCancel(const TTsyReqHandle aTsyReqHandle);
|
|
906 |
|
|
907 |
TInt ResumeSmsReception(const TTsyReqHandle aTsyReqHandle);
|
|
908 |
|
|
909 |
TInt SendMessage(const TTsyReqHandle aTsyReqHandle, TDesC8* aMsgData, TDes8* aMsgAttributes);
|
|
910 |
TInt SendMessageCancel(const TTsyReqHandle aTsyReqHandle);
|
|
911 |
|
|
912 |
TInt SendMessageNoFdnCheck(const TTsyReqHandle aTsyReqHandle, TDesC8* aMsgData, TDes8* aMsgAttributes);
|
|
913 |
TInt SendMessageNoFdnCheckCancel(const TTsyReqHandle aTsyReqHandle);
|
|
914 |
|
|
915 |
TInt EnumerateMessageStores(const TTsyReqHandle aTsyReqHandle, TInt* aCount);
|
|
916 |
TInt GetMessageStoreInfo(const TTsyReqHandle aTsyReqHandle, TInt *aIndex, TDes8* aInfo);
|
|
917 |
TInt GetMessageStoreInfoCancel(const TTsyReqHandle aTsyReqHandle);
|
|
918 |
|
|
919 |
TInt GetReceiveMode(const TTsyReqHandle aTsyReqHandle, RMobileSmsMessaging::TMobileSmsReceiveMode* aReceiveMode);
|
|
920 |
TInt SetReceiveMode(const TTsyReqHandle aTsyReqHandle, RMobileSmsMessaging::TMobileSmsReceiveMode* aReceiveMode);
|
|
921 |
TInt SetReceiveModeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
922 |
TInt NotifyReceiveModeChange(const TTsyReqHandle aTsyReqHandle, RMobileSmsMessaging::TMobileSmsReceiveMode* aReceiveMode);
|
|
923 |
TInt NotifyReceiveModeChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
924 |
|
|
925 |
TInt GetMoSmsBearer(const TTsyReqHandle aTsyReqHandle, RMobileSmsMessaging::TMobileSmsBearer* aBearer);
|
|
926 |
TInt SetMoSmsBearer(const TTsyReqHandle aTsyReqHandle, RMobileSmsMessaging::TMobileSmsBearer* aBearer);
|
|
927 |
TInt SetMoSmsBearerCancel(const TTsyReqHandle aTsyReqHandle);
|
|
928 |
TInt NotifyMoSmsBearerChange(const TTsyReqHandle aTsyReqHandle, RMobileSmsMessaging::TMobileSmsBearer* aBearer);
|
|
929 |
TInt NotifyMoSmsBearerChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
930 |
|
|
931 |
// specific SMSP store functionality
|
|
932 |
TInt ReadSmspListPhase1(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aClient,TInt* aBufSize);
|
|
933 |
TInt ProcessReadSmspListPhase1L(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aId, TInt* aBufSize);
|
|
934 |
TInt ReadSmspListPhase2(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* ,TDes8* aBuffer);
|
|
935 |
TInt ReadSmspListCancel(const TTsyReqHandle aTsyReqHandle);
|
|
936 |
TInt StoreSmspList(const TTsyReqHandle aTsyReqHandle, TDes8* aBuffer);
|
|
937 |
TInt ProcessStoreSmspListL(const TTsyReqHandle aTsyReqHandle, TDes8* aBuffer);
|
|
938 |
TInt StoreSmspListCancel(const TTsyReqHandle aTsyReqHandle);
|
|
939 |
TInt NotifySmspListChange(const TTsyReqHandle aTsyReqHandle);
|
|
940 |
TInt NotifySmspListChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
941 |
|
|
942 |
static TInt ValidateSmspEntry(const RMobileSmsMessaging::TMobileSmspEntryV1& aEntry);
|
|
943 |
static void InitSmspEntry(RMobileSmsMessaging::TMobileSmspEntryV1& aEntry);
|
|
944 |
|
|
945 |
private:
|
|
946 |
TInt iReceiveMessage;
|
|
947 |
TInt iNotifySmspListChange;
|
|
948 |
TInt iNotifyReceiveModeChange;
|
|
949 |
TInt iNotifyMoSmsBearerChange;
|
|
950 |
|
|
951 |
TName iMessagingName;
|
|
952 |
CPhoneDMmTsy *iPhone;
|
|
953 |
CArrayPtrFlat<CListReadAllAttempt>* iSmspReadAll;
|
|
954 |
};
|
|
955 |
|
|
956 |
/**************************************************************************/
|
|
957 |
//
|
|
958 |
// CBroadcastMessagingDMmTsy
|
|
959 |
//
|
|
960 |
/**************************************************************************/
|
|
961 |
|
|
962 |
class CBroadcastMessagingDMmTsy : public CSubSessionExtDummyBase
|
|
963 |
{
|
|
964 |
public:
|
|
965 |
static CBroadcastMessagingDMmTsy* NewL(CPhoneDMmTsy *aPhone, CPhoneFactoryDummyBase* aFac,const TDesC& aName);
|
|
966 |
CBroadcastMessagingDMmTsy(CPhoneDMmTsy *aPhone, CPhoneFactoryDummyBase* aFac,const TDesC& aName);
|
|
967 |
void ConstructL();
|
|
968 |
~CBroadcastMessagingDMmTsy();
|
|
969 |
virtual CTelObject* OpenNewObjectByNameL(const TDesC& aName);
|
|
970 |
virtual CTelObject* OpenNewObjectL(TDes& aNewName);
|
|
971 |
|
|
972 |
virtual TInt ExtFunc(const TTsyReqHandle aTsyReqHandle,const TInt aIpc,const TDataPackage& aPackage);
|
|
973 |
virtual CTelObject::TReqMode ReqModeL(const TInt aIPC);
|
|
974 |
virtual TInt CancelService(const TInt aIpc, const TTsyReqHandle aTsyReqHandle);
|
|
975 |
virtual void Init();
|
|
976 |
virtual TInt RegisterNotification(const TInt aIpc);
|
|
977 |
virtual TInt DeregisterNotification(const TInt aIpc);
|
|
978 |
virtual TInt NumberOfSlotsL(const TInt aIpc);
|
|
979 |
private:
|
|
980 |
TInt GetCaps(const TTsyReqHandle aTsyReqHandle, TDes8* aCaps);
|
|
981 |
TInt ReceiveMessage(const TTsyReqHandle aTsyReqHandle, TDes8* aMsg, TDes8* aMsgAtts);
|
|
982 |
TInt ReceiveMessageCancel(const TTsyReqHandle aTsyReqHandle);
|
|
983 |
TInt GetFilterSetting(const TTsyReqHandle aTsyReqHandle, RMobileBroadcastMessaging::TMobilePhoneBroadcastFilter* aSetting);
|
|
984 |
TInt SetFilterSetting(const TTsyReqHandle aTsyReqHandle, RMobileBroadcastMessaging::TMobilePhoneBroadcastFilter* aSetting);
|
|
985 |
TInt SetFilterSettingCancel(const TTsyReqHandle aTsyReqHandle);
|
|
986 |
TInt NotifyFilterSettingChange(const TTsyReqHandle aTsyReqHandle, RMobileBroadcastMessaging::TMobilePhoneBroadcastFilter* aSetting);
|
|
987 |
TInt NotifyFilterSettingChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
988 |
TInt GetLanguageFilter(const TTsyReqHandle aTsyReqHandle, TDes16* aLangFilter);
|
|
989 |
TInt GetLanguageFilterCancel(const TTsyReqHandle aTsyReqHandle);
|
|
990 |
TInt SetLanguageFilter(const TTsyReqHandle aTsyReqHandle, TDesC16* aLangFilter);
|
|
991 |
TInt SetLanguageFilterCancel(const TTsyReqHandle aTsyReqHandle);
|
|
992 |
TInt NotifyLanguageFilterChange(const TTsyReqHandle aTsyReqHandle, TDes16* aLangFilter);
|
|
993 |
TInt NotifyLanguageFilterChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
994 |
|
|
995 |
TInt GetBroadcastIdListPhase1(const TTsyReqHandle aTsyReqHandle, CRetrieveMobilePhoneBroadcastIdList::TGetBroadcastIdRequest* aReqData, TInt* aBufSize);
|
|
996 |
TInt ProcessGetBroadcastIdListPhase1L(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aClient, TInt* aBufSize);
|
|
997 |
TInt GetBroadcastIdListPhase2(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aClient, TDes8* aBuf);
|
|
998 |
TInt GetBroadcastIdListCancel(const TTsyReqHandle aTsyReqHandle);
|
|
999 |
|
|
1000 |
void StoreBroadcastIdListL(const TTsyReqHandle aTsyReqHandle, TDes8* aList);
|
|
1001 |
TInt StoreBroadcastIdListCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1002 |
TInt NotifyBroadcastIdListChange(const TTsyReqHandle aTsyReqHandle);
|
|
1003 |
TInt NotifyBroadcastIdListChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1004 |
|
|
1005 |
private:
|
|
1006 |
TInt iNotifyFilterSettingChange;
|
|
1007 |
TInt iNotifyLanguageFilterChange;
|
|
1008 |
TInt iReceiveMessage;
|
|
1009 |
TInt iNotifyBroadcastIdListChange;
|
|
1010 |
|
|
1011 |
TName iMessagingName;
|
|
1012 |
CPhoneDMmTsy *iPhone;
|
|
1013 |
CArrayPtrFlat<CListReadAllAttempt>* iCbmiListRequests;
|
|
1014 |
};
|
|
1015 |
|
|
1016 |
/**************************************************************************/
|
|
1017 |
//
|
|
1018 |
// CUssdMessagingDMmTsy
|
|
1019 |
//
|
|
1020 |
/**************************************************************************/
|
|
1021 |
|
|
1022 |
class CUssdMessagingDMmTsy : public CSubSessionExtDummyBase
|
|
1023 |
{
|
|
1024 |
public:
|
|
1025 |
static CUssdMessagingDMmTsy* NewL(CPhoneDMmTsy *aPhone, CPhoneFactoryDummyBase* aFac,const TDesC& aName);
|
|
1026 |
CUssdMessagingDMmTsy(CPhoneDMmTsy *aPhone, CPhoneFactoryDummyBase* aFac,const TDesC& aName);
|
|
1027 |
void ConstructL();
|
|
1028 |
~CUssdMessagingDMmTsy();
|
|
1029 |
virtual CTelObject* OpenNewObjectByNameL(const TDesC& aName);
|
|
1030 |
virtual CTelObject* OpenNewObjectL(TDes& aNewName);
|
|
1031 |
|
|
1032 |
virtual TInt ExtFunc(const TTsyReqHandle aTsyReqHandle,const TInt aIpc,const TDataPackage& aPackage);
|
|
1033 |
virtual CTelObject::TReqMode ReqModeL(const TInt aIPC);
|
|
1034 |
virtual TInt CancelService(const TInt aIpc, const TTsyReqHandle aTsyReqHandle);
|
|
1035 |
virtual void Init();
|
|
1036 |
virtual TInt RegisterNotification(const TInt aIpc);
|
|
1037 |
virtual TInt DeregisterNotification(const TInt aIpc);
|
|
1038 |
virtual TInt NumberOfSlotsL(const TInt aIpc);
|
|
1039 |
private:
|
|
1040 |
TInt GetCaps(const TTsyReqHandle aTsyReqHandle, TDes8* aCaps);
|
|
1041 |
TInt ReceiveMessage(const TTsyReqHandle aTsyReqHandle, TDes8* aMsgData, TDes8* aMsgAttributes);
|
|
1042 |
TInt ReceiveMessageCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1043 |
TInt SendMessage(const TTsyReqHandle aTsyReqHandle, TDesC8* aMsgData, TDesC8* aMsgAttributes);
|
|
1044 |
TInt SendMessageCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1045 |
TInt SendMessageNoFdnCheck(const TTsyReqHandle aTsyReqHandle, TDesC8* aMsgData, TDesC8* aMsgAttributes);
|
|
1046 |
TInt SendMessageNoFdnCheckCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1047 |
TInt SendRelease(const TTsyReqHandle aTsyReqHandle, TDes8* aReturnResult);
|
|
1048 |
TInt SendReleaseCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1049 |
TInt NotifyNetworkRelease(const TTsyReqHandle aTsyReqHandle, TDes8* aReturnResult);
|
|
1050 |
TInt NotifyNetworkReleaseCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1051 |
TInt NotifyNetworkRelease(const TTsyReqHandle aTsyReqHandle, TDes8* aReturnResult, TDes8* aStatus);
|
|
1052 |
private:
|
|
1053 |
TInt iReceiveMessage;
|
|
1054 |
TName iMessagingName;
|
|
1055 |
CPhoneDMmTsy *iPhone;
|
|
1056 |
TInt iSendRelease;
|
|
1057 |
TInt iNetworkRelease;
|
|
1058 |
};
|
|
1059 |
|
|
1060 |
/**************************************************************************/
|
|
1061 |
//
|
|
1062 |
// CSmsStoreDMmTsy
|
|
1063 |
//
|
|
1064 |
/**************************************************************************/
|
|
1065 |
|
|
1066 |
class CSmsStoreDMmTsy : public CSubSessionExtDummyBase
|
|
1067 |
{
|
|
1068 |
public:
|
|
1069 |
static CSmsStoreDMmTsy* NewL(CPhoneDMmTsy *aPhone, CPhoneFactoryDummyBase* aFac,const TDesC& aName);
|
|
1070 |
CSmsStoreDMmTsy(CPhoneDMmTsy *aPhone, CPhoneFactoryDummyBase* aFac,const TDesC& aName);
|
|
1071 |
void ConstructL();
|
|
1072 |
~CSmsStoreDMmTsy();
|
|
1073 |
virtual CTelObject* OpenNewObjectByNameL(const TDesC& aName);
|
|
1074 |
virtual CTelObject* OpenNewObjectL(TDes& aNewName);
|
|
1075 |
|
|
1076 |
virtual TInt ExtFunc(const TTsyReqHandle aTsyReqHandle,const TInt aIpc,const TDataPackage& aPackage);
|
|
1077 |
virtual CTelObject::TReqMode ReqModeL(const TInt aIPC);
|
|
1078 |
virtual TInt CancelService(const TInt aIpc, const TTsyReqHandle aTsyReqHandle);
|
|
1079 |
virtual void Init();
|
|
1080 |
virtual TInt RegisterNotification(const TInt aIpc);
|
|
1081 |
virtual TInt DeregisterNotification(const TInt aIpc);
|
|
1082 |
virtual TInt NumberOfSlotsL(const TInt aIpc);
|
|
1083 |
private:
|
|
1084 |
// general phone storage functionality
|
|
1085 |
TInt GetInfo(const TTsyReqHandle aTsyReqHandle, RMobilePhoneStore::TMobilePhoneStoreInfoV1* aInfo);
|
|
1086 |
TInt GetInfoCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1087 |
|
|
1088 |
TInt Read(const TTsyReqHandle aTsyReqHandle, TDes8* aEntry);
|
|
1089 |
TInt ReadCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1090 |
TInt Write(const TTsyReqHandle aTsyReqHandle, TDesC8* aEntry);
|
|
1091 |
TInt WriteCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1092 |
TInt Delete(const TTsyReqHandle aTsyReqHandle, TInt* aIndex);
|
|
1093 |
TInt DeleteCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1094 |
TInt DeleteAll(const TTsyReqHandle aTsyReqHandle);
|
|
1095 |
TInt DeleteAllCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1096 |
TInt NotifyStoreEvent(const TTsyReqHandle aTsyReqHandle, RMobilePhoneStore::TMobileStoreEvent *aEvent, TInt* aIndex);
|
|
1097 |
TInt NotifyStoreEventCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1098 |
|
|
1099 |
// specific SMS store functionality
|
|
1100 |
TInt ReadAllPhase1(const TTsyReqHandle aTsyReqHandle, CRetrieveMobilePhoneSmsList::TBatchRequestData* aRequest,TInt* aBufSize);
|
|
1101 |
TInt ProcessReadAllGsmPhase1L(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aId, TInt* aBufSize);
|
|
1102 |
TInt ProcessReadAllCdmaPhase1L(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aId, TInt* aBufSize);
|
|
1103 |
TInt ReadAllPhase2(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* ,TDes8* aBuffer);
|
|
1104 |
TInt ReadAllCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1105 |
|
|
1106 |
private:
|
|
1107 |
TInt iNotifyStoreEvent;
|
|
1108 |
|
|
1109 |
TName iSmsStoreName;
|
|
1110 |
CArrayPtrFlat<CListReadAllAttempt>* iSmsReadAll;
|
|
1111 |
CPhoneDMmTsy *iPhone;
|
|
1112 |
};
|
|
1113 |
|
|
1114 |
/**************************************************************************/
|
|
1115 |
//
|
|
1116 |
// CNamStoreDMmTsy
|
|
1117 |
//
|
|
1118 |
/**************************************************************************/
|
|
1119 |
|
|
1120 |
class CNamStoreDMmTsy : public CSubSessionExtDummyBase
|
|
1121 |
{
|
|
1122 |
public:
|
|
1123 |
static CNamStoreDMmTsy* NewL(CPhoneDMmTsy *aPhone, CPhoneFactoryDummyBase* aFac,const TDesC& aName);
|
|
1124 |
CNamStoreDMmTsy(CPhoneDMmTsy *aPhone, CPhoneFactoryDummyBase* aFac,const TDesC& aName);
|
|
1125 |
void ConstructL();
|
|
1126 |
~CNamStoreDMmTsy();
|
|
1127 |
virtual CTelObject* OpenNewObjectByNameL(const TDesC& aName);
|
|
1128 |
virtual CTelObject* OpenNewObjectL(TDes& aNewName);
|
|
1129 |
|
|
1130 |
virtual TInt ExtFunc(const TTsyReqHandle aTsyReqHandle,const TInt aIpc,const TDataPackage& aPackage);
|
|
1131 |
virtual CTelObject::TReqMode ReqModeL(const TInt aIPC);
|
|
1132 |
virtual TInt CancelService(const TInt aIpc, const TTsyReqHandle aTsyReqHandle);
|
|
1133 |
virtual void Init();
|
|
1134 |
virtual TInt RegisterNotification(const TInt aIpc);
|
|
1135 |
virtual TInt DeregisterNotification(const TInt aIpc);
|
|
1136 |
virtual TInt NumberOfSlotsL(const TInt aIpc);
|
|
1137 |
private:
|
|
1138 |
// general phone storage functionality
|
|
1139 |
|
|
1140 |
TInt GetInfo(const TTsyReqHandle aTsyReqHandle, RMobileNamStore::TMobileNamStoreInfoV1* aInfo);
|
|
1141 |
TInt GetInfoCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1142 |
|
|
1143 |
static TInt ValidateNamEntry(RMobileNamStore::TMobileNamEntryV1& aEntry);
|
|
1144 |
static void InitNamEntry(RMobileNamStore::TMobileNamEntryV1& aEntry);
|
|
1145 |
static TInt ValidateNamEntry(RMobileNamStore::TMobileNamEntryV4& aEntry);
|
|
1146 |
static void InitNamEntry(RMobileNamStore::TMobileNamEntryV4& aEntry);
|
|
1147 |
|
|
1148 |
TInt Read(const TTsyReqHandle aTsyReqHandle, TDes8* aEntry);
|
|
1149 |
TInt ReadCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1150 |
TInt Write(const TTsyReqHandle aTsyReqHandle, TDesC8* aEntry);
|
|
1151 |
TInt WriteCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1152 |
TInt Delete(const TTsyReqHandle aTsyReqHandle, TInt* aIndex);
|
|
1153 |
TInt DeleteCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1154 |
TInt DeleteAll(const TTsyReqHandle aTsyReqHandle);
|
|
1155 |
TInt DeleteAllCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1156 |
TInt NotifyStoreEvent(const TTsyReqHandle aTsyReqHandle, RMobilePhoneStore::TMobileStoreEvent *aEvent, TInt* aIndex);
|
|
1157 |
TInt NotifyStoreEventCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1158 |
|
|
1159 |
TInt ReadAllPhase1(const TTsyReqHandle aTsyReqHandle, CRetrieveMobilePhoneNamList::TNamRequestData* aRequestData,TInt* aBufSize);
|
|
1160 |
TInt ReadAllPhase1V4(const TTsyReqHandle aTsyReqHandle, CRetrieveMobilePhoneNamList::TNamRequestData* aRequestData,TInt* aBufSize);
|
|
1161 |
TInt ProcessReadAllPhase1L(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aId, TInt* aBufSize);
|
|
1162 |
TInt ProcessReadAllPhase1V4L(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aId, TInt* aBufSize);
|
|
1163 |
TInt ReadAllPhase2(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* ,TDes8* aBuffer);
|
|
1164 |
TInt ReadAllPhase2V4(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* ,TDes8* aBuffer);
|
|
1165 |
TInt ReadAllCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1166 |
|
|
1167 |
TInt SetActiveNam(const TTsyReqHandle aTsyReqHandle, TInt *aNamId);
|
|
1168 |
TInt SetActiveNamCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1169 |
|
|
1170 |
TInt StoreAll(const TTsyReqHandle aTsyReqHandle, TInt *aNamId, TDes8* aBuffer);
|
|
1171 |
TInt StoreAllV4(const TTsyReqHandle aTsyReqHandle, TInt *aNamId, TDes8* aBuffer);
|
|
1172 |
TInt ProcessStoreAllL(const TTsyReqHandle aTsyReqHandle, TDes8* aBuffer);
|
|
1173 |
TInt ProcessStoreAllV4L(const TTsyReqHandle aTsyReqHandle, TDes8* aBuffer);
|
|
1174 |
TInt StoreAllCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1175 |
|
|
1176 |
|
|
1177 |
private:
|
|
1178 |
TInt iNotifyStoreEvent;
|
|
1179 |
|
|
1180 |
TName iNamStoreName;
|
|
1181 |
CArrayPtrFlat<CListReadAllAttempt>* iNamReadAll;
|
|
1182 |
CPhoneDMmTsy *iPhone;
|
|
1183 |
};
|
|
1184 |
|
|
1185 |
/**************************************************************************/
|
|
1186 |
//
|
|
1187 |
// CONStoreDMmTsy
|
|
1188 |
//
|
|
1189 |
/**************************************************************************/
|
|
1190 |
|
|
1191 |
class CONStoreDMmTsy : public CSubSessionExtDummyBase
|
|
1192 |
{
|
|
1193 |
public:
|
|
1194 |
static CONStoreDMmTsy* NewL(CPhoneDMmTsy *aPhone, CPhoneFactoryDummyBase* aFac,const TDesC& aName);
|
|
1195 |
CONStoreDMmTsy(CPhoneDMmTsy *aPhone, CPhoneFactoryDummyBase* aFac,const TDesC& aName);
|
|
1196 |
void ConstructL();
|
|
1197 |
~CONStoreDMmTsy();
|
|
1198 |
virtual CTelObject* OpenNewObjectByNameL(const TDesC& aName);
|
|
1199 |
virtual CTelObject* OpenNewObjectL(TDes& aNewName);
|
|
1200 |
|
|
1201 |
virtual TInt ExtFunc(const TTsyReqHandle aTsyReqHandle,const TInt aIpc,const TDataPackage& aPackage);
|
|
1202 |
virtual CTelObject::TReqMode ReqModeL(const TInt aIPC);
|
|
1203 |
virtual TInt CancelService(const TInt aIpc, const TTsyReqHandle aTsyReqHandle);
|
|
1204 |
virtual void Init();
|
|
1205 |
virtual TInt RegisterNotification(const TInt aIpc);
|
|
1206 |
virtual TInt DeregisterNotification(const TInt aIpc);
|
|
1207 |
virtual TInt NumberOfSlotsL(const TInt aIpc);
|
|
1208 |
private:
|
|
1209 |
// general phone storage functionality
|
|
1210 |
|
|
1211 |
TInt GetInfo(const TTsyReqHandle aTsyReqHandle, RMobileONStore::TMobileONStoreInfoV1* aInfo);
|
|
1212 |
TInt GetInfoCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1213 |
|
|
1214 |
static TInt ValidateONEntry(RMobileONStore::TMobileONEntryV1& aEntry);
|
|
1215 |
static void InitONEntry(RMobileONStore::TMobileONEntryV1& aEntry);
|
|
1216 |
|
|
1217 |
TInt Read(const TTsyReqHandle aTsyReqHandle, TDes8* aEntry);
|
|
1218 |
TInt ReadCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1219 |
TInt Write(const TTsyReqHandle aTsyReqHandle, TDesC8* aEntry);
|
|
1220 |
TInt WriteCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1221 |
TInt Delete(const TTsyReqHandle aTsyReqHandle, TInt* aIndex);
|
|
1222 |
TInt DeleteCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1223 |
TInt DeleteAll(const TTsyReqHandle aTsyReqHandle);
|
|
1224 |
TInt DeleteAllCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1225 |
TInt NotifyStoreEvent(const TTsyReqHandle aTsyReqHandle, RMobilePhoneStore::TMobileStoreEvent *aEvent, TInt* aIndex);
|
|
1226 |
TInt NotifyStoreEventCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1227 |
|
|
1228 |
TInt ReadAllPhase1(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aId,TInt* aBufSize);
|
|
1229 |
TInt ProcessReadAllPhase1L(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aId, TInt* aBufSize);
|
|
1230 |
TInt ReadAllPhase2(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aId,TDes8* aBuffer);
|
|
1231 |
TInt ReadAllCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1232 |
|
|
1233 |
TInt StoreAll(const TTsyReqHandle aTsyReqHandle, TDes8* aBuffer);
|
|
1234 |
TInt ProcessStoreAllL(const TTsyReqHandle aTsyReqHandle, TDes8* aBuffer);
|
|
1235 |
TInt StoreAllCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1236 |
|
|
1237 |
|
|
1238 |
private:
|
|
1239 |
TInt iNotifyStoreEvent;
|
|
1240 |
|
|
1241 |
TName iONStoreName;
|
|
1242 |
CArrayPtrFlat<CListReadAllAttempt>* iONReadAll;
|
|
1243 |
CPhoneDMmTsy *iPhone;
|
|
1244 |
};
|
|
1245 |
|
|
1246 |
|
|
1247 |
/**************************************************************************/
|
|
1248 |
//
|
|
1249 |
// CENStoreDMmTsy
|
|
1250 |
//
|
|
1251 |
/**************************************************************************/
|
|
1252 |
|
|
1253 |
class CENStoreDMmTsy : public CSubSessionExtDummyBase
|
|
1254 |
{
|
|
1255 |
public:
|
|
1256 |
static CENStoreDMmTsy* NewL(CPhoneDMmTsy *aPhone, CPhoneFactoryDummyBase* aFac,const TDesC& aName);
|
|
1257 |
CENStoreDMmTsy(CPhoneDMmTsy *aPhone, CPhoneFactoryDummyBase* aFac,const TDesC& aName);
|
|
1258 |
void ConstructL();
|
|
1259 |
~CENStoreDMmTsy();
|
|
1260 |
virtual CTelObject* OpenNewObjectByNameL(const TDesC& aName);
|
|
1261 |
virtual CTelObject* OpenNewObjectL(TDes& aNewName);
|
|
1262 |
|
|
1263 |
virtual TInt ExtFunc(const TTsyReqHandle aTsyReqHandle,const TInt aIpc,const TDataPackage& aPackage);
|
|
1264 |
virtual CTelObject::TReqMode ReqModeL(const TInt aIPC);
|
|
1265 |
virtual TInt CancelService(const TInt aIpc, const TTsyReqHandle aTsyReqHandle);
|
|
1266 |
virtual void Init();
|
|
1267 |
virtual TInt RegisterNotification(const TInt aIpc);
|
|
1268 |
virtual TInt DeregisterNotification(const TInt aIpc);
|
|
1269 |
virtual TInt NumberOfSlotsL(const TInt aIpc);
|
|
1270 |
private:
|
|
1271 |
// general phone storage functionality
|
|
1272 |
|
|
1273 |
TInt GetInfo(const TTsyReqHandle aTsyReqHandle, RMobilePhoneStore::TMobilePhoneStoreInfoV1* aInfo);
|
|
1274 |
TInt GetInfoCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1275 |
|
|
1276 |
static TInt ValidateENEntry(RMobileENStore::TMobileENEntryV1& aEntry);
|
|
1277 |
static void InitENEntry(RMobileENStore::TMobileENEntryV1& aEntry);
|
|
1278 |
|
|
1279 |
TInt Read(const TTsyReqHandle aTsyReqHandle, TDes8* aEntry);
|
|
1280 |
TInt ReadCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1281 |
TInt Write(const TTsyReqHandle aTsyReqHandle, TDesC8* aEntry);
|
|
1282 |
TInt WriteCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1283 |
TInt Delete(const TTsyReqHandle aTsyReqHandle, TInt* aIndex);
|
|
1284 |
TInt DeleteCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1285 |
TInt DeleteAll(const TTsyReqHandle aTsyReqHandle);
|
|
1286 |
TInt DeleteAllCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1287 |
TInt NotifyStoreEvent(const TTsyReqHandle aTsyReqHandle, RMobilePhoneStore::TMobileStoreEvent *aEvent, TInt* aIndex);
|
|
1288 |
TInt NotifyStoreEventCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1289 |
|
|
1290 |
TInt ReadAllPhase1(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aId,TInt* aBufSize);
|
|
1291 |
TInt ProcessReadAllPhase1L(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aId, TInt* aBufSize);
|
|
1292 |
TInt ReadAllPhase2(const TTsyReqHandle aTsyReqHandle, RMobilePhone::TClientId* aId,TDes8* aBuffer);
|
|
1293 |
TInt ReadAllCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1294 |
|
|
1295 |
private:
|
|
1296 |
TInt iNotifyStoreEvent;
|
|
1297 |
|
|
1298 |
TName iENStoreName;
|
|
1299 |
CArrayPtrFlat<CListReadAllAttempt>* iENReadAll;
|
|
1300 |
CPhoneDMmTsy *iPhone;
|
|
1301 |
};
|
|
1302 |
|
|
1303 |
/**************************************************************************/
|
|
1304 |
//
|
|
1305 |
// CMobilePhoneBookStoreDMmTsy
|
|
1306 |
//
|
|
1307 |
/**************************************************************************/
|
|
1308 |
|
|
1309 |
class CMobilePhoneBookStoreDMmTsy : public CSubSessionExtDummyBase
|
|
1310 |
{
|
|
1311 |
public:
|
|
1312 |
static CMobilePhoneBookStoreDMmTsy* NewL(CPhoneDMmTsy *aPhone, CPhoneFactoryDummyBase* aFac,const TDesC& aName, const TDesC& aType =KEtelUSimPhoneBookType);
|
|
1313 |
CMobilePhoneBookStoreDMmTsy(CPhoneDMmTsy *aPhone, CPhoneFactoryDummyBase* aFac,const TDesC& aName, const TDesC& aType =KEtelUSimPhoneBookType);
|
|
1314 |
void ConstructL();
|
|
1315 |
~CMobilePhoneBookStoreDMmTsy();
|
|
1316 |
virtual CTelObject* OpenNewObjectByNameL(const TDesC& aName);
|
|
1317 |
virtual CTelObject* OpenNewObjectL(TDes& aNewName);
|
|
1318 |
|
|
1319 |
virtual TInt ExtFunc(const TTsyReqHandle aTsyReqHandle,const TInt aIpc,const TDataPackage& aPackage);
|
|
1320 |
virtual CTelObject::TReqMode ReqModeL(const TInt aIPC);
|
|
1321 |
virtual TInt CancelService(const TInt aIpc, const TTsyReqHandle aTsyReqHandle);
|
|
1322 |
virtual void Init();
|
|
1323 |
virtual TInt RegisterNotification(const TInt aIpc);
|
|
1324 |
virtual TInt DeregisterNotification(const TInt aIpc);
|
|
1325 |
virtual TInt NumberOfSlotsL(const TInt aIpc);
|
|
1326 |
private:
|
|
1327 |
// general phone storage functionality
|
|
1328 |
|
|
1329 |
TInt GetInfo(const TTsyReqHandle aTsyReqHandle, TDes8* aInfo);
|
|
1330 |
TInt GetInfoCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1331 |
|
|
1332 |
TInt Read(const TTsyReqHandle aTsyReqHandle, RMobilePhoneBookStore::TPBIndexAndNumEntries* aIndexAndEntries, TDes8* aPBData);
|
|
1333 |
TInt ReadCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1334 |
TInt Write(const TTsyReqHandle aTsyReqHandle, TDesC8* aPBData, TInt* aIndex);
|
|
1335 |
TInt WriteCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1336 |
TInt Delete(const TTsyReqHandle aTsyReqHandle, TInt* aIndex);
|
|
1337 |
TInt DeleteCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1338 |
|
|
1339 |
private:
|
|
1340 |
TName iPhoneBookStoreName;
|
|
1341 |
TName iPhoneBookData;
|
|
1342 |
TName iIccType;
|
|
1343 |
CPhoneDMmTsy *iPhone;
|
|
1344 |
};
|
|
1345 |
|
|
1346 |
/**************************************************************************/
|
|
1347 |
//
|
|
1348 |
// CMobileConferenceCallDMmTsy
|
|
1349 |
//
|
|
1350 |
/**************************************************************************/
|
|
1351 |
|
|
1352 |
class CMobileConferenceCallDMmTsy : public CSubSessionExtDummyBase
|
|
1353 |
{
|
|
1354 |
public:
|
|
1355 |
static CMobileConferenceCallDMmTsy* NewL(CPhoneDMmTsy *aPhone, CPhoneFactoryDummyBase* aFac,const TDesC& aName);
|
|
1356 |
CMobileConferenceCallDMmTsy(CPhoneDMmTsy *aPhone, CPhoneFactoryDummyBase* aFac,const TDesC& aName);
|
|
1357 |
void ConstructL();
|
|
1358 |
~CMobileConferenceCallDMmTsy();
|
|
1359 |
virtual CTelObject* OpenNewObjectByNameL(const TDesC& aName);
|
|
1360 |
virtual CTelObject* OpenNewObjectL(TDes& aNewName);
|
|
1361 |
|
|
1362 |
virtual TInt ExtFunc(const TTsyReqHandle aTsyReqHandle,const TInt aIpc,const TDataPackage& aPackage);
|
|
1363 |
virtual CTelObject::TReqMode ReqModeL(const TInt aIPC);
|
|
1364 |
virtual TInt CancelService(const TInt aIpc, const TTsyReqHandle aTsyReqHandle);
|
|
1365 |
virtual void Init();
|
|
1366 |
virtual TInt RegisterNotification(const TInt aIpc);
|
|
1367 |
virtual TInt DeregisterNotification(const TInt aIpc);
|
|
1368 |
virtual TInt NumberOfSlotsL(const TInt aIpc);
|
|
1369 |
private:
|
|
1370 |
// general phone storage functionality
|
|
1371 |
|
|
1372 |
TInt GetCaps(const TTsyReqHandle aTsyReqHandle, TUint32* aCaps);
|
|
1373 |
TInt NotifyCapsChange(const TTsyReqHandle aTsyReqHandle, TUint32* aCaps);
|
|
1374 |
TInt NotifyCapsChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1375 |
TInt CreateConference(const TTsyReqHandle aTsyReqHandle);
|
|
1376 |
TInt CreateConferenceCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1377 |
TInt AddCall(const TTsyReqHandle aTsyReqHandle, TDes* aCallName);
|
|
1378 |
TInt AddCallCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1379 |
TInt Swap(const TTsyReqHandle aTsyReqHandle);
|
|
1380 |
TInt SwapCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1381 |
TInt HangUp(const TTsyReqHandle aTsyReqHandle);
|
|
1382 |
TInt HangUpCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1383 |
TInt EnumerateCalls(const TTsyReqHandle aTsyReqHandle, TUint* aCount);
|
|
1384 |
TInt GetMobileCallInfo(const TTsyReqHandle aTsyReqHandle, TInt *aIndex, TDes8* aCallInfo);
|
|
1385 |
TInt GetConferenceStatus(const TTsyReqHandle aTsyReqHandle, RMobileConferenceCall::TMobileConferenceStatus* aStatus);
|
|
1386 |
TInt NotifyConferenceStatusChange(const TTsyReqHandle aTsyReqHandle, RMobileConferenceCall::TMobileConferenceStatus* aStatus);
|
|
1387 |
TInt NotifyConferenceStatusChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1388 |
TInt NotifyConferenceEvent(const TTsyReqHandle aTsyReqHandle, RMobileConferenceCall::TMobileConferenceEvent* aEvent, TDes* aCallName);
|
|
1389 |
TInt NotifyConferenceEventCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1390 |
|
|
1391 |
|
|
1392 |
private:
|
|
1393 |
CPhoneDMmTsy *iPhone;
|
|
1394 |
TName iConferenceName;
|
|
1395 |
TInt iNotifyCapsChange;
|
|
1396 |
TInt iNotifyConferenceStatusChange;
|
|
1397 |
TInt iNotifyConferenceEvent;
|
|
1398 |
};
|
|
1399 |
|
|
1400 |
/**************************************************************************/
|
|
1401 |
//
|
|
1402 |
// CPhoneFactoryDMmTsy
|
|
1403 |
//
|
|
1404 |
/**************************************************************************/
|
|
1405 |
|
|
1406 |
class CPhoneFactoryDMmTsy: public CPhoneFactoryDummyBase
|
|
1407 |
{
|
|
1408 |
public:
|
|
1409 |
static CPhoneFactoryDMmTsy* NewL();
|
|
1410 |
~CPhoneFactoryDMmTsy();
|
|
1411 |
virtual CPhoneBase* NewPhoneL(const TDesC& aName);
|
|
1412 |
virtual TBool IsSupported(const TInt aMixin);
|
|
1413 |
private:
|
|
1414 |
CPhoneFactoryDMmTsy();
|
|
1415 |
};
|
|
1416 |
|
|
1417 |
|
|
1418 |
/**************************************************************************/
|
|
1419 |
//
|
|
1420 |
// CSmartCardEapDMmTsy
|
|
1421 |
//
|
|
1422 |
/**************************************************************************/
|
|
1423 |
|
|
1424 |
class CSmartCardEapDMmTsy : public CSubSessionExtDummyBase
|
|
1425 |
{
|
|
1426 |
class CThreadTerminationNotifier;
|
|
1427 |
friend class CThreadTerminationNotifier;
|
|
1428 |
|
|
1429 |
public:
|
|
1430 |
static CSmartCardEapDMmTsy* NewL(CPhoneDMmTsy *aPhone, RMobilePhone::TAID& aAID, RMobileSmartCardEap::TEapType& aEapType, CPhoneFactoryDummyBase* aFac);
|
|
1431 |
CSmartCardEapDMmTsy(CPhoneDMmTsy *aPhone, RMobilePhone::TAID& aAID, RMobileSmartCardEap::TEapType& aEapType, CPhoneFactoryDummyBase* aFac);
|
|
1432 |
void ConstructL();
|
|
1433 |
~CSmartCardEapDMmTsy();
|
|
1434 |
|
|
1435 |
public:
|
|
1436 |
virtual void Init();
|
|
1437 |
virtual TInt ExtFunc(const TTsyReqHandle aTsyReqHandle,const TInt aIpc,const TDataPackage& aPackage);
|
|
1438 |
virtual CTelObject::TReqMode ReqModeL(const TInt aIPC);
|
|
1439 |
virtual CTelObject* OpenNewObjectByNameL(const TDesC& aName);
|
|
1440 |
virtual CTelObject* OpenNewObjectL(TDes& aNewName);
|
|
1441 |
virtual TInt CancelService(const TInt aIpc, const TTsyReqHandle aTsyReqHandle);
|
|
1442 |
virtual TInt RegisterNotification(const TInt aIpc);
|
|
1443 |
virtual TInt DeregisterNotification(const TInt aIpc);
|
|
1444 |
virtual TInt NumberOfSlotsL(const TInt aIpc);
|
|
1445 |
|
|
1446 |
private:
|
|
1447 |
static CSmartCardEapDMmTsy* This(TAny* aPtr);
|
|
1448 |
|
|
1449 |
TInt DMmInitialiseEapMethod(const TTsyReqHandle aTsyReqHandle, TThreadId* aThreadId);
|
|
1450 |
TInt DMmInitialiseEapMethodCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1451 |
TInt DMmGetUserIdentity(const TTsyReqHandle aTsyReqHandle, RMobileSmartCardEap::TEapUserIdType* aEapIdType, TDes8* aUserId);
|
|
1452 |
TInt DMmGetUserIdentityCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1453 |
TInt DMmGetAuthenticationStatus(const TTsyReqHandle aTsyReqHandle, RMobileSmartCardEap::TEapAuthStatus* aAuthStatus);
|
|
1454 |
TInt DMmGetAuthenticationStatusCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1455 |
TInt DMmGetEapKey(const TTsyReqHandle aTsyReqHandle, RMobileSmartCardEap::TEapKeyTag* aEapKeyTag, TDes8* aKey);
|
|
1456 |
TInt DMmGetEapKeyCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1457 |
TInt DMmSetAuthenticateDataForPhase1(const TTsyReqHandle aTsyReqHandle, TDes8* aEapAuthData, TInt* aPhase1Size);
|
|
1458 |
TInt DMmGetAuthenticateDataForPhase2(const TTsyReqHandle aTsyReqHandle, TDes8* aEapAuthData, TDes8* aPhase2Resp);
|
|
1459 |
TInt DMmSmartCardEapAuthenticationCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1460 |
TInt DMmReleaseEapMethod(const TTsyReqHandle aTsyReqHandle);
|
|
1461 |
TInt DMmGetEapMethodAccessStatus(const TTsyReqHandle aTsyReqHandle, RMobileSmartCardEap::TEapMethodAccessStatus* aEapState);
|
|
1462 |
TInt DMmNotifyEapMethodAccessStatusChange(const TTsyReqHandle aTsyReqHandle, RMobileSmartCardEap::TEapMethodAccessStatus* aEapState);
|
|
1463 |
TInt DMmNotifyEapMethodAccessStatusChangeCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1464 |
void DMmCompleteNotifyEapMethodAccessStatusChange();
|
|
1465 |
virtual RHandleBase* GlobalKernelObjectHandle();
|
|
1466 |
void ClientHasTerminated(TInt aExitReason);
|
|
1467 |
|
|
1468 |
private:
|
|
1469 |
class CActiveListNode : public CBase
|
|
1470 |
{
|
|
1471 |
public:
|
|
1472 |
CActiveListNode(CActive *aActive, const TTsyReqHandle aTsyReqHandle);
|
|
1473 |
virtual ~CActiveListNode();
|
|
1474 |
public:
|
|
1475 |
CActive *iActive;
|
|
1476 |
const TTsyReqHandle iTsyReqHandle;
|
|
1477 |
TSglQueLink iNext;
|
|
1478 |
};
|
|
1479 |
|
|
1480 |
class TNotifyData
|
|
1481 |
{
|
|
1482 |
public:
|
|
1483 |
TBool iNotifyPending;
|
|
1484 |
TTsyReqHandle iNotifyHandle;
|
|
1485 |
TAny* iNotifyData;
|
|
1486 |
};
|
|
1487 |
|
|
1488 |
class CThreadTerminationNotifier : public CActive
|
|
1489 |
{
|
|
1490 |
public:
|
|
1491 |
static CThreadTerminationNotifier* NewL(CSmartCardEapDMmTsy* aSubSess, const TThreadId& aId);
|
|
1492 |
void Start();
|
|
1493 |
~CThreadTerminationNotifier();
|
|
1494 |
|
|
1495 |
private:
|
|
1496 |
CThreadTerminationNotifier(CSmartCardEapDMmTsy* aPhone);
|
|
1497 |
void ConstructL(const TThreadId& aId);
|
|
1498 |
void DoCancel();
|
|
1499 |
void RunL();
|
|
1500 |
|
|
1501 |
private:
|
|
1502 |
CSmartCardEapDMmTsy* iSubSess;
|
|
1503 |
RThread iCliThread;
|
|
1504 |
};
|
|
1505 |
|
|
1506 |
private: // data
|
|
1507 |
TSglQue<CActiveListNode> iActiveRequestObjects;
|
|
1508 |
CPhoneDMmTsy *iPhone;
|
|
1509 |
TPtrC8 iRespPtrC;
|
|
1510 |
TBool iSSInitialised;
|
|
1511 |
RMobilePhone::TAID iAID;
|
|
1512 |
RMobileSmartCardEap::TEapType iEapType;
|
|
1513 |
RSemaphore iSemaphr;
|
|
1514 |
RMobileSmartCardEap::TEapMethodAccessStatus iAccessStatus;
|
|
1515 |
TNotifyData iEapAccessNotifyData;
|
|
1516 |
CThreadTerminationNotifier* iCliTerminationNotifier;
|
|
1517 |
};
|
|
1518 |
|
|
1519 |
|
|
1520 |
/**************************************************************************/
|
|
1521 |
//
|
|
1522 |
// CMobileLocationServicesDMmTsy
|
|
1523 |
//
|
|
1524 |
/**************************************************************************/
|
|
1525 |
|
|
1526 |
class CMobileLocationServicesDMmTsy : public CSubSessionExtDummyBase
|
|
1527 |
{
|
|
1528 |
public:
|
|
1529 |
static CMobileLocationServicesDMmTsy* NewL(CPhoneDMmTsy *aPhone, CPhoneFactoryDummyBase* aFac,const TDesC& aName);
|
|
1530 |
CMobileLocationServicesDMmTsy(CPhoneDMmTsy *aPhone, CPhoneFactoryDummyBase* aFac,const TDesC& aName);
|
|
1531 |
void ConstructL();
|
|
1532 |
~CMobileLocationServicesDMmTsy();
|
|
1533 |
virtual CTelObject* OpenNewObjectByNameL(const TDesC& aName);
|
|
1534 |
virtual CTelObject* OpenNewObjectL(TDes& aNewName);
|
|
1535 |
|
|
1536 |
virtual TInt ExtFunc(const TTsyReqHandle aTsyReqHandle,const TInt aIpc,const TDataPackage& aPackage);
|
|
1537 |
virtual CTelObject::TReqMode ReqModeL(const TInt aIPC);
|
|
1538 |
virtual TInt CancelService(const TInt aIpc, const TTsyReqHandle aTsyReqHandle);
|
|
1539 |
virtual void Init();
|
|
1540 |
virtual TInt RegisterNotification(const TInt aIpc);
|
|
1541 |
virtual TInt DeregisterNotification(const TInt aIpc);
|
|
1542 |
virtual TInt NumberOfSlotsL(const TInt aIpc);
|
|
1543 |
TInt iCount;
|
|
1544 |
private:
|
|
1545 |
TInt SendMtlrResponse(const TTsyReqHandle aTsyReqHandle,RMobileLocationServices::TMtlrResponse* aMtlrResponse);
|
|
1546 |
TInt SendMtlrResponse(const TTsyReqHandle aTsyReqHandle,RMobileLocationServices::TMtlrError* aMtlrError);
|
|
1547 |
TInt SendMtlrResponse(const TTsyReqHandle aTsyReqHandle,RMobileLocationServices::TMtlrReject* aMtlrReject);
|
|
1548 |
TInt NotifyMtlr(const TTsyReqHandle aTsyReqHandle,TDes8* aNotifyMtlr);
|
|
1549 |
TInt SendMolr(const TTsyReqHandle aTsyReqHandle,TDes8* aStartMolr,TDes8* aMolrReturnResult);
|
|
1550 |
TInt NotifyMtlrCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1551 |
TInt SendMolrCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1552 |
TInt SendMtlrResponseCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1553 |
TInt NotifyMeasurementControl(const TTsyReqHandle aTsyReqHandle,TDes8* aMeasurementControl);
|
|
1554 |
TInt SendMeasurementReport(const TTsyReqHandle aTsyReqHandle,TDes8* aMeasurementReport);
|
|
1555 |
TInt SendMeasurementReport(const TTsyReqHandle aTsyReqHandle,RMobileLocationServices::TMeasurementControlFailure* aMeasurementControlFailure);
|
|
1556 |
TInt NotifyMeasurementControlCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1557 |
TInt SendMeasurementReportCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1558 |
TInt SetLcsDomain(const TTsyReqHandle aTsyReqHandle,RMobileLocationServices::TDomain* aDomain);
|
|
1559 |
TInt NotifyResetUePositioningInformation(const TTsyReqHandle aTsyReqHandle, RMobileLocationServices::TUePosTechnology* aUePosTechnology);
|
|
1560 |
TInt NotifyResetUePositioningInformationCancel(const TTsyReqHandle aTsyReqHandle);
|
|
1561 |
private:
|
|
1562 |
CPhoneDMmTsy *iPhone;
|
|
1563 |
TName iLocationServices;
|
|
1564 |
};
|
|
1565 |
|
|
1566 |
#endif // __MMTSY_H
|