equal
deleted
inserted
replaced
15 * Implementation of class CFavouritesSrvDb |
15 * Implementation of class CFavouritesSrvDb |
16 * |
16 * |
17 * |
17 * |
18 */ |
18 */ |
19 |
19 |
|
20 |
20 // INCLUDE FILES |
21 // INCLUDE FILES |
21 |
22 |
22 #include <s32std.h> |
23 #include <s32std.h> |
23 #include <eikenv.h> |
24 #include <eikenv.h> |
24 #include <rfsApMapper.h> |
25 #include <rfsApMapper.h> |
26 #include "FavouritesSrvDb.h" |
27 #include "FavouritesSrvDb.h" |
27 #include "FavouritesSrvTable.h" |
28 #include "FavouritesSrvTable.h" |
28 #include "FavouritesItemImpl.h" |
29 #include "FavouritesItemImpl.h" |
29 #include "FavouritesItemImplList.h" |
30 #include "FavouritesItemImplList.h" |
30 #include "FavouritesPanic.h" |
31 #include "FavouritesPanic.h" |
31 #include <favouriteslimits.h> |
32 #include "FavouritesLimits.h" |
32 #include <favouritesitemdata.h> |
33 #include "FavouritesItemData.h" |
33 #include "FavouritesFilter.h" |
34 #include "FavouritesFilter.h" |
34 #include "UidMap.h" |
35 #include "UidMap.h" |
35 #include "FavouritesLogger.h" |
36 #include "FavouritesLogger.h" |
36 #include "FavouritesFolder.h" |
37 #include "FavouritesFolder.h" |
|
38 |
|
39 |
37 |
40 |
38 // CONSTANTS |
41 // CONSTANTS |
39 |
42 |
40 /// Uid list granularity. |
43 /// Uid list granularity. |
41 LOCAL_D const TInt KUidListGranularity = 4; |
44 LOCAL_D const TInt KUidListGranularity = 4; |
46 /// Length of filename: 8 char. |
49 /// Length of filename: 8 char. |
47 LOCAL_D const TInt KFnameLength = 8; |
50 LOCAL_D const TInt KFnameLength = 8; |
48 |
51 |
49 // Secure policy ID of the Faveng database files. |
52 // Secure policy ID of the Faveng database files. |
50 LOCAL_D const TUint KUidFavengDbPolicy = 0x101FD685; |
53 LOCAL_D const TUint KUidFavengDbPolicy = 0x101FD685; |
|
54 |
51 |
55 |
52 // ==================== LOCAL FUNCTIONS ==================== |
56 // ==================== LOCAL FUNCTIONS ==================== |
53 |
57 |
54 /** |
58 /** |
55 * Given aName in the format <prefix> or <prefix><integer in parenthesis>, |
59 * Given aName in the format <prefix> or <prefix><integer in parenthesis>, |