os/kernelhwsrv/kernel/eka/include/e32std.inl
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 1994-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of the License "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// e32\include\e32std.inl
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
// Global leaving operator new
sl@0
    19
inline TAny* operator new(TUint aSize, TLeave)
sl@0
    20
	{return User::AllocL(aSize);}
sl@0
    21
inline TAny* operator new(TUint aSize, TLeave, TUint aExtraSize)
sl@0
    22
	{return User::AllocL(aSize + aExtraSize);}
sl@0
    23
#if !defined(__VC32__) || defined (__MSVCDOTNET__)
sl@0
    24
inline TAny* operator new[](TUint aSize, TLeave)
sl@0
    25
	{return User::AllocL(aSize);}
sl@0
    26
#endif
sl@0
    27
sl@0
    28
sl@0
    29
sl@0
    30
sl@0
    31
// class Mem
sl@0
    32
inline TUint8* Mem::Copy(TAny* aTrg, const TAny* aSrc, TInt aLength)
sl@0
    33
/**
sl@0
    34
Copies data from a source location to a target location and returns a pointer 
sl@0
    35
to the end of the copied data.
sl@0
    36
	
sl@0
    37
The source and target areas can overlap.
sl@0
    38
	
sl@0
    39
The copy operation is optimised so that if both source and target locations 
sl@0
    40
are aligned on a word boundary, the operation performs the copy on a word 
sl@0
    41
by word basis.
sl@0
    42
	
sl@0
    43
@param aTrg    A pointer to the target location for the copy operation. 
sl@0
    44
@param aSrc    A pointer to the source location for the copy operation. 
sl@0
    45
@param aLength The number of bytes to be copied. This value must not
sl@0
    46
               be negative. 
sl@0
    47
sl@0
    48
@return A pointer to a location aLength bytes beyond aTrg (i.e. the location 
sl@0
    49
        aTrg+aLength).
sl@0
    50
sl@0
    51
@panic USER 90 In debug builds only, if aLength is negative. 
sl@0
    52
*/
sl@0
    53
	{ return (TUint8*)memmove(aTrg, aSrc, aLength) + aLength; }
sl@0
    54
sl@0
    55
sl@0
    56
sl@0
    57
sl@0
    58
inline TUint8* Mem::Move(TAny* aTrg, const TAny* aSrc, TInt aLength)
sl@0
    59
/**
sl@0
    60
Moves a block of data from a source location to a target location and returns 
sl@0
    61
a pointer to the end of the moved data.
sl@0
    62
	
sl@0
    63
The source and target areas can overlap.
sl@0
    64
	
sl@0
    65
Both source and target locations must be aligned on a word boundary. 
sl@0
    66
The specified length must also be a multiple of 4.
sl@0
    67
	
sl@0
    68
@param aTrg    A pointer to the target location for the move operation. This 
sl@0
    69
               pointer must be word aligned. 
sl@0
    70
@param aSrc    A pointer to the source location for the move operation. This
sl@0
    71
               pointer must be word aligned.
sl@0
    72
@param aLength The number of bytes to be copied. This value must be a multiple 
sl@0
    73
               of 4.
sl@0
    74
			   
sl@0
    75
@return A pointer to a location aLength bytes beyond aTrg (i.e. the location 
sl@0
    76
        aTrg+aLength).
sl@0
    77
sl@0
    78
@panic USER 93 In debug builds only, if aTrg is not word aligned.
sl@0
    79
@panic USER 92 In debug builds only, if aSrc is not word aligned.
sl@0
    80
@panic USER 91 In debug builds only, if aLength is not a multiple of 4.
sl@0
    81
*/
sl@0
    82
	{ return (TUint8*)wordmove(aTrg, aSrc, aLength) + aLength; }
sl@0
    83
sl@0
    84
sl@0
    85
sl@0
    86
sl@0
    87
inline void Mem::Fill(TAny* aTrg, TInt aLength, TChar aChar)
sl@0
    88
/**
sl@0
    89
Fills a specified block of data with a specified character, replacing
sl@0
    90
any existing content.
sl@0
    91
	
sl@0
    92
The function assumes that the fill character is a non-Unicode character.
sl@0
    93
	
sl@0
    94
@param aTrg    A pointer to the location where filling is to start. 
sl@0
    95
@param aLength The number of bytes to be filled. This value must not
sl@0
    96
               be negative. 
sl@0
    97
@param aChar   The fill character.
sl@0
    98
sl@0
    99
@panic USER 95 In debug builds only, if aLength is negative.  
sl@0
   100
*/
sl@0
   101
	{ memset(aTrg, (TInt)(aChar.operator TUint()), aLength); }
sl@0
   102
sl@0
   103
sl@0
   104
sl@0
   105
sl@0
   106
inline void Mem::FillZ(TAny* aTrg,TInt aLength)
sl@0
   107
/**
sl@0
   108
Fills a specified block of data with binary zeroes (i.e. 0x00), replacing any 
sl@0
   109
existing content.
sl@0
   110
	
sl@0
   111
@param aTrg    A pointer to the location where filling is to start. 
sl@0
   112
@param aLength The number of bytes to be filled. This value must not
sl@0
   113
               be negative. 
sl@0
   114
	
sl@0
   115
@panic USER 95 In debug builds only, if aLength is negative.  
sl@0
   116
*/
sl@0
   117
	{ memclr(aTrg, aLength); }
sl@0
   118
sl@0
   119
sl@0
   120
sl@0
   121
sl@0
   122
#if !(defined(__GCC32__) && defined(__MARM__))
sl@0
   123
inline TInt Mem::Compare(const TUint8* aLeft, TInt aLeftL, const TUint8* aRight, TInt aRightL)
sl@0
   124
/**
sl@0
   125
Compares a block of data at one specified location with a block of data at 
sl@0
   126
another specified location.
sl@0
   127
sl@0
   128
The comparison proceeds on a byte for byte basis, the result of the comparison 
sl@0
   129
is based on the difference of the first bytes to disagree.
sl@0
   130
sl@0
   131
The data at the two locations are equal if they have the same length and content. 
sl@0
   132
Where the lengths are different and the shorter section of data is the same 
sl@0
   133
as the first part of the longer section of data, the shorter is considered 
sl@0
   134
to be less than the longer.
sl@0
   135
sl@0
   136
@param aLeft   A pointer to the first (or left) block of 8 bit data
sl@0
   137
               to be compared.
sl@0
   138
@param aLeftL  The length of the first (or left) block of data to be compared,  
sl@0
   139
               i.e. the number of bytes.
sl@0
   140
@param aRight  A pointer to the second (or right) block of 8 bit data to be 
sl@0
   141
               compared.
sl@0
   142
@param aRightL The length of the second (or right) block of data to be compared 
sl@0
   143
               i.e. the number of bytes.
sl@0
   144
               
sl@0
   145
@return Positive, if the first (or left) block of data is greater than the 
sl@0
   146
        second (or right) block of data.
sl@0
   147
        Negative, if the first (or left) block of data is less than the
sl@0
   148
        second (or right) block of data.
sl@0
   149
        Zero, if both the first (or left) and second (or right) blocks of data
sl@0
   150
        have the same length and the same content.
sl@0
   151
*/
sl@0
   152
	{ return memcompare(aLeft, aLeftL, aRight, aRightL); }
sl@0
   153
#endif
sl@0
   154
sl@0
   155
sl@0
   156
sl@0
   157
sl@0
   158
// class RHeap
sl@0
   159
inline TInt RHeap::SetBrk(TInt aBrk)
sl@0
   160
	{ return ((RChunk*)&iChunkHandle)->Adjust(aBrk); }
sl@0
   161
sl@0
   162
sl@0
   163
sl@0
   164
sl@0
   165
// class TChar
sl@0
   166
#ifndef __KERNEL_MODE__
sl@0
   167
inline void TChar::SetChar(TUint aChar)
sl@0
   168
	{iChar=aChar;}
sl@0
   169
sl@0
   170
sl@0
   171
sl@0
   172
sl@0
   173
inline void TChar::Fold()
sl@0
   174
/**
sl@0
   175
Converts the character to a form which can be used in tolerant comparisons 
sl@0
   176
without control over the operations performed. 
sl@0
   177
sl@0
   178
Tolerant comparisons are those which ignore character differences like case 
sl@0
   179
and accents.
sl@0
   180
sl@0
   181
This function can be used when searching for a string in a text file or a 
sl@0
   182
file in a directory. Folding performs the following conversions: converts 
sl@0
   183
to lowercase, strips accents, converts all digits representing the values 
sl@0
   184
0..9 to the ordinary digit characters '0'..'9', converts all spaces (standard, 
sl@0
   185
non-break, fixed-width, ideographic, etc.) to the ordinary space character 
sl@0
   186
(0x0020), converts Japanese characters in the hiragana syllabary to katakana, 
sl@0
   187
and converts East Asian halfwidth and fullwidth variants to their ordinary 
sl@0
   188
forms. You can choose to perform any subset of these operations by using the 
sl@0
   189
other function overload.
sl@0
   190
sl@0
   191
@see User::Fold
sl@0
   192
*/
sl@0
   193
	{iChar=User::Fold(iChar);}
sl@0
   194
sl@0
   195
sl@0
   196
sl@0
   197
sl@0
   198
inline void TChar::LowerCase()
sl@0
   199
/**
sl@0
   200
Converts the character to its lowercase form.
sl@0
   201
sl@0
   202
Characters lacking a lowercase form are unchanged.
sl@0
   203
sl@0
   204
@see User::LowerCase
sl@0
   205
*/
sl@0
   206
	{iChar=User::LowerCase(iChar);}
sl@0
   207
sl@0
   208
sl@0
   209
sl@0
   210
sl@0
   211
inline void TChar::UpperCase()
sl@0
   212
/**
sl@0
   213
Converts the character to its uppercase form.
sl@0
   214
sl@0
   215
Characters lacking an uppercase form are unchanged.
sl@0
   216
sl@0
   217
@see User::UpperCase
sl@0
   218
*/
sl@0
   219
	{iChar=User::UpperCase(iChar);}
sl@0
   220
sl@0
   221
sl@0
   222
sl@0
   223
sl@0
   224
#ifdef _UNICODE
sl@0
   225
inline void TChar::Fold(TInt aFlags)
sl@0
   226
/**
sl@0
   227
Converts the character to a form which can be used in tolerant comparisons 
sl@0
   228
allowing selection of the specific fold operations to be performed.
sl@0
   229
sl@0
   230
@param aFlags Flags which define the operations to be performed. The values 
sl@0
   231
              are defined in the enum beginning with EFoldCase.
sl@0
   232
sl@0
   233
@see TChar::EFoldCase
sl@0
   234
@see User::Fold
sl@0
   235
*/
sl@0
   236
	{iChar=User::Fold(iChar,aFlags);}
sl@0
   237
sl@0
   238
sl@0
   239
sl@0
   240
sl@0
   241
inline void TChar::TitleCase()
sl@0
   242
/**
sl@0
   243
Converts the character to its titlecase form.
sl@0
   244
sl@0
   245
The titlecase form of a character is identical to its uppercase form unless 
sl@0
   246
a specific titlecase form exists. Characters lacking a titlecase form are 
sl@0
   247
unchanged.
sl@0
   248
*/
sl@0
   249
	{iChar=User::TitleCase(iChar);}
sl@0
   250
#endif
sl@0
   251
sl@0
   252
sl@0
   253
sl@0
   254
sl@0
   255
inline TBool TChar::Eos() const
sl@0
   256
/**
sl@0
   257
Tests whether the character is the C/C++ end-of-string character - 0.
sl@0
   258
sl@0
   259
@return True, if the character is 0; false, otherwise.
sl@0
   260
*/
sl@0
   261
	{return(iChar==0);}
sl@0
   262
#endif // _UNICODE
sl@0
   263
sl@0
   264
sl@0
   265
sl@0
   266
sl@0
   267
// Class TCallBack
sl@0
   268
inline TCallBack::TCallBack()
sl@0
   269
/**
sl@0
   270
Default constructor.
sl@0
   271
	
sl@0
   272
Sets the function pointer to Null.
sl@0
   273
*/
sl@0
   274
	{iFunction=NULL;}
sl@0
   275
sl@0
   276
sl@0
   277
sl@0
   278
sl@0
   279
inline TCallBack::TCallBack(TInt (*aFunction)(TAny *aPtr))
sl@0
   280
	: iFunction(aFunction),iPtr(NULL)
sl@0
   281
/**
sl@0
   282
Constructs the callback object with the specified callback function.
sl@0
   283
sl@0
   284
@param aFunction A pointer to the callback function. It takes an argument of
sl@0
   285
                 type TAny* and returns a TInt.
sl@0
   286
				 It must be either a static member of a class or a function
sl@0
   287
				 which is not a member of any class. 
sl@0
   288
*/
sl@0
   289
	{}
sl@0
   290
sl@0
   291
sl@0
   292
sl@0
   293
sl@0
   294
inline TCallBack::TCallBack(TInt (*aFunction)(TAny *aPtr),TAny *aPtr)
sl@0
   295
	: iFunction(aFunction),iPtr(aPtr)
sl@0
   296
/**
sl@0
   297
Constructs the callback object with the specified callback function and
sl@0
   298
a pointer to any object.
sl@0
   299
sl@0
   300
@param aFunction A pointer to the callback function. It takes an argument of
sl@0
   301
                 type TAny* and returns a TInt.
sl@0
   302
				 It must be either a static member of a class or a function
sl@0
   303
				 which is not a member of any class. 
sl@0
   304
@param aPtr      A pointer which is always passed to the callback function.
sl@0
   305
*/
sl@0
   306
	{}
sl@0
   307
sl@0
   308
sl@0
   309
sl@0
   310
sl@0
   311
/**
sl@0
   312
Calls the callback function.
sl@0
   313
	
sl@0
   314
@return The value returned by the callback function. The meaning of this value
sl@0
   315
        depends entirely on the context in which the callback function
sl@0
   316
        is called.
sl@0
   317
        For example, when used with the CIdle class, a false (zero) value
sl@0
   318
        indicates that the callback function should not be 	called again.
sl@0
   319
        As another example, when used with the CPeriodic class, the return
sl@0
   320
        value is ignored and is irrelevant in that context.
sl@0
   321
sl@0
   322
@see CIdle
sl@0
   323
@see CPeriodic        
sl@0
   324
*/
sl@0
   325
inline TInt TCallBack::CallBack() const
sl@0
   326
	{ return (iFunction ? (*iFunction)(iPtr) : 0); }
sl@0
   327
sl@0
   328
sl@0
   329
sl@0
   330
sl@0
   331
// Class TSglQue
sl@0
   332
template <class T>
sl@0
   333
inline TSglQue<T>::TSglQue()
sl@0
   334
/**
sl@0
   335
Constructs an empty list header and sets the offset value of the link object 
sl@0
   336
to zero.
sl@0
   337
sl@0
   338
In practice, never assume that the offset of the link object from the start 
sl@0
   339
of a list element is zero, even if the link object is declared as the first 
sl@0
   340
data member in the list element class.
sl@0
   341
sl@0
   342
If this default constructor is used, then call the SetOffset() function of 
sl@0
   343
the base class to ensure that the offset value is set correctly.
sl@0
   344
sl@0
   345
@see TSglQueBase::SetOffset
sl@0
   346
*/
sl@0
   347
	{}
sl@0
   348
sl@0
   349
sl@0
   350
sl@0
   351
sl@0
   352
template <class T>
sl@0
   353
inline TSglQue<T>::TSglQue(TInt aOffset)
sl@0
   354
	: TSglQueBase(aOffset)
sl@0
   355
/**
sl@0
   356
Constructs an empty list header and sets the offset of the link object to the 
sl@0
   357
specified value.
sl@0
   358
sl@0
   359
@param aOffset The offset of the link object from the start of a list element. 
sl@0
   360
                The macro _FOFF can be used to calculate this value.
sl@0
   361
				
sl@0
   362
@panic USER 75, if aOffset is not divisible by four.
sl@0
   363
sl@0
   364
@see _FOFF
sl@0
   365
*/
sl@0
   366
	{}
sl@0
   367
sl@0
   368
sl@0
   369
sl@0
   370
sl@0
   371
template <class T>
sl@0
   372
inline void TSglQue<T>::AddFirst(T &aRef)
sl@0
   373
/**
sl@0
   374
Inserts the specified list element at the front of the singly linked list.
sl@0
   375
sl@0
   376
If the list is not empty, the specified element becomes the first in the list. 
sl@0
   377
What was previously the first element becomes the second in the list.
sl@0
   378
sl@0
   379
@param aRef The list element to be inserted at the front of the singly linked 
sl@0
   380
            list.
sl@0
   381
*/
sl@0
   382
	{DoAddFirst(&aRef);}
sl@0
   383
sl@0
   384
sl@0
   385
sl@0
   386
sl@0
   387
template <class T>
sl@0
   388
inline void TSglQue<T>::AddLast(T &aRef)
sl@0
   389
/**
sl@0
   390
Inserts the specified list element at the back of the singly linked list.
sl@0
   391
sl@0
   392
If the list is not empty, the specified element becomes the last in the list. 
sl@0
   393
What was previously the last element becomes the next to last element in the 
sl@0
   394
list.
sl@0
   395
sl@0
   396
@param aRef The list element to be inserted at the back of the singly linked 
sl@0
   397
            list.
sl@0
   398
*/
sl@0
   399
	{DoAddLast(&aRef);}
sl@0
   400
sl@0
   401
sl@0
   402
sl@0
   403
sl@0
   404
template <class T>
sl@0
   405
inline TBool TSglQue<T>::IsFirst(const T *aPtr) const
sl@0
   406
/**
sl@0
   407
Tests whether the specified element is the first in the singly linked list.
sl@0
   408
sl@0
   409
@param aPtr A pointer to the element whose position in the list is to be
sl@0
   410
            checked.
sl@0
   411
sl@0
   412
@return True, if the element is the first in the list; false, otherwise.
sl@0
   413
*/
sl@0
   414
	{return(PtrAdd(aPtr,iOffset)==(T *)iHead);}
sl@0
   415
sl@0
   416
sl@0
   417
sl@0
   418
sl@0
   419
template <class T>
sl@0
   420
inline TBool TSglQue<T>::IsLast(const T *aPtr) const
sl@0
   421
/**
sl@0
   422
Tests whether the specified element is the last in the singly linked list.
sl@0
   423
sl@0
   424
@param aPtr A pointer to the element whose position in the list is 
sl@0
   425
            to be checked.
sl@0
   426
sl@0
   427
@return True, if the element is the last in the list; false, otherwise.
sl@0
   428
*/
sl@0
   429
	{return(PtrAdd(aPtr,iOffset)==(T *)iLast);}
sl@0
   430
sl@0
   431
sl@0
   432
sl@0
   433
sl@0
   434
template <class T>
sl@0
   435
inline T *TSglQue<T>::First() const
sl@0
   436
/**
sl@0
   437
Gets a pointer to the first list element in the singly linked list.
sl@0
   438
sl@0
   439
@return A pointer to the first list element in the singly linked list. If 
sl@0
   440
        the list is empty, this pointer is not necessarily NULL and must not
sl@0
   441
		be assumed to point to a valid object.
sl@0
   442
*/
sl@0
   443
	{return(PtrSub((T *)iHead,iOffset));}
sl@0
   444
sl@0
   445
sl@0
   446
sl@0
   447
sl@0
   448
template <class T>
sl@0
   449
inline T *TSglQue<T>::Last() const
sl@0
   450
/**
sl@0
   451
Gets a pointer to the last list element in the singly linked list.
sl@0
   452
sl@0
   453
@return A pointer to the last list element in the singly linked list. If the 
sl@0
   454
        list is empty, this pointer is not necessarily NULL and must not be
sl@0
   455
		assumed to point to a valid object.
sl@0
   456
*/
sl@0
   457
	{return(PtrSub((T *)iLast,iOffset));}
sl@0
   458
sl@0
   459
sl@0
   460
sl@0
   461
sl@0
   462
template <class T>
sl@0
   463
inline void TSglQue<T>::Remove(T &aRef)
sl@0
   464
/**
sl@0
   465
Removes the specified element from the singly linked list.
sl@0
   466
sl@0
   467
The singly linked list must not be empty.
sl@0
   468
sl@0
   469
@param aRef A list element to be removed from the singly linked list.
sl@0
   470
sl@0
   471
@panic USER 76, if the element to be removed is not in the list
sl@0
   472
*/
sl@0
   473
	{DoRemove(&aRef);}
sl@0
   474
sl@0
   475
sl@0
   476
sl@0
   477
sl@0
   478
// Class TDblQue
sl@0
   479
template <class T>
sl@0
   480
inline TDblQue<T>::TDblQue()
sl@0
   481
/**
sl@0
   482
Constructs an empty list header and sets the offset value of the link object 
sl@0
   483
to zero.
sl@0
   484
sl@0
   485
In practice, never assume that the offset of the link object from the start 
sl@0
   486
of a list element is zero, even if the link object is declared as the first 
sl@0
   487
data member in the list element class.
sl@0
   488
sl@0
   489
If this default constructor is used, then call the SetOffset() function of 
sl@0
   490
the base class to ensure that the offset value is set correctly.
sl@0
   491
sl@0
   492
@see TDblQueBase::SetOffset()
sl@0
   493
*/
sl@0
   494
	{}
sl@0
   495
sl@0
   496
sl@0
   497
sl@0
   498
sl@0
   499
template <class T>
sl@0
   500
inline TDblQue<T>::TDblQue(TInt aOffset)
sl@0
   501
	: TDblQueBase(aOffset)
sl@0
   502
/**
sl@0
   503
Constructs an empty list header and sets the offset of the link object to the 
sl@0
   504
specified value.
sl@0
   505
sl@0
   506
@param aOffset The offset of the link object from the start of a list element. 
sl@0
   507
                The macro _FOFF can be used to calculate this value.
sl@0
   508
				
sl@0
   509
@panic USER 78. if aOffset is not divisble by 4.
sl@0
   510
				  
sl@0
   511
@see _FOFF
sl@0
   512
*/
sl@0
   513
	{}
sl@0
   514
sl@0
   515
sl@0
   516
sl@0
   517
sl@0
   518
template <class T>
sl@0
   519
inline void TDblQue<T>::AddFirst(T &aRef)
sl@0
   520
/**
sl@0
   521
Inserts the specified list element at the front of the doubly linked list.
sl@0
   522
sl@0
   523
If the list is not empty, the specified element becomes the first in the list. 
sl@0
   524
What was previously the first element becomes the second in the list.
sl@0
   525
sl@0
   526
@param aRef The list element to be inserted at the front of the doubly linked 
sl@0
   527
            list.
sl@0
   528
*/
sl@0
   529
	{DoAddFirst(&aRef);}
sl@0
   530
sl@0
   531
sl@0
   532
sl@0
   533
sl@0
   534
template <class T>
sl@0
   535
inline void TDblQue<T>::AddLast(T &aRef)
sl@0
   536
/**
sl@0
   537
Inserts the specified list element at the back of the doubly linked list.
sl@0
   538
sl@0
   539
If the list is not empty, the specified element becomes the last in the list. 
sl@0
   540
What was previously the last element becomes the next to last element in the 
sl@0
   541
list.
sl@0
   542
sl@0
   543
@param aRef The list element to be inserted at the back of the doubly linked 
sl@0
   544
            list.
sl@0
   545
*/
sl@0
   546
	{DoAddLast(&aRef);}
sl@0
   547
sl@0
   548
sl@0
   549
sl@0
   550
sl@0
   551
template <class T>
sl@0
   552
inline TBool TDblQue<T>::IsHead(const T *aPtr) const
sl@0
   553
/**
sl@0
   554
Tests whether the end of a list has been reached.
sl@0
   555
sl@0
   556
A doubly linked list is circular; in following the chain of elements in a 
sl@0
   557
list (e.g. using the iterator operator++ or operator--), the chain eventually 
sl@0
   558
reaches the end of the list and aPtr corresponds to the header (although it 
sl@0
   559
will not point to a valid T object).
sl@0
   560
sl@0
   561
@param aPtr The pointer value to be checked. 
sl@0
   562
sl@0
   563
@return True, if the end of the list has been reached. False, if the end of 
sl@0
   564
        the list has not been reached; aPtr points to an element in the list.
sl@0
   565
*/
sl@0
   566
	{return(PtrAdd(aPtr,iOffset)==(T *)&iHead);}
sl@0
   567
sl@0
   568
sl@0
   569
sl@0
   570
sl@0
   571
template <class T>
sl@0
   572
inline TBool TDblQue<T>::IsFirst(const T *aPtr) const
sl@0
   573
/**
sl@0
   574
Tests whether the specified element is the first in the doubly linked list.
sl@0
   575
sl@0
   576
@param aPtr A pointer to the element whose position in the list is to be checked.
sl@0
   577
sl@0
   578
@return True, if the element is the first in the list; false, otherwise.
sl@0
   579
*/
sl@0
   580
	{return(PtrAdd(aPtr,iOffset)==(T *)iHead.iNext);}
sl@0
   581
sl@0
   582
sl@0
   583
sl@0
   584
sl@0
   585
template <class T>
sl@0
   586
inline TBool TDblQue<T>::IsLast(const T *aPtr) const
sl@0
   587
/**
sl@0
   588
Tests whether the specified element is the last in the doubly linked list.
sl@0
   589
sl@0
   590
@param aPtr A pointer to the element whose position in the list is to be checked.
sl@0
   591
sl@0
   592
@return True, if the element is the last in the list; false, otherwise.
sl@0
   593
*/
sl@0
   594
	{return(PtrAdd(aPtr,iOffset)==(T *)iHead.iPrev);}
sl@0
   595
sl@0
   596
sl@0
   597
sl@0
   598
sl@0
   599
template <class T>
sl@0
   600
inline T *TDblQue<T>::First() const
sl@0
   601
/**
sl@0
   602
Gets a pointer to the first list element in the doubly linked list.
sl@0
   603
sl@0
   604
@return A pointer to the first list element in the doubly linked list. If 
sl@0
   605
        the list is empty, this pointer is not necessarily NULL and must not
sl@0
   606
		be assumed to point to a valid object.
sl@0
   607
*/
sl@0
   608
	{
sl@0
   609
#if defined (_DEBUG)
sl@0
   610
	__DbgTestEmpty();
sl@0
   611
#endif
sl@0
   612
    return(PtrSub((T *)iHead.iNext,iOffset));
sl@0
   613
    }
sl@0
   614
sl@0
   615
sl@0
   616
sl@0
   617
sl@0
   618
template <class T>
sl@0
   619
inline T *TDblQue<T>::Last() const
sl@0
   620
/**
sl@0
   621
Gets a pointer to the last list element in the doubly linked list.
sl@0
   622
sl@0
   623
@return A pointer to the last list element in the doubly linked list. If the 
sl@0
   624
        list is empty, this pointer is not necessarily NULL and must not be assumed 
sl@0
   625
        to point to a valid object.
sl@0
   626
*/
sl@0
   627
	{
sl@0
   628
#if defined (_DEBUG)
sl@0
   629
	__DbgTestEmpty();
sl@0
   630
#endif
sl@0
   631
	return(PtrSub((T *)iHead.iPrev,iOffset));
sl@0
   632
	}
sl@0
   633
sl@0
   634
sl@0
   635
sl@0
   636
sl@0
   637
// Class TPriQue
sl@0
   638
template <class T>
sl@0
   639
inline TPriQue<T>::TPriQue()
sl@0
   640
/**
sl@0
   641
Default constructor.
sl@0
   642
sl@0
   643
Constructs an empty list header and sets the offset value of the link
sl@0
   644
object to zero.
sl@0
   645
sl@0
   646
In practice, never assume that the offset of the link object from the start
sl@0
   647
of a list element is zero, even if the link object is declared as the first
sl@0
   648
data member in the list element class.
sl@0
   649
sl@0
   650
If this default constructor is used, then call the SetOffset() function of
sl@0
   651
the base class to ensure that the offset value is set correctly.
sl@0
   652
sl@0
   653
@see TDblQueBase::SetOffset
sl@0
   654
*/
sl@0
   655
	{}
sl@0
   656
sl@0
   657
sl@0
   658
sl@0
   659
sl@0
   660
template <class T>
sl@0
   661
inline TPriQue<T>::TPriQue(TInt aOffset)
sl@0
   662
	: TDblQueBase(aOffset)
sl@0
   663
/**
sl@0
   664
Constructs an empty list header and sets the offset of the link object
sl@0
   665
to the specified value.
sl@0
   666
sl@0
   667
@param aOffset The offset of the link object from the start of a list element.
sl@0
   668
                The macro _FOFF can be used to calculate this value.
sl@0
   669
				
sl@0
   670
@panic USER 78 if aOffset is not divisible by four.		  
sl@0
   671
*/
sl@0
   672
	{}
sl@0
   673
sl@0
   674
sl@0
   675
sl@0
   676
sl@0
   677
template <class T>
sl@0
   678
inline void TPriQue<T>::Add(T &aRef)
sl@0
   679
/**
sl@0
   680
Inserts the specified list element in descending priority order.
sl@0
   681
sl@0
   682
If there is an existing list element with the same priority, then the new
sl@0
   683
element is added after the existing element.
sl@0
   684
sl@0
   685
@param aRef The list element to be inserted.
sl@0
   686
*/
sl@0
   687
	{DoAddPriority(&aRef);}
sl@0
   688
sl@0
   689
sl@0
   690
sl@0
   691
sl@0
   692
template <class T>
sl@0
   693
inline TBool TPriQue<T>::IsHead(const T *aPtr) const
sl@0
   694
/**
sl@0
   695
Tests whether the end of a list has been reached.
sl@0
   696
sl@0
   697
A doubly linked list is circular; in following the chain of elements in a list
sl@0
   698
(e.g. using the iterator operator++ or operator--), the chain eventually
sl@0
   699
reaches the end of the list and aPtr corresponds to the header (although it
sl@0
   700
will not point to a valid T object).
sl@0
   701
sl@0
   702
@param aPtr The pointer value to be checked.
sl@0
   703
sl@0
   704
@return True, if the end of the list has been reached. False, if the end of the
sl@0
   705
        list has not been reached; aPtr points to an element in the list.
sl@0
   706
*/
sl@0
   707
	{return(PtrAdd(aPtr,iOffset)==(T *)&iHead);}
sl@0
   708
sl@0
   709
sl@0
   710
sl@0
   711
sl@0
   712
template <class T>
sl@0
   713
inline TBool TPriQue<T>::IsFirst(const T *aPtr) const
sl@0
   714
/**
sl@0
   715
Tests whether the specified element is the first in the linked list.
sl@0
   716
sl@0
   717
@param aPtr A pointer to the element whose position in the list is to
sl@0
   718
            be checked.
sl@0
   719
sl@0
   720
@return True, if the element is the first in the list; false, otherwise.
sl@0
   721
*/
sl@0
   722
	{return(PtrAdd(aPtr,iOffset)==(T *)iHead.iNext);}
sl@0
   723
sl@0
   724
sl@0
   725
sl@0
   726
sl@0
   727
template <class T>
sl@0
   728
inline TBool TPriQue<T>::IsLast(const T *aPtr) const
sl@0
   729
/**
sl@0
   730
Tests whether the specified element is the last in the linked list.
sl@0
   731
sl@0
   732
@param aPtr A pointer to the element whose position in the list is to
sl@0
   733
            be checked.
sl@0
   734
sl@0
   735
@return True, if the element is the last in the list; false, otherwise.
sl@0
   736
*/
sl@0
   737
	{return(PtrAdd(aPtr,iOffset)==(T *)iHead.iPrev);}
sl@0
   738
sl@0
   739
sl@0
   740
sl@0
   741
sl@0
   742
template <class T>
sl@0
   743
inline T *TPriQue<T>::First() const
sl@0
   744
/**
sl@0
   745
Gets a pointer to the first list element in the linked list.
sl@0
   746
sl@0
   747
@return A pointer to the first list element in the linked list.
sl@0
   748
        If the list is empty, this pointer is not necessarily NULL and must
sl@0
   749
		not be assumed to point to a valid object.
sl@0
   750
*/
sl@0
   751
	{return(PtrSub((T *)iHead.iNext,iOffset));}
sl@0
   752
sl@0
   753
sl@0
   754
sl@0
   755
sl@0
   756
template <class T>
sl@0
   757
inline T *TPriQue<T>::Last() const
sl@0
   758
/**
sl@0
   759
Gets a pointer to the last list element in the linked list.
sl@0
   760
sl@0
   761
@return A pointer to the last list element in the linked list.
sl@0
   762
        If the list is empty, this pointer is not necessarily NULL and must
sl@0
   763
		not be assumed to point to a valid object.
sl@0
   764
*/
sl@0
   765
	{return(PtrSub((T *)iHead.iPrev,iOffset));}
sl@0
   766
sl@0
   767
sl@0
   768
sl@0
   769
sl@0
   770
// Class TDeltaQue
sl@0
   771
template <class T>
sl@0
   772
inline TDeltaQue<T>::TDeltaQue()
sl@0
   773
/**
sl@0
   774
Constructs an empty list header and sets the offset value of the link object 
sl@0
   775
to zero.
sl@0
   776
sl@0
   777
In practice, never assume that the offset of the link object from the start 
sl@0
   778
of a list element is zero, even if the link object is declared as the first 
sl@0
   779
data member in the list element class.
sl@0
   780
sl@0
   781
If this default constructor is used, then call the TDblQueBase::SetOffset() 
sl@0
   782
function in the base class to ensure that the offset value is set correctly.
sl@0
   783
sl@0
   784
TDeltaQueBase::iFirstDelta is set to NULL.
sl@0
   785
sl@0
   786
@see TDblQueBase::SetOffset
sl@0
   787
*/
sl@0
   788
	{}
sl@0
   789
sl@0
   790
sl@0
   791
sl@0
   792
sl@0
   793
template <class T>
sl@0
   794
inline TDeltaQue<T>::TDeltaQue(TInt aOffset)
sl@0
   795
	: TDeltaQueBase(aOffset)
sl@0
   796
/**
sl@0
   797
Constructs an empty list header and sets the offset of the link object to the 
sl@0
   798
specified value.
sl@0
   799
sl@0
   800
TDeltaQueBase::iFirstDelta is set to NULL.
sl@0
   801
sl@0
   802
@param aOffset The offset of the link object from the start of a list element. 
sl@0
   803
                The macro _FOFF can be used to calculate this value. 
sl@0
   804
sl@0
   805
@panic USER 78, if aOffset is not divisible by four.
sl@0
   806
				  
sl@0
   807
@see _FOFF
sl@0
   808
*/
sl@0
   809
	{}
sl@0
   810
sl@0
   811
sl@0
   812
sl@0
   813
sl@0
   814
template <class T>
sl@0
   815
inline void TDeltaQue<T>::Add(T &aRef,TInt aDelta)
sl@0
   816
/**
sl@0
   817
Adds the specified list element, having the specified 'distance' from the
sl@0
   818
nominal zero point, into the list.
sl@0
   819
sl@0
   820
The element is added into the list, the adjacent delta values adjusted, and 
sl@0
   821
a suitable delta value assigned to the new element, so that the new element 
sl@0
   822
is at the specified 'distance' from the nominal zero point.
sl@0
   823
sl@0
   824
@param aRef   The list element to be inserted.
sl@0
   825
@param aDelta The 'distance' from the nominal zero point.
sl@0
   826
*/
sl@0
   827
	{DoAddDelta(&aRef,aDelta);}
sl@0
   828
sl@0
   829
sl@0
   830
sl@0
   831
sl@0
   832
template <class T>
sl@0
   833
inline void TDeltaQue<T>::Remove(T &aRef)
sl@0
   834
/**
sl@0
   835
Removes the specified list element from the linked list.
sl@0
   836
sl@0
   837
The delta value of the element following the removed element is adjusted
sl@0
   838
so that its 'distance' from the nominal zero point remains the same.
sl@0
   839
sl@0
   840
@param aRef The list element to be removed.
sl@0
   841
*/
sl@0
   842
	{DoRemove(&aRef);}
sl@0
   843
sl@0
   844
sl@0
   845
sl@0
   846
sl@0
   847
template <class T>
sl@0
   848
inline T *TDeltaQue<T>::RemoveFirst()
sl@0
   849
/**
sl@0
   850
Removes the first list element from the linked list if its delta value is zero 
sl@0
   851
or negative.
sl@0
   852
sl@0
   853
@return A pointer to the element removed from the linked list. This is NULL, 
sl@0
   854
        if the first element has a positive delta value.
sl@0
   855
*/
sl@0
   856
	{return((T *) DoRemoveFirst());}
sl@0
   857
sl@0
   858
sl@0
   859
sl@0
   860
sl@0
   861
// Class TSglQueIter
sl@0
   862
template <class T>
sl@0
   863
inline TSglQueIter<T>::TSglQueIter(TSglQueBase &aQue)
sl@0
   864
	: TSglQueIterBase(aQue)
sl@0
   865
/**
sl@0
   866
Constructs the iterator for the specified singly linked list.
sl@0
   867
sl@0
   868
The iterator can be constructed whether or not the list contains any elements.
sl@0
   869
sl@0
   870
If the list does contain elements, the iterator pointer is set to the first one.
sl@0
   871
sl@0
   872
If the list has no elements, the iterator pointer is not set and the conversion 
sl@0
   873
operator T*() and the post increment operator ++ subsequently return NULL. 
sl@0
   874
Once elements have been added to the list, use either the
sl@0
   875
TSglQueIter::Set() function or the TSglQueIterBase::SetToFirst() function to set the 
sl@0
   876
iterator pointer.
sl@0
   877
sl@0
   878
@param aQue A reference to a singly linked list header.
sl@0
   879
sl@0
   880
@see TSglQueIter::Set
sl@0
   881
@see TSglQueIterBase::SetToFirst
sl@0
   882
*/
sl@0
   883
	{}
sl@0
   884
sl@0
   885
sl@0
   886
sl@0
   887
sl@0
   888
template <class T>
sl@0
   889
inline void TSglQueIter<T>::Set(T &aLink)
sl@0
   890
/**
sl@0
   891
Sets the iterator to point to a specific element in the list.
sl@0
   892
sl@0
   893
This function can be used to alter the pointer at any time during the iterator's 
sl@0
   894
existence. The referenced element must be in the list, otherwise the result 
sl@0
   895
is undefined.
sl@0
   896
sl@0
   897
@param aLink A reference to the element from where iteration is to continue.
sl@0
   898
*/
sl@0
   899
	{DoSet(&aLink);}
sl@0
   900
sl@0
   901
sl@0
   902
sl@0
   903
sl@0
   904
template <class T>
sl@0
   905
inline TSglQueIter<T>::operator T *()
sl@0
   906
/**
sl@0
   907
Gets a pointer to the iterator’s current element.
sl@0
   908
sl@0
   909
The operator is normally used implicitly; e.g. some member functions of the
sl@0
   910
list header class TSglQue require a pointer to an element (of type class T)
sl@0
   911
as a parameter, but in practice an iterator is often passed instead.
sl@0
   912
This operator performs the necessary conversion.
sl@0
   913
*/
sl@0
   914
	{return((T *)DoCurrent());}
sl@0
   915
sl@0
   916
sl@0
   917
sl@0
   918
sl@0
   919
template <class T>
sl@0
   920
inline T *TSglQueIter<T>::operator++(TInt)
sl@0
   921
/**
sl@0
   922
Gets a pointer to the iterator's current element and then sets the iterator 
sl@0
   923
to point to the next element.
sl@0
   924
sl@0
   925
Repeated use of this operator allows successive elements to be accessed.
sl@0
   926
sl@0
   927
@return A pointer to the current list element, if the iterator points to an 
sl@0
   928
        element. NULL, if the iterator does not point to an element; i.e. the
sl@0
   929
		iterator pointer has reached the end of the list.
sl@0
   930
*/
sl@0
   931
	{return((T *)DoPostInc());}
sl@0
   932
sl@0
   933
sl@0
   934
sl@0
   935
sl@0
   936
// Class TDblQueIter
sl@0
   937
template <class T>
sl@0
   938
inline TDblQueIter<T>::TDblQueIter(TDblQueBase &aQue)
sl@0
   939
	: TDblQueIterBase(aQue)
sl@0
   940
/**
sl@0
   941
Constructs the iterator for the specified doubly linked list
sl@0
   942
sl@0
   943
The iterator can be constructed whether or not the list contains any elements.
sl@0
   944
sl@0
   945
If the list does contain elements, the iterator pointer is set to the first one.
sl@0
   946
sl@0
   947
If the list has no elements, the iterator pointer is not set and the conversion 
sl@0
   948
operator T*(), the post increment operator++() and the post decrement operator 
sl@0
   949
--() subsequently return NULL. Once elements have been added to the list, use 
sl@0
   950
either the TDblQueIter::Set() function, the TDblQueIterBase::SetToFirst() 
sl@0
   951
function or the TDblQueIterBase::SetToLast() function to set the iterator 
sl@0
   952
pointer.
sl@0
   953
sl@0
   954
@param aQue A reference to a doubly linked list header.
sl@0
   955
sl@0
   956
@see TDblQueIter::Set
sl@0
   957
@see TDblQueIterBase::SetToFirst
sl@0
   958
@see TDblQueIterBase::SetToLast
sl@0
   959
*/
sl@0
   960
	{}
sl@0
   961
sl@0
   962
sl@0
   963
sl@0
   964
sl@0
   965
template <class T>
sl@0
   966
inline void TDblQueIter<T>::Set(T &aLink)
sl@0
   967
/**
sl@0
   968
Sets the iterator to point to a specific element in the list.
sl@0
   969
sl@0
   970
This function can be used to alter the pointer at any time during
sl@0
   971
the iterator's existence. The referenced element must be in the list,
sl@0
   972
otherwise the result is undefined.
sl@0
   973
sl@0
   974
@param aLink A reference to the element from where iteration is to continue.
sl@0
   975
*/
sl@0
   976
	{DoSet(&aLink);}
sl@0
   977
sl@0
   978
sl@0
   979
sl@0
   980
sl@0
   981
template <class T>
sl@0
   982
inline TDblQueIter<T>::operator T *()
sl@0
   983
/**
sl@0
   984
Gets a pointer to the iterator’s current element.
sl@0
   985
sl@0
   986
The operator is normally used implicitly; e.g. some member functions of the
sl@0
   987
list header class TDblQue require a pointer to an element (of type class T)
sl@0
   988
as a parameter but in practice, an iterator is often passed instead.
sl@0
   989
This operator performs the necessary conversion.
sl@0
   990
sl@0
   991
@return A pointer to the current element, if the iterator points to an element
sl@0
   992
        in the list. NULL, if the iterator does not point to an element;
sl@0
   993
		i.e. the iterator pointer has previously reached the end of the list
sl@0
   994
		(see operator++) or the start of the list (see operator--) or
sl@0
   995
		the list is empty. 
sl@0
   996
*/
sl@0
   997
	{return((T *) DoCurrent());}
sl@0
   998
sl@0
   999
sl@0
  1000
sl@0
  1001
sl@0
  1002
template <class T>
sl@0
  1003
inline T *TDblQueIter<T>::operator++(TInt)
sl@0
  1004
/**
sl@0
  1005
Gets a pointer to the iterator's current element and then sets the iterator 
sl@0
  1006
to point to the next element.
sl@0
  1007
sl@0
  1008
Repeated use of this operator allows successive 
sl@0
  1009
elements to be accessed in the forwards direction.
sl@0
  1010
sl@0
  1011
@return A pointer to the current list element, if the iterator points to an 
sl@0
  1012
        element. NULL, if the iterator does not point to an element;
sl@0
  1013
		i.e. the iterator pointer has reached the end of the list.
sl@0
  1014
*/
sl@0
  1015
	{return((T *) DoPostInc());}
sl@0
  1016
sl@0
  1017
sl@0
  1018
sl@0
  1019
sl@0
  1020
template <class T>
sl@0
  1021
inline T *TDblQueIter<T>::operator--(TInt)
sl@0
  1022
/**
sl@0
  1023
Gets a pointer to the iterator's current element and then sets the iterator 
sl@0
  1024
to point to the previous element.
sl@0
  1025
sl@0
  1026
Repeated use of this operator allows successive 
sl@0
  1027
elements to be accessed in the backwards direction.
sl@0
  1028
sl@0
  1029
@return A pointer to the current element, if the iterator points to an element. 
sl@0
  1030
        NULL, if the iterator does not point to an element; i.e. the iterator
sl@0
  1031
		pointer has reached the beginning of the list.
sl@0
  1032
*/
sl@0
  1033
	{return((T *) DoPostDec());}
sl@0
  1034
sl@0
  1035
sl@0
  1036
sl@0
  1037
sl@0
  1038
// Class TKey
sl@0
  1039
inline void TKey::SetPtr(const TAny *aPtr)
sl@0
  1040
/**
sl@0
  1041
Sets the pointer to a sample element whose key is to be used for comparison.
sl@0
  1042
	
sl@0
  1043
The element can be in an existing array or it can be located anywhere in
sl@0
  1044
addressable memory.
sl@0
  1045
	
sl@0
  1046
The At() member function supplied by a derived class must return a pointer 
sl@0
  1047
to this sample element's key when passed an index value of KIndexPtr.
sl@0
  1048
	
sl@0
  1049
SetPtr() must be called before calling User::BinarySearch() because this algorithm 
sl@0
  1050
uses the key of this sample element as the basis for searching the array.
sl@0
  1051
	
sl@0
  1052
@param aPtr A pointer to a sample element.
sl@0
  1053
*/
sl@0
  1054
	{iPtr=aPtr;}
sl@0
  1055
sl@0
  1056
sl@0
  1057
sl@0
  1058
sl@0
  1059
// Class TCharF
sl@0
  1060
inline TCharF::TCharF(TUint aChar)
sl@0
  1061
	: TChar(User::Fold(aChar))
sl@0
  1062
/**
sl@0
  1063
Constructs this 'fold character' object and initialises it with the specified 
sl@0
  1064
value.
sl@0
  1065
sl@0
  1066
@param aChar The initialisation value.
sl@0
  1067
*/
sl@0
  1068
	{}
sl@0
  1069
sl@0
  1070
sl@0
  1071
sl@0
  1072
sl@0
  1073
inline TCharF::TCharF(const TChar& aChar)
sl@0
  1074
	: TChar(User::Fold(aChar))
sl@0
  1075
/**
sl@0
  1076
Constructs this 'fold character' object and initialises it with the value of 
sl@0
  1077
the TChar object aChar.
sl@0
  1078
sl@0
  1079
@param aChar The character object to use as the initialisation value.
sl@0
  1080
*/
sl@0
  1081
	{}
sl@0
  1082
sl@0
  1083
sl@0
  1084
sl@0
  1085
sl@0
  1086
inline TCharF& TCharF::operator=(TUint aChar)
sl@0
  1087
/**
sl@0
  1088
Assigns an unsigned integer value to the 'fold character' object.
sl@0
  1089
sl@0
  1090
@param aChar The value to assign.
sl@0
  1091
sl@0
  1092
@return A reference to this 'fold character' object.
sl@0
  1093
*/
sl@0
  1094
	{SetChar(User::Fold(aChar));return(*this);}
sl@0
  1095
sl@0
  1096
sl@0
  1097
sl@0
  1098
sl@0
  1099
inline TCharF& TCharF::operator=(const TChar& aChar)
sl@0
  1100
/**
sl@0
  1101
Assigns the specified character object to this 'fold character' object.
sl@0
  1102
sl@0
  1103
@param aChar The character object to assign.
sl@0
  1104
sl@0
  1105
@return A reference to this 'fold character' object.
sl@0
  1106
*/
sl@0
  1107
	{SetChar(User::Fold(aChar));return(*this);}
sl@0
  1108
sl@0
  1109
sl@0
  1110
sl@0
  1111
sl@0
  1112
// Class TCharLC
sl@0
  1113
inline TCharLC::TCharLC(TUint aChar)
sl@0
  1114
	: TChar(User::LowerCase(aChar))
sl@0
  1115
/**
sl@0
  1116
Constructs this 'character to lower case' object and initialises it with the 
sl@0
  1117
specified value.
sl@0
  1118
sl@0
  1119
@param aChar The initialisation value.
sl@0
  1120
sl@0
  1121
*/
sl@0
  1122
	{}
sl@0
  1123
sl@0
  1124
sl@0
  1125
sl@0
  1126
sl@0
  1127
inline TCharLC::TCharLC(const TChar& aChar)
sl@0
  1128
	: TChar(User::LowerCase(aChar))
sl@0
  1129
/**
sl@0
  1130
Constructs this 'character to lower case' object and initialises it with the 
sl@0
  1131
value of the TChar object aChar.
sl@0
  1132
sl@0
  1133
@param aChar The character object to use as the initialisation value.
sl@0
  1134
*/
sl@0
  1135
	{}
sl@0
  1136
sl@0
  1137
sl@0
  1138
sl@0
  1139
sl@0
  1140
inline TCharLC& TCharLC::operator=(TUint aChar)
sl@0
  1141
/**
sl@0
  1142
Assigns an unsigned integer value to the 'character to lower case' object.
sl@0
  1143
sl@0
  1144
@param aChar The value to assign.
sl@0
  1145
sl@0
  1146
@return A reference to this 'character to lower case' object.
sl@0
  1147
*/
sl@0
  1148
	{SetChar(User::LowerCase(aChar));return(*this);}
sl@0
  1149
sl@0
  1150
sl@0
  1151
sl@0
  1152
sl@0
  1153
inline TCharLC& TCharLC::operator=(const TChar& aChar)
sl@0
  1154
/**
sl@0
  1155
Assigns the specified character object to this 'character to lower case'
sl@0
  1156
object.
sl@0
  1157
sl@0
  1158
@param aChar The character object to assign.
sl@0
  1159
sl@0
  1160
@return A reference to this 'character to lower case' object.
sl@0
  1161
*/
sl@0
  1162
	{SetChar(User::LowerCase(aChar));return(*this);}
sl@0
  1163
sl@0
  1164
sl@0
  1165
sl@0
  1166
sl@0
  1167
// Class TCharUC
sl@0
  1168
inline TCharUC::TCharUC(TUint aChar)
sl@0
  1169
	: TChar(User::UpperCase(aChar))
sl@0
  1170
/**
sl@0
  1171
Constructs this 'character to upper case' object and initialises it with the 
sl@0
  1172
specified value.
sl@0
  1173
sl@0
  1174
@param aChar The initialisation value.
sl@0
  1175
*/
sl@0
  1176
	{}
sl@0
  1177
sl@0
  1178
sl@0
  1179
sl@0
  1180
sl@0
  1181
inline TCharUC::TCharUC(const TChar& aChar)
sl@0
  1182
	: TChar(User::UpperCase(aChar))
sl@0
  1183
/**
sl@0
  1184
Constructs this 'character to upper case' object and initialises it with the 
sl@0
  1185
value of the TChar object aChar.
sl@0
  1186
sl@0
  1187
@param aChar The character object to use as the initialisation value.
sl@0
  1188
*/
sl@0
  1189
	{}
sl@0
  1190
sl@0
  1191
sl@0
  1192
sl@0
  1193
sl@0
  1194
inline TCharUC& TCharUC::operator=(TUint aChar)
sl@0
  1195
/**
sl@0
  1196
Assigns an unsigned integer value to the 'character to upper case'  object.
sl@0
  1197
sl@0
  1198
@param aChar The value to assign.
sl@0
  1199
sl@0
  1200
@return A reference to this 'character to upper case'  object.
sl@0
  1201
*/
sl@0
  1202
	{SetChar(User::UpperCase(aChar));return(*this);}
sl@0
  1203
sl@0
  1204
sl@0
  1205
sl@0
  1206
sl@0
  1207
inline TCharUC& TCharUC::operator=(const TChar& aChar)
sl@0
  1208
/**
sl@0
  1209
Assigns the specified character object to this 'character to upper case' 
sl@0
  1210
object.
sl@0
  1211
sl@0
  1212
@param aChar The character object to assign.
sl@0
  1213
sl@0
  1214
@return A reference to this 'character to upper case'  object.
sl@0
  1215
*/
sl@0
  1216
	{SetChar(User::UpperCase(aChar));return(*this);}
sl@0
  1217
sl@0
  1218
sl@0
  1219
sl@0
  1220
sl@0
  1221
// Class TDateTime
sl@0
  1222
inline TDateTime::TDateTime()
sl@0
  1223
	: iYear(1980),
sl@0
  1224
	  iMonth(EJanuary), 
sl@0
  1225
	  iDay(1),
sl@0
  1226
	  iHour(0),
sl@0
  1227
	  iMinute(0),
sl@0
  1228
	  iSecond(0),
sl@0
  1229
	  iMicroSecond(0)
sl@0
  1230
/**
sl@0
  1231
Constructs an uninitialised TDateTime object.
sl@0
  1232
*/
sl@0
  1233
	{}           
sl@0
  1234
sl@0
  1235
sl@0
  1236
sl@0
  1237
sl@0
  1238
inline TInt TDateTime::Year() const
sl@0
  1239
/**
sl@0
  1240
Gets the year component of the date/time.
sl@0
  1241
sl@0
  1242
A negative value indicates a BC date.
sl@0
  1243
sl@0
  1244
@return The year
sl@0
  1245
*/
sl@0
  1246
	{return(iYear);}
sl@0
  1247
sl@0
  1248
sl@0
  1249
sl@0
  1250
sl@0
  1251
inline TMonth TDateTime::Month() const
sl@0
  1252
/**
sl@0
  1253
Gets the month component of the date/time.
sl@0
  1254
sl@0
  1255
@return The month. EJanuary to EDecember. Offset from zero, so add one before 
sl@0
  1256
        displaying the month number.
sl@0
  1257
*/
sl@0
  1258
	{return(iMonth);}
sl@0
  1259
sl@0
  1260
sl@0
  1261
sl@0
  1262
sl@0
  1263
inline TInt TDateTime::Day() const
sl@0
  1264
/**
sl@0
  1265
Gets the day component of the date/time.
sl@0
  1266
sl@0
  1267
@return The day. Offset from zero, so add one before displaying the day number.
sl@0
  1268
*/
sl@0
  1269
	{return(iDay);}
sl@0
  1270
sl@0
  1271
sl@0
  1272
sl@0
  1273
sl@0
  1274
inline TInt TDateTime::Hour() const
sl@0
  1275
/**
sl@0
  1276
Gets the hour component of the date/time.
sl@0
  1277
sl@0
  1278
@return The hour.
sl@0
  1279
*/
sl@0
  1280
	{return(iHour);}
sl@0
  1281
sl@0
  1282
sl@0
  1283
sl@0
  1284
sl@0
  1285
inline TInt TDateTime::Minute() const
sl@0
  1286
/**
sl@0
  1287
Gets the minute component of the date/time.
sl@0
  1288
sl@0
  1289
@return The minute.
sl@0
  1290
*/
sl@0
  1291
	{return(iMinute);}
sl@0
  1292
sl@0
  1293
sl@0
  1294
sl@0
  1295
sl@0
  1296
inline TInt TDateTime::Second() const
sl@0
  1297
/**
sl@0
  1298
Gets the second component of the date/time.
sl@0
  1299
sl@0
  1300
@return The second.
sl@0
  1301
*/
sl@0
  1302
	{return(iSecond);}
sl@0
  1303
sl@0
  1304
sl@0
  1305
sl@0
  1306
sl@0
  1307
inline TInt TDateTime::MicroSecond() const
sl@0
  1308
/**
sl@0
  1309
Gets the microsecond component of the date/time.
sl@0
  1310
sl@0
  1311
@return The microsecond.
sl@0
  1312
*/
sl@0
  1313
	{return(iMicroSecond);}
sl@0
  1314
sl@0
  1315
// Class TTimeIntervalMicroSeconds
sl@0
  1316
sl@0
  1317
sl@0
  1318
sl@0
  1319
sl@0
  1320
inline TTimeIntervalMicroSeconds::TTimeIntervalMicroSeconds()
sl@0
  1321
/**
sl@0
  1322
Default constructor.
sl@0
  1323
sl@0
  1324
Constructs an uninitialised object.
sl@0
  1325
*/
sl@0
  1326
	{}
sl@0
  1327
sl@0
  1328
sl@0
  1329
sl@0
  1330
sl@0
  1331
inline TTimeIntervalMicroSeconds::TTimeIntervalMicroSeconds(const TInt64& aInterval)
sl@0
  1332
	: iInterval(aInterval)
sl@0
  1333
/**
sl@0
  1334
Constructs the object with the specified 64-bit interval value.
sl@0
  1335
sl@0
  1336
@param aInterval The 64-bit interval value with which the object is to be
sl@0
  1337
                 initialised.
sl@0
  1338
*/
sl@0
  1339
	{}
sl@0
  1340
sl@0
  1341
sl@0
  1342
sl@0
  1343
sl@0
  1344
inline TTimeIntervalMicroSeconds& TTimeIntervalMicroSeconds::operator=(const TInt64& aInterval)
sl@0
  1345
/**
sl@0
  1346
Assigns a 64-bit integer value to this object.
sl@0
  1347
sl@0
  1348
@param aInterval The 64-bit integer interval value to be assigned.
sl@0
  1349
sl@0
  1350
@return A reference to this object.
sl@0
  1351
*/
sl@0
  1352
	{iInterval=aInterval;return(*this);}
sl@0
  1353
sl@0
  1354
sl@0
  1355
sl@0
  1356
sl@0
  1357
inline TBool TTimeIntervalMicroSeconds::operator==(const TTimeIntervalMicroSeconds& aInterval) const
sl@0
  1358
/**
sl@0
  1359
Tests whether this TTimeIntervalMicroSeconds object is equal to the
sl@0
  1360
specified TTimeIntervalMicroSeconds object.
sl@0
  1361
sl@0
  1362
@param aInterval The time interval to be compared with this time interval.
sl@0
  1363
sl@0
  1364
@return True if the two time intervals are equal. False otherwise.
sl@0
  1365
*/
sl@0
  1366
	{return(iInterval==aInterval.iInterval);}
sl@0
  1367
sl@0
  1368
sl@0
  1369
sl@0
  1370
sl@0
  1371
inline TBool TTimeIntervalMicroSeconds::operator!=(const TTimeIntervalMicroSeconds& aInterval) const
sl@0
  1372
/**
sl@0
  1373
Tests whether this TTimeIntervalMicroSeconds object is not equal to the
sl@0
  1374
specified TTimeIntervalMicroSeconds object.
sl@0
  1375
sl@0
  1376
@param aInterval The time interval to be compared with this time interval.
sl@0
  1377
sl@0
  1378
@return True if the two time intervals are not equal. False otherwise.
sl@0
  1379
*/
sl@0
  1380
	{return(iInterval!=aInterval.iInterval);}
sl@0
  1381
sl@0
  1382
sl@0
  1383
sl@0
  1384
sl@0
  1385
inline TBool TTimeIntervalMicroSeconds::operator>=(const TTimeIntervalMicroSeconds& aInterval) const
sl@0
  1386
/**
sl@0
  1387
Tests whether this TTimeIntervalMicroSeconds object is greater than or equal to the
sl@0
  1388
specified TTimeIntervalMicroSeconds object.
sl@0
  1389
sl@0
  1390
@param aInterval The time interval to be compared with this time interval.
sl@0
  1391
sl@0
  1392
@return True if this time interval is greater than or equal to the specified
sl@0
  1393
        time interval. False otherwise.
sl@0
  1394
*/
sl@0
  1395
	{return(iInterval>=aInterval.iInterval);}
sl@0
  1396
sl@0
  1397
sl@0
  1398
sl@0
  1399
sl@0
  1400
inline TBool TTimeIntervalMicroSeconds::operator<=(const TTimeIntervalMicroSeconds& aInterval) const
sl@0
  1401
/**
sl@0
  1402
Tests whether this TTimeIntervalMicroSeconds object is less than or equal to the
sl@0
  1403
specified TTimeIntervalMicroSeconds object.
sl@0
  1404
sl@0
  1405
@param aInterval The time interval to be compared with this time interval.
sl@0
  1406
sl@0
  1407
@return True if this time interval is less than or equal to the specified
sl@0
  1408
        time interval. False otherwise.
sl@0
  1409
*/
sl@0
  1410
	{return(iInterval<=aInterval.iInterval);}
sl@0
  1411
sl@0
  1412
sl@0
  1413
sl@0
  1414
sl@0
  1415
inline TBool TTimeIntervalMicroSeconds::operator>(const TTimeIntervalMicroSeconds& aInterval) const
sl@0
  1416
/**
sl@0
  1417
Tests whether this TTimeIntervalMicroSeconds object is greater than the
sl@0
  1418
specified TTimeIntervalMicroSeconds object.
sl@0
  1419
sl@0
  1420
@param aInterval The time interval to be compared with this time interval.
sl@0
  1421
sl@0
  1422
@return True if this time interval is greater than the specified
sl@0
  1423
        time interval. False otherwise.
sl@0
  1424
*/
sl@0
  1425
	{return(iInterval>aInterval.iInterval);}
sl@0
  1426
sl@0
  1427
sl@0
  1428
sl@0
  1429
sl@0
  1430
inline TBool TTimeIntervalMicroSeconds::operator<(const TTimeIntervalMicroSeconds& aInterval) const
sl@0
  1431
/**
sl@0
  1432
Tests whether this TTimeIntervalMicroSeconds object is less than the
sl@0
  1433
specified TTimeIntervalMicroSeconds object.
sl@0
  1434
sl@0
  1435
@param aInterval The time interval to be compared with this time interval.
sl@0
  1436
sl@0
  1437
@return True if this time interval is less than the specified
sl@0
  1438
        time interval. False otherwise.
sl@0
  1439
*/
sl@0
  1440
	{return(iInterval<aInterval.iInterval);}
sl@0
  1441
sl@0
  1442
sl@0
  1443
sl@0
  1444
sl@0
  1445
inline const TInt64& TTimeIntervalMicroSeconds::Int64() const
sl@0
  1446
/**
sl@0
  1447
Gets the time interval as a 64-bit integer value.
sl@0
  1448
sl@0
  1449
@return This 64-bit integer time interval value.
sl@0
  1450
*/
sl@0
  1451
	{return(iInterval);}
sl@0
  1452
sl@0
  1453
sl@0
  1454
sl@0
  1455
sl@0
  1456
// Class TTimeIntervalBase
sl@0
  1457
inline TTimeIntervalBase::TTimeIntervalBase()
sl@0
  1458
/**
sl@0
  1459
Default constructor.
sl@0
  1460
*/
sl@0
  1461
	{}
sl@0
  1462
sl@0
  1463
sl@0
  1464
sl@0
  1465
sl@0
  1466
inline TTimeIntervalBase::TTimeIntervalBase(TInt aInterval)
sl@0
  1467
	: iInterval(aInterval)
sl@0
  1468
/**
sl@0
  1469
Constructor taking an interval value.
sl@0
  1470
sl@0
  1471
@param aInterval The interval value.
sl@0
  1472
*/
sl@0
  1473
	{}
sl@0
  1474
sl@0
  1475
sl@0
  1476
sl@0
  1477
sl@0
  1478
inline TBool TTimeIntervalBase::operator==(TTimeIntervalBase aInterval) const
sl@0
  1479
/**
sl@0
  1480
Tests whether this time interval is the same as the specified time interval.
sl@0
  1481
sl@0
  1482
@param aInterval The time interval to be compared with this time interval.
sl@0
  1483
sl@0
  1484
@return True if the two time intervals are equal. False otherwise.
sl@0
  1485
*/
sl@0
  1486
	{return(iInterval==aInterval.iInterval);}
sl@0
  1487
sl@0
  1488
sl@0
  1489
sl@0
  1490
sl@0
  1491
inline TBool TTimeIntervalBase::operator!=(TTimeIntervalBase aInterval) const
sl@0
  1492
/**
sl@0
  1493
Tests whether this time interval is not the same as the specified
sl@0
  1494
time interval.
sl@0
  1495
sl@0
  1496
@param aInterval The time interval to be compared with this time interval.
sl@0
  1497
sl@0
  1498
@return True if the two time intervals differ. False otherwise.
sl@0
  1499
*/
sl@0
  1500
	{return(iInterval!=aInterval.iInterval);}
sl@0
  1501
sl@0
  1502
sl@0
  1503
sl@0
  1504
sl@0
  1505
inline TBool TTimeIntervalBase::operator>=(TTimeIntervalBase aInterval) const
sl@0
  1506
/**
sl@0
  1507
Tests whether this time interval is greater than or equal to the
sl@0
  1508
specified time interval.
sl@0
  1509
sl@0
  1510
@param aInterval The time interval to be compared with this time interval.
sl@0
  1511
sl@0
  1512
@return True if this time interval is greater than or equal to the specified
sl@0
  1513
        time interval. False otherwise.
sl@0
  1514
*/
sl@0
  1515
	{return(iInterval>=aInterval.iInterval);}
sl@0
  1516
sl@0
  1517
sl@0
  1518
sl@0
  1519
sl@0
  1520
inline TBool TTimeIntervalBase::operator<=(TTimeIntervalBase aInterval) const
sl@0
  1521
/**
sl@0
  1522
Tests whether this time interval is less than or equal to the
sl@0
  1523
specified time interval.
sl@0
  1524
sl@0
  1525
@param aInterval The time interval to be compared with this time interval.
sl@0
  1526
sl@0
  1527
@return True if this time interval is less than or equal to the specified
sl@0
  1528
        time interval. False otherwise.
sl@0
  1529
*/
sl@0
  1530
	{return(iInterval<=aInterval.iInterval);}
sl@0
  1531
sl@0
  1532
sl@0
  1533
sl@0
  1534
sl@0
  1535
inline TBool TTimeIntervalBase::operator>(TTimeIntervalBase aInterval) const
sl@0
  1536
/**
sl@0
  1537
Tests whether this time interval is greater than the specified time interval.
sl@0
  1538
sl@0
  1539
@param aInterval The time interval to be compared with this time interval.
sl@0
  1540
sl@0
  1541
@return True if this time interval is greater than the specified
sl@0
  1542
        time interval. False otherwise.
sl@0
  1543
*/
sl@0
  1544
	{return(iInterval>aInterval.iInterval);}
sl@0
  1545
sl@0
  1546
sl@0
  1547
sl@0
  1548
sl@0
  1549
inline TBool TTimeIntervalBase::operator<(TTimeIntervalBase aInterval) const
sl@0
  1550
/**
sl@0
  1551
Tests whether this time interval is less than the specified time interval.
sl@0
  1552
sl@0
  1553
@param aInterval The time interval to be compared with this time interval.
sl@0
  1554
sl@0
  1555
@return True if this time interval is less than the specified
sl@0
  1556
        time interval. False otherwise.
sl@0
  1557
*/
sl@0
  1558
	{return(iInterval<aInterval.iInterval);}
sl@0
  1559
sl@0
  1560
sl@0
  1561
sl@0
  1562
sl@0
  1563
inline TInt TTimeIntervalBase::Int() const
sl@0
  1564
/** 
sl@0
  1565
Gets the time interval as a 32 bit integer.
sl@0
  1566
sl@0
  1567
@return The time interval as a 32 bit integer.
sl@0
  1568
*/
sl@0
  1569
	{return(iInterval);}
sl@0
  1570
sl@0
  1571
sl@0
  1572
sl@0
  1573
sl@0
  1574
// Class TTimeIntervalMicroSeconds32
sl@0
  1575
inline TTimeIntervalMicroSeconds32::TTimeIntervalMicroSeconds32()
sl@0
  1576
/**
sl@0
  1577
Default constructor.
sl@0
  1578
sl@0
  1579
Constructs an uninitialised object.
sl@0
  1580
*/
sl@0
  1581
	{}
sl@0
  1582
sl@0
  1583
sl@0
  1584
sl@0
  1585
sl@0
  1586
inline TTimeIntervalMicroSeconds32::TTimeIntervalMicroSeconds32(TInt aInterval)
sl@0
  1587
    : TTimeIntervalBase(aInterval)
sl@0
  1588
/**
sl@0
  1589
Constructs the object with the specified interval value.
sl@0
  1590
sl@0
  1591
@param aInterval The interval value with which the object is to be initialised.
sl@0
  1592
*/
sl@0
  1593
	{}
sl@0
  1594
sl@0
  1595
sl@0
  1596
sl@0
  1597
sl@0
  1598
inline TTimeIntervalMicroSeconds32& TTimeIntervalMicroSeconds32::operator=(TInt aInterval)
sl@0
  1599
/**
sl@0
  1600
Assigns a value to this object.
sl@0
  1601
sl@0
  1602
@param aInterval The interval value to be assigned.
sl@0
  1603
sl@0
  1604
@return A reference to this object.
sl@0
  1605
*/
sl@0
  1606
	{iInterval=aInterval;return(*this);}
sl@0
  1607
sl@0
  1608
sl@0
  1609
sl@0
  1610
sl@0
  1611
// Class TTimeIntervalSeconds
sl@0
  1612
inline TTimeIntervalSeconds::TTimeIntervalSeconds()
sl@0
  1613
/**
sl@0
  1614
Default constructor.
sl@0
  1615
sl@0
  1616
Constructs an uninitialised object.
sl@0
  1617
*/
sl@0
  1618
	{}
sl@0
  1619
sl@0
  1620
sl@0
  1621
sl@0
  1622
sl@0
  1623
inline TTimeIntervalSeconds::TTimeIntervalSeconds(TInt aInterval)
sl@0
  1624
	: TTimeIntervalBase(aInterval)
sl@0
  1625
/**
sl@0
  1626
Constructs the object with the specified interval value.
sl@0
  1627
sl@0
  1628
@param aInterval The interval value with which the object is to be initialised.
sl@0
  1629
*/
sl@0
  1630
	{}
sl@0
  1631
sl@0
  1632
sl@0
  1633
sl@0
  1634
sl@0
  1635
inline TTimeIntervalSeconds& TTimeIntervalSeconds::operator=(TInt aInterval)
sl@0
  1636
/**
sl@0
  1637
Assigns a value to this object.
sl@0
  1638
sl@0
  1639
@param aInterval The interval value to be assigned.
sl@0
  1640
sl@0
  1641
@return A reference to this object.
sl@0
  1642
*/
sl@0
  1643
	{iInterval=aInterval;return(*this);}
sl@0
  1644
sl@0
  1645
sl@0
  1646
sl@0
  1647
sl@0
  1648
// Class TTimeIntervalMinutes
sl@0
  1649
inline TTimeIntervalMinutes::TTimeIntervalMinutes()
sl@0
  1650
/**
sl@0
  1651
Default constructor.
sl@0
  1652
sl@0
  1653
Constructs an uninitialised object.
sl@0
  1654
*/
sl@0
  1655
	{}
sl@0
  1656
sl@0
  1657
sl@0
  1658
sl@0
  1659
sl@0
  1660
inline TTimeIntervalMinutes::TTimeIntervalMinutes(TInt aInterval)
sl@0
  1661
	: TTimeIntervalBase(aInterval)
sl@0
  1662
/**
sl@0
  1663
Constructs the object with the specified interval value.
sl@0
  1664
sl@0
  1665
@param aInterval The interval value with which the object is to be initialised.
sl@0
  1666
*/
sl@0
  1667
	{}
sl@0
  1668
sl@0
  1669
sl@0
  1670
sl@0
  1671
sl@0
  1672
inline TTimeIntervalMinutes& TTimeIntervalMinutes::operator=(TInt aInterval)
sl@0
  1673
/**
sl@0
  1674
Assigns a value to this object.
sl@0
  1675
sl@0
  1676
@param aInterval The interval value to be assigned.
sl@0
  1677
sl@0
  1678
@return A reference to this object.
sl@0
  1679
*/
sl@0
  1680
	{iInterval=aInterval;return(*this);}
sl@0
  1681
sl@0
  1682
sl@0
  1683
sl@0
  1684
sl@0
  1685
// Class TTimeIntervalHours
sl@0
  1686
inline TTimeIntervalHours::TTimeIntervalHours()
sl@0
  1687
/**
sl@0
  1688
Default constructor.
sl@0
  1689
sl@0
  1690
Constructs an uninitialised object.
sl@0
  1691
*/
sl@0
  1692
	{}
sl@0
  1693
inline TTimeIntervalHours::TTimeIntervalHours(TInt aInterval)
sl@0
  1694
	: TTimeIntervalBase(aInterval)
sl@0
  1695
/**
sl@0
  1696
Constructs the object with the specified interval value.
sl@0
  1697
sl@0
  1698
@param aInterval The interval value with which the object is to be initialised.
sl@0
  1699
*/
sl@0
  1700
	{}
sl@0
  1701
sl@0
  1702
sl@0
  1703
sl@0
  1704
sl@0
  1705
inline TTimeIntervalHours& TTimeIntervalHours::operator=(TInt aInterval)
sl@0
  1706
/**
sl@0
  1707
Assigns a value to this object.
sl@0
  1708
sl@0
  1709
@param aInterval The interval value to be assigned.
sl@0
  1710
sl@0
  1711
@return A reference to this object.
sl@0
  1712
*/
sl@0
  1713
	{iInterval=aInterval;return(*this);}
sl@0
  1714
sl@0
  1715
sl@0
  1716
sl@0
  1717
sl@0
  1718
// Class TTimeIntervalDays
sl@0
  1719
inline TTimeIntervalDays::TTimeIntervalDays()
sl@0
  1720
/**
sl@0
  1721
Default constructor.
sl@0
  1722
sl@0
  1723
Constructs an uninitialised object.
sl@0
  1724
*/
sl@0
  1725
	{}
sl@0
  1726
sl@0
  1727
sl@0
  1728
sl@0
  1729
sl@0
  1730
inline TTimeIntervalDays::TTimeIntervalDays(TInt aInterval)
sl@0
  1731
	: TTimeIntervalBase(aInterval)
sl@0
  1732
/**
sl@0
  1733
Constructs the object with the specified interval value.
sl@0
  1734
sl@0
  1735
@param aInterval The interval value with which the object is to be initialised.
sl@0
  1736
*/
sl@0
  1737
	{}
sl@0
  1738
sl@0
  1739
sl@0
  1740
sl@0
  1741
sl@0
  1742
inline TTimeIntervalDays& TTimeIntervalDays::operator=(TInt aInterval)
sl@0
  1743
/**
sl@0
  1744
Assigns a value to this object.
sl@0
  1745
sl@0
  1746
@param aInterval The interval value to be assigned.
sl@0
  1747
sl@0
  1748
@return A reference to this object.
sl@0
  1749
*/
sl@0
  1750
	{iInterval=aInterval;return(*this);}
sl@0
  1751
sl@0
  1752
sl@0
  1753
sl@0
  1754
sl@0
  1755
// Class TTimeIntervalMonths
sl@0
  1756
inline TTimeIntervalMonths::TTimeIntervalMonths()
sl@0
  1757
/**
sl@0
  1758
Default constructor.
sl@0
  1759
sl@0
  1760
Constructs an uninitialised object.
sl@0
  1761
*/
sl@0
  1762
	{}
sl@0
  1763
sl@0
  1764
sl@0
  1765
sl@0
  1766
sl@0
  1767
inline TTimeIntervalMonths::TTimeIntervalMonths(TInt aInterval)
sl@0
  1768
	: TTimeIntervalBase(aInterval)
sl@0
  1769
/**
sl@0
  1770
Constructs the object with the specified interval value.
sl@0
  1771
sl@0
  1772
@param aInterval The interval value with which the object is to be initialised.
sl@0
  1773
*/
sl@0
  1774
	{}
sl@0
  1775
sl@0
  1776
sl@0
  1777
sl@0
  1778
sl@0
  1779
inline TTimeIntervalMonths& TTimeIntervalMonths::operator=(TInt aInterval)
sl@0
  1780
/**
sl@0
  1781
Assigns a value to this object.
sl@0
  1782
sl@0
  1783
@param aInterval The interval value to be assigned.
sl@0
  1784
sl@0
  1785
@return A reference to this object.
sl@0
  1786
*/
sl@0
  1787
	{iInterval=aInterval;return(*this);}
sl@0
  1788
sl@0
  1789
sl@0
  1790
sl@0
  1791
sl@0
  1792
// Class TTimeIntervalYears
sl@0
  1793
inline TTimeIntervalYears::TTimeIntervalYears()
sl@0
  1794
/**
sl@0
  1795
Default constructor.
sl@0
  1796
sl@0
  1797
Constructs an uninitialised object.
sl@0
  1798
*/
sl@0
  1799
	{}
sl@0
  1800
sl@0
  1801
sl@0
  1802
sl@0
  1803
sl@0
  1804
inline TTimeIntervalYears::TTimeIntervalYears(TInt aInterval)
sl@0
  1805
	: TTimeIntervalBase(aInterval)
sl@0
  1806
/**
sl@0
  1807
Constructs the object with the specified interval value.
sl@0
  1808
sl@0
  1809
@param aInterval The interval value with which the object is to be initialised.
sl@0
  1810
*/
sl@0
  1811
	{}
sl@0
  1812
sl@0
  1813
sl@0
  1814
sl@0
  1815
sl@0
  1816
inline TTimeIntervalYears& TTimeIntervalYears::operator=(TInt aInterval)
sl@0
  1817
/**
sl@0
  1818
Assigns a value to this object.
sl@0
  1819
sl@0
  1820
@param aInterval The interval value to be assigned.
sl@0
  1821
sl@0
  1822
@return A reference to this object.
sl@0
  1823
*/
sl@0
  1824
	{iInterval=aInterval;return(*this);}
sl@0
  1825
sl@0
  1826
sl@0
  1827
sl@0
  1828
sl@0
  1829
// Class TTime
sl@0
  1830
inline TTime::TTime()
sl@0
  1831
/**
sl@0
  1832
Default constructor.
sl@0
  1833
sl@0
  1834
The object is initialised to an arbitrary value.
sl@0
  1835
*/
sl@0
  1836
	{}
sl@0
  1837
sl@0
  1838
sl@0
  1839
sl@0
  1840
sl@0
  1841
inline TTime::TTime(const TInt64& aTime)
sl@0
  1842
	: iTime(aTime)
sl@0
  1843
/**
sl@0
  1844
Constructs the object from a 64-bit microsecond value.
sl@0
  1845
sl@0
  1846
@param aTime Microsecond value to which to initialise the TTime object.
sl@0
  1847
*/
sl@0
  1848
	{}
sl@0
  1849
sl@0
  1850
sl@0
  1851
sl@0
  1852
sl@0
  1853
inline TTime &TTime::operator=(const TInt64& aTime)
sl@0
  1854
/**
sl@0
  1855
Assigns a value contained in a 64-bit integer to this TTime object.
sl@0
  1856
sl@0
  1857
@param aTime Microsecond value which to assign to the TTime object.
sl@0
  1858
sl@0
  1859
@return This TTime object.
sl@0
  1860
*/
sl@0
  1861
	{iTime=aTime;return(*this);}
sl@0
  1862
sl@0
  1863
sl@0
  1864
sl@0
  1865
sl@0
  1866
inline TBool TTime::operator==(TTime aTime) const
sl@0
  1867
/**
sl@0
  1868
Tests whether two date/times are equal.
sl@0
  1869
sl@0
  1870
@param aTime The time to be compared with this TTime.
sl@0
  1871
sl@0
  1872
@return True if the two TTimes are equal. False if not.
sl@0
  1873
*/
sl@0
  1874
	{return(iTime==aTime.iTime);}
sl@0
  1875
sl@0
  1876
sl@0
  1877
sl@0
  1878
sl@0
  1879
inline TBool TTime::operator!=(TTime aTime) const
sl@0
  1880
/**
sl@0
  1881
Tests whether two date/times are not equal.
sl@0
  1882
sl@0
  1883
@param aTime The date/time to be compared with this TTime.
sl@0
  1884
sl@0
  1885
@return True if the two TTimes are different. False if the same.
sl@0
  1886
*/
sl@0
  1887
	{return(iTime!=aTime.iTime);}
sl@0
  1888
sl@0
  1889
sl@0
  1890
sl@0
  1891
sl@0
  1892
inline TBool TTime::operator>=(TTime aTime) const
sl@0
  1893
/**
sl@0
  1894
Tests whether this date/time is later than or the same as the
sl@0
  1895
specified date/time.
sl@0
  1896
sl@0
  1897
@param aTime The date/time to be compared with this date/time.
sl@0
  1898
sl@0
  1899
@return True if this date/time is later than or the same as the
sl@0
  1900
        specified date/time. False otherwise.
sl@0
  1901
*/
sl@0
  1902
	{return(iTime>=aTime.iTime);}
sl@0
  1903
sl@0
  1904
sl@0
  1905
sl@0
  1906
sl@0
  1907
inline TBool TTime::operator<=(TTime aTime) const
sl@0
  1908
/**
sl@0
  1909
Tests whether this date/time is earlier than or the same as the
sl@0
  1910
specified date/time.
sl@0
  1911
sl@0
  1912
@param aTime The date/time to be compared with this date/time.
sl@0
  1913
sl@0
  1914
@return True if this date/time is earlier than or the same as the
sl@0
  1915
        specified date/time. False otherwise.
sl@0
  1916
*/
sl@0
  1917
	{return(iTime<=aTime.iTime);}
sl@0
  1918
sl@0
  1919
sl@0
  1920
sl@0
  1921
sl@0
  1922
inline TBool TTime::operator>(TTime aTime) const
sl@0
  1923
/**
sl@0
  1924
Tests whether this date/time is later than the specified date/time.
sl@0
  1925
sl@0
  1926
@param aTime The date/time to be compared with this date/time.
sl@0
  1927
sl@0
  1928
@return True if this date/time is later than the specified date/time.
sl@0
  1929
        False otherwise.
sl@0
  1930
*/
sl@0
  1931
	{return(iTime>aTime.iTime);}
sl@0
  1932
sl@0
  1933
sl@0
  1934
sl@0
  1935
sl@0
  1936
inline TBool TTime::operator<(TTime aTime) const
sl@0
  1937
/**
sl@0
  1938
Tests whether this date/time is earlier than the specified date/time.
sl@0
  1939
sl@0
  1940
@param aTime The date/time to be compared with this date/time.
sl@0
  1941
sl@0
  1942
@return True if this date/time is earlier than the specified date/time.
sl@0
  1943
        False otherwise.
sl@0
  1944
*/
sl@0
  1945
	{return(iTime<aTime.iTime);}
sl@0
  1946
sl@0
  1947
sl@0
  1948
sl@0
  1949
sl@0
  1950
inline const TInt64& TTime::Int64() const
sl@0
  1951
/**
sl@0
  1952
Gets the 64 bit integer representation of this TTime obect.
sl@0
  1953
sl@0
  1954
@return The 64 bit integer representation.
sl@0
  1955
*/
sl@0
  1956
	{return(iTime);}
sl@0
  1957
sl@0
  1958
sl@0
  1959
sl@0
  1960
sl@0
  1961
// Class TLexMark8
sl@0
  1962
inline TLexMark8::TLexMark8()
sl@0
  1963
	: iPtr(NULL)
sl@0
  1964
/**
sl@0
  1965
Default constructor.
sl@0
  1966
*/
sl@0
  1967
	{}
sl@0
  1968
sl@0
  1969
sl@0
  1970
sl@0
  1971
sl@0
  1972
inline TLexMark8::TLexMark8(const TUint8 *aString) 
sl@0
  1973
	: iPtr(aString)
sl@0
  1974
	{}
sl@0
  1975
sl@0
  1976
sl@0
  1977
sl@0
  1978
sl@0
  1979
// Class TLex8
sl@0
  1980
inline TLex8::TLex8(const TUint8 *aString)
sl@0
  1981
/**
sl@0
  1982
Constructs the object with a pointer to a string.
sl@0
  1983
sl@0
  1984
The extraction mark and next character members are initialised to point
sl@0
  1985
to the start of the string.
sl@0
  1986
sl@0
  1987
@param aString String to be assigned.
sl@0
  1988
*/
sl@0
  1989
	{Assign(TPtrC8(aString));}
sl@0
  1990
sl@0
  1991
sl@0
  1992
sl@0
  1993
sl@0
  1994
inline TLex8::TLex8(const TDesC8 &aDes)
sl@0
  1995
/**
sl@0
  1996
Constructs the object with a descriptor.
sl@0
  1997
sl@0
  1998
The extraction mark and next character 
sl@0
  1999
members are initialised to point to the start of the string.
sl@0
  2000
sl@0
  2001
@param aDes Descriptor to be assigned by reference.
sl@0
  2002
*/
sl@0
  2003
	{Assign(aDes);}
sl@0
  2004
sl@0
  2005
sl@0
  2006
sl@0
  2007
sl@0
  2008
inline TLex8& TLex8::operator=(const TUint8* aString)
sl@0
  2009
/**
sl@0
  2010
Allows strings to be assigned to a TLex8.
sl@0
  2011
sl@0
  2012
@param aString String to be assigned to the TLex8. 
sl@0
  2013
sl@0
  2014
@return TLex8 descriptor.
sl@0
  2015
*/
sl@0
  2016
	{Assign(TPtrC8(aString));return(*this);}
sl@0
  2017
sl@0
  2018
sl@0
  2019
sl@0
  2020
sl@0
  2021
inline TLex8& TLex8::operator=(const TDesC8& aBuf)
sl@0
  2022
/**
sl@0
  2023
Allows descriptors to be assigned to a TLex8.
sl@0
  2024
sl@0
  2025
@param aBuf Descriptor to be assigned to the TLex8.
sl@0
  2026
sl@0
  2027
@return TLex8 descriptor.
sl@0
  2028
*/
sl@0
  2029
	{Assign(aBuf);return(*this);}
sl@0
  2030
sl@0
  2031
sl@0
  2032
sl@0
  2033
sl@0
  2034
inline TBool TLex8::Eos() const
sl@0
  2035
/**
sl@0
  2036
Tests whether the next character position is at the end of the string.
sl@0
  2037
sl@0
  2038
@return True if at end of string, false otherwise.
sl@0
  2039
*/
sl@0
  2040
	{return(iNext==iEnd);}
sl@0
  2041
sl@0
  2042
sl@0
  2043
sl@0
  2044
sl@0
  2045
inline void TLex8::Mark()
sl@0
  2046
/**
sl@0
  2047
Sets the TLex8's next character position to its extraction mark.
sl@0
  2048
*/
sl@0
  2049
	{Mark(iMark);}
sl@0
  2050
sl@0
  2051
sl@0
  2052
sl@0
  2053
sl@0
  2054
inline void TLex8::Mark(TLexMark8& aMark) const
sl@0
  2055
/**
sl@0
  2056
Sets the supplied extraction mark to the TLex8's next character position.
sl@0
  2057
sl@0
  2058
@param aMark On return, this is set to the next character position.
sl@0
  2059
*/
sl@0
  2060
	{aMark.iPtr=iNext;}
sl@0
  2061
sl@0
  2062
sl@0
  2063
sl@0
  2064
sl@0
  2065
inline void TLex8::UnGetToMark()
sl@0
  2066
/**
sl@0
  2067
Sets the next character position to the current extraction mark position.
sl@0
  2068
sl@0
  2069
@panic USER 63, if the extraction mark is before the start or beyond the end
sl@0
  2070
       of the string.
sl@0
  2071
*/
sl@0
  2072
    {UnGetToMark(iMark);}
sl@0
  2073
sl@0
  2074
sl@0
  2075
sl@0
  2076
sl@0
  2077
inline void TLex8::SkipAndMark(TInt aNumber)
sl@0
  2078
/**
sl@0
  2079
Moves the next character position a specified number of characters. 
sl@0
  2080
  
sl@0
  2081
@param aNumber Number of characters to skip.
sl@0
  2082
sl@0
  2083
@panic USER 61, if the skip moves the next character position either to before
sl@0
  2084
       the start or beyond the end of the string.
sl@0
  2085
*/
sl@0
  2086
    {SkipAndMark(aNumber,iMark);}
sl@0
  2087
sl@0
  2088
sl@0
  2089
sl@0
  2090
sl@0
  2091
inline void TLex8::SkipSpaceAndMark()
sl@0
  2092
/**
sl@0
  2093
Moves the next character position past any white space and copies it to the 
sl@0
  2094
TLex8's extraction mark.
sl@0
  2095
sl@0
  2096
Stops if at the end of the string.
sl@0
  2097
*/
sl@0
  2098
    {SkipSpaceAndMark(iMark);}
sl@0
  2099
sl@0
  2100
sl@0
  2101
sl@0
  2102
sl@0
  2103
inline TInt TLex8::TokenLength() const
sl@0
  2104
/**
sl@0
  2105
Gets the length of the token.
sl@0
  2106
sl@0
  2107
This is the difference between the next character 
sl@0
  2108
position and the extraction mark.
sl@0
  2109
sl@0
  2110
@return Length of the token.
sl@0
  2111
*/
sl@0
  2112
	{return(iNext-iMark.iPtr);}
sl@0
  2113
sl@0
  2114
sl@0
  2115
sl@0
  2116
sl@0
  2117
inline TInt TLex8::MarkedOffset() const
sl@0
  2118
/**
sl@0
  2119
Gets the offset of the extraction mark from the start of the string.
sl@0
  2120
sl@0
  2121
@return The offset of the extraction mark.
sl@0
  2122
*/
sl@0
  2123
    {return(iMark.iPtr-iBuf);}
sl@0
  2124
sl@0
  2125
sl@0
  2126
sl@0
  2127
sl@0
  2128
inline TInt TLex8::Val(TInt &aVal)
sl@0
  2129
/**
sl@0
  2130
Parses the string to extract a signed integer.
sl@0
  2131
sl@0
  2132
@param aVal On return, contains the extracted integer.
sl@0
  2133
sl@0
  2134
@return KErrNone if successful.
sl@0
  2135
        KErrGeneral if the next character position is initially at the end of the string
sl@0
  2136
        or no valid characters found initially.
sl@0
  2137
        KErrOverflow if there is sign overflow, i.e. converted value greater than limit.
sl@0
  2138
        If error codes KErrGeneral or KErrOverflow are returned, the object's
sl@0
  2139
        members are left unaltered.
sl@0
  2140
*/
sl@0
  2141
	{return(Val((TInt32&)aVal));}
sl@0
  2142
sl@0
  2143
sl@0
  2144
sl@0
  2145
sl@0
  2146
inline TInt TLex8::Val(TUint &aVal,TRadix aRadix)
sl@0
  2147
/**
sl@0
  2148
Parses the string to extract an unsigned integer, using the specified radix.
sl@0
  2149
sl@0
  2150
@param aVal   On return, contains the extracted integer.
sl@0
  2151
@param aRadix The radix to use when converting the number. The default radix
sl@0
  2152
              for this function overload is decimal.
sl@0
  2153
sl@0
  2154
@return KErrNone if successful.
sl@0
  2155
        KErrGeneral if the next character position is initially at the end of the string
sl@0
  2156
        or no valid characters found initially.
sl@0
  2157
        KErrOverflow if there is sign overflow, i.e. converted value greater than limit.
sl@0
  2158
        If error codes KErrGeneral or KErrOverflow are returned, the object's
sl@0
  2159
        members are left unaltered.
sl@0
  2160
*/
sl@0
  2161
	{return(Val((TUint32&)aVal,aRadix));}
sl@0
  2162
sl@0
  2163
sl@0
  2164
sl@0
  2165
sl@0
  2166
inline void TLex8::Assign(const TLex8& aLex)
sl@0
  2167
/**
sl@0
  2168
Assigns a string to this object from another TLex8 object.
sl@0
  2169
sl@0
  2170
@param aLex The object to be assigned.
sl@0
  2171
*/
sl@0
  2172
	{new(this) TLex8(aLex);}
sl@0
  2173
sl@0
  2174
sl@0
  2175
sl@0
  2176
sl@0
  2177
// Class TLexMark16
sl@0
  2178
inline TLexMark16::TLexMark16()
sl@0
  2179
	: iPtr(NULL)
sl@0
  2180
/**
sl@0
  2181
Default constructor.
sl@0
  2182
*/
sl@0
  2183
	{}
sl@0
  2184
sl@0
  2185
sl@0
  2186
sl@0
  2187
sl@0
  2188
inline TLexMark16::TLexMark16(const TUint16 *aString) 
sl@0
  2189
	: iPtr(aString)
sl@0
  2190
	{}
sl@0
  2191
sl@0
  2192
sl@0
  2193
sl@0
  2194
sl@0
  2195
// Class TLex16
sl@0
  2196
inline TLex16::TLex16(const TUint16 *aString)
sl@0
  2197
/**
sl@0
  2198
Constructs the object with a pointer to a string.
sl@0
  2199
sl@0
  2200
The extraction mark and next character members are initialised to point
sl@0
  2201
to the start of the string.
sl@0
  2202
sl@0
  2203
@param aString String to be assigned.
sl@0
  2204
*/
sl@0
  2205
	{Assign(TPtrC16(aString));}
sl@0
  2206
sl@0
  2207
sl@0
  2208
sl@0
  2209
sl@0
  2210
inline TLex16::TLex16(const TDesC16 &aDes)
sl@0
  2211
/**
sl@0
  2212
Constructs the object with a descriptor.
sl@0
  2213
sl@0
  2214
The extraction mark and next character 
sl@0
  2215
members are initialised to point to the start of the string.
sl@0
  2216
sl@0
  2217
@param aDes Descriptor to be assigned by reference.
sl@0
  2218
*/
sl@0
  2219
	{Assign(aDes);}
sl@0
  2220
sl@0
  2221
sl@0
  2222
sl@0
  2223
inline TLex16& TLex16::operator=(const TUint16* aString)
sl@0
  2224
/** 
sl@0
  2225
Allows strings to be assigned to a TLex16.
sl@0
  2226
sl@0
  2227
@param aString String to be assigned to the TLex16. 
sl@0
  2228
sl@0
  2229
@return TLex16 descriptor.
sl@0
  2230
*/
sl@0
  2231
	{Assign(TPtrC16(aString));return(*this);}
sl@0
  2232
sl@0
  2233
sl@0
  2234
sl@0
  2235
sl@0
  2236
inline TLex16& TLex16::operator=(const TDesC16& aBuf)
sl@0
  2237
/**
sl@0
  2238
Allows descriptors to be assigned to a TLex16.
sl@0
  2239
sl@0
  2240
@param aBuf Descriptor to be assigned to the TLex16.
sl@0
  2241
sl@0
  2242
@return TLex8 descriptor.
sl@0
  2243
*/
sl@0
  2244
	{Assign(aBuf);return(*this);}
sl@0
  2245
sl@0
  2246
sl@0
  2247
sl@0
  2248
sl@0
  2249
inline TBool TLex16::Eos() const
sl@0
  2250
/**
sl@0
  2251
Tests whether the next character position is at the end of the string.
sl@0
  2252
sl@0
  2253
@return True if at end of string, false otherwise.
sl@0
  2254
*/
sl@0
  2255
	{return(iNext==iEnd);}
sl@0
  2256
sl@0
  2257
sl@0
  2258
sl@0
  2259
sl@0
  2260
inline void TLex16::Mark(TLexMark16& aMark) const
sl@0
  2261
/**
sl@0
  2262
Sets the supplied extraction mark to the TLex16's next character position.
sl@0
  2263
sl@0
  2264
@param aMark On return, set to the next character position.
sl@0
  2265
*/
sl@0
  2266
	{aMark.iPtr=iNext;}
sl@0
  2267
sl@0
  2268
sl@0
  2269
sl@0
  2270
sl@0
  2271
inline void TLex16::Mark()
sl@0
  2272
/**
sl@0
  2273
Sets the TLex16's next character position to its extraction mark.
sl@0
  2274
*/
sl@0
  2275
	{iMark.iPtr=iNext;}
sl@0
  2276
sl@0
  2277
sl@0
  2278
sl@0
  2279
sl@0
  2280
inline void TLex16::UnGetToMark()
sl@0
  2281
/**
sl@0
  2282
Sets the next character position to the current extraction mark position.
sl@0
  2283
sl@0
  2284
@panic USER 68, if the specified mark is before the start or beyond the end
sl@0
  2285
       of the string.
sl@0
  2286
*/
sl@0
  2287
    {UnGetToMark(iMark);}
sl@0
  2288
sl@0
  2289
sl@0
  2290
sl@0
  2291
sl@0
  2292
inline void TLex16::SkipAndMark(TInt aNumber)
sl@0
  2293
/**
sl@0
  2294
Moves the next character position a specified number of characters.
sl@0
  2295
sl@0
  2296
@param aNumber Number of characters to skip. 
sl@0
  2297
sl@0
  2298
@panic USER 68, if the skip moves the next character position either to before
sl@0
  2299
       the start or beyond the end of the string.
sl@0
  2300
*/
sl@0
  2301
    {SkipAndMark(aNumber,iMark);}
sl@0
  2302
sl@0
  2303
sl@0
  2304
sl@0
  2305
sl@0
  2306
inline void TLex16::SkipSpaceAndMark()
sl@0
  2307
/**
sl@0
  2308
Moves the next character position past any white space and copies it to the 
sl@0
  2309
TLex16's extraction mark.
sl@0
  2310
sl@0
  2311
Stops if at the end of the string.
sl@0
  2312
*/
sl@0
  2313
    {SkipSpaceAndMark(iMark);}
sl@0
  2314
sl@0
  2315
sl@0
  2316
sl@0
  2317
sl@0
  2318
inline TInt TLex16::TokenLength() const
sl@0
  2319
/**
sl@0
  2320
Gets the length of the token.
sl@0
  2321
sl@0
  2322
This is the difference between the next character 
sl@0
  2323
position and the extraction mark.
sl@0
  2324
sl@0
  2325
@return Length of the token.
sl@0
  2326
*/
sl@0
  2327
	{return(iNext-iMark.iPtr);}
sl@0
  2328
sl@0
  2329
sl@0
  2330
sl@0
  2331
sl@0
  2332
inline TInt TLex16::MarkedOffset() const
sl@0
  2333
/**
sl@0
  2334
Gets the offset of the extraction mark from the start of the string.
sl@0
  2335
sl@0
  2336
@return The offset of the extraction mark.
sl@0
  2337
*/
sl@0
  2338
    {return(iMark.iPtr-iBuf);}
sl@0
  2339
sl@0
  2340
sl@0
  2341
sl@0
  2342
sl@0
  2343
inline TInt TLex16::Val(TInt &aVal)
sl@0
  2344
/**
sl@0
  2345
Parses the string to extract a signed integer.
sl@0
  2346
sl@0
  2347
@param aVal On return, contains the extracted integer.
sl@0
  2348
sl@0
  2349
@return KErrNone if successful.
sl@0
  2350
        KErrGeneral if the next character position is initially at the end of the string
sl@0
  2351
        or no valid characters found initially.
sl@0
  2352
        KErrOverflow if there is sign overflow, i.e. converted value greater than limit.
sl@0
  2353
        If error codes KErrGeneral or KErrOverflow are returned, the object's
sl@0
  2354
        members are left unaltered.
sl@0
  2355
*/
sl@0
  2356
	{return(Val((TInt32&)aVal));}
sl@0
  2357
sl@0
  2358
sl@0
  2359
sl@0
  2360
sl@0
  2361
inline TInt TLex16::Val(TUint &aVal,TRadix aRadix)
sl@0
  2362
/**
sl@0
  2363
Parses the string to extract an unsigned integer, using the specified radix.
sl@0
  2364
sl@0
  2365
@param aVal   On return, contains the extracted integer.
sl@0
  2366
@param aRadix The radix to use when converting the number. The default radix
sl@0
  2367
              for this function overload is decimal.
sl@0
  2368
sl@0
  2369
@return KErrNone if successful.
sl@0
  2370
        KErrGeneral if the next character position is initially at the end of the string
sl@0
  2371
        or no valid characters found initially.
sl@0
  2372
        KErrOverflow if there is sign overflow, i.e. converted value greater than limit.
sl@0
  2373
        If error codes KErrGeneral or KErrOverflow are returned, the object's
sl@0
  2374
        members are left unaltered.
sl@0
  2375
*/
sl@0
  2376
	{return(Val((TUint32&)aVal,aRadix));}
sl@0
  2377
sl@0
  2378
sl@0
  2379
sl@0
  2380
sl@0
  2381
inline void TLex16::Assign(const TLex16& aLex)
sl@0
  2382
/**
sl@0
  2383
Assigns a string to this object from another TLex16 object.
sl@0
  2384
sl@0
  2385
@param aLex The object to be assigned.
sl@0
  2386
*/
sl@0
  2387
	{new(this) TLex16(aLex);}
sl@0
  2388
sl@0
  2389
sl@0
  2390
sl@0
  2391
sl@0
  2392
// Class TLocale
sl@0
  2393
inline TLocale::TLocale(TInt)
sl@0
  2394
	{}
sl@0
  2395
sl@0
  2396
inline TInt TLocale::RegionCode() const
sl@0
  2397
	{return(iRegionCode);}
sl@0
  2398
inline TInt TLocale::CountryCode() const
sl@0
  2399
/**
sl@0
  2400
Gets the code which is used to select country-specific locale data.
sl@0
  2401
sl@0
  2402
The country code is the code used as the international dialling prefix.
sl@0
  2403
This code is also used to identify a country by the dialling software.
sl@0
  2404
	
sl@0
  2405
@return The country code.
sl@0
  2406
*/
sl@0
  2407
	{return(iCountryCode);}
sl@0
  2408
sl@0
  2409
sl@0
  2410
sl@0
  2411
sl@0
  2412
inline void TLocale::SetCountryCode(TInt aCode)
sl@0
  2413
/**
sl@0
  2414
Sets the value which is used to select country-specific locale data.
sl@0
  2415
sl@0
  2416
This value can be retrieved by using TLocale::CountryCode(). The country code
sl@0
  2417
is the code used as the international dialling prefix. This code is also used
sl@0
  2418
to identify a country by the dialling software.
sl@0
  2419
	
sl@0
  2420
@param aCode The country code.
sl@0
  2421
sl@0
  2422
@see TLocale::CountryCode
sl@0
  2423
*/
sl@0
  2424
	{iCountryCode=aCode;}
sl@0
  2425
sl@0
  2426
sl@0
  2427
sl@0
  2428
sl@0
  2429
inline TTimeIntervalSeconds TLocale::UniversalTimeOffset() const
sl@0
  2430
/**
sl@0
  2431
Gets the locale's universal time offset.
sl@0
  2432
	
sl@0
  2433
@return Offset in seconds from universal time. Time zones east of universal 
sl@0
  2434
	    time have positive offsets. Time zones west of universal time have negative 
sl@0
  2435
	    offsets.
sl@0
  2436
sl@0
  2437
@deprecated Use User::UTCOffset to get the current offset inclusive of daylight
sl@0
  2438
			savings time. This function returns the same value, for compatibility.
sl@0
  2439
*/
sl@0
  2440
	{return(iUniversalTimeOffset);}
sl@0
  2441
sl@0
  2442
sl@0
  2443
sl@0
  2444
sl@0
  2445
inline TDateFormat TLocale::DateFormat() const
sl@0
  2446
/**
sl@0
  2447
Gets the date format.
sl@0
  2448
	
sl@0
  2449
@return The date format.
sl@0
  2450
*/
sl@0
  2451
	{return(iDateFormat);}
sl@0
  2452
sl@0
  2453
sl@0
  2454
sl@0
  2455
sl@0
  2456
inline void TLocale::SetDateFormat(TDateFormat aFormat)
sl@0
  2457
/**
sl@0
  2458
Sets the date format.
sl@0
  2459
	
sl@0
  2460
@param aFormat The date format to be used.
sl@0
  2461
*/
sl@0
  2462
	{iDateFormat=aFormat;}
sl@0
  2463
sl@0
  2464
sl@0
  2465
sl@0
  2466
sl@0
  2467
inline TTimeFormat TLocale::TimeFormat() const
sl@0
  2468
/**
sl@0
  2469
Gets the time format (12 or 24 hour).
sl@0
  2470
	
sl@0
  2471
@return The time format.
sl@0
  2472
*/
sl@0
  2473
	{return(iTimeFormat);}
sl@0
  2474
sl@0
  2475
sl@0
  2476
sl@0
  2477
sl@0
  2478
inline void TLocale::SetTimeFormat(TTimeFormat aFormat)
sl@0
  2479
/**
sl@0
  2480
Sets the time format (12 or 24 hour).
sl@0
  2481
	
sl@0
  2482
@param aFormat The time format.
sl@0
  2483
*/
sl@0
  2484
	{iTimeFormat=aFormat;}
sl@0
  2485
sl@0
  2486
sl@0
  2487
sl@0
  2488
sl@0
  2489
inline TLocalePos TLocale::CurrencySymbolPosition() const
sl@0
  2490
/**
sl@0
  2491
Gets the currency symbol position.
sl@0
  2492
	
sl@0
  2493
For negative currency values, this position may be
sl@0
  2494
reversed using SetNegativeCurrencySymbolOpposite().
sl@0
  2495
	
sl@0
  2496
@return The currency symbol position.
sl@0
  2497
sl@0
  2498
@see TLocale::SetNegativeCurrencySymbolOpposite
sl@0
  2499
*/
sl@0
  2500
	{return(iCurrencySymbolPosition);}
sl@0
  2501
sl@0
  2502
sl@0
  2503
sl@0
  2504
sl@0
  2505
inline void TLocale::SetCurrencySymbolPosition(TLocalePos aPos)
sl@0
  2506
/**
sl@0
  2507
Sets the currency symbol position.
sl@0
  2508
	
sl@0
  2509
@param aPos The currency symbol position.
sl@0
  2510
*/
sl@0
  2511
	{iCurrencySymbolPosition=aPos;}
sl@0
  2512
sl@0
  2513
sl@0
  2514
sl@0
  2515
sl@0
  2516
inline TBool TLocale::CurrencySpaceBetween() const
sl@0
  2517
/**
sl@0
  2518
Gets whether or not a space is inserted between the currency symbol and the 
sl@0
  2519
currency value.
sl@0
  2520
	
sl@0
  2521
For negative currency values, the space can be removed using SetNegativeLoseSpace().
sl@0
  2522
	
sl@0
  2523
@return True if a space is inserted; false if not.
sl@0
  2524
sl@0
  2525
@see TLocale::SetNegativeLoseSpace
sl@0
  2526
*/
sl@0
  2527
	{return(iCurrencySpaceBetween);}
sl@0
  2528
sl@0
  2529
sl@0
  2530
sl@0
  2531
sl@0
  2532
inline void TLocale::SetCurrencySpaceBetween(TBool aSpace)
sl@0
  2533
/**
sl@0
  2534
Sets whether a space is inserted between the currency symbol and the currency 
sl@0
  2535
amount.
sl@0
  2536
	
sl@0
  2537
@param aSpace ETrue if a space is inserted; EFalse if not.
sl@0
  2538
*/
sl@0
  2539
	{iCurrencySpaceBetween=aSpace;}
sl@0
  2540
sl@0
  2541
sl@0
  2542
sl@0
  2543
sl@0
  2544
inline TInt TLocale::CurrencyDecimalPlaces() const
sl@0
  2545
/**
sl@0
  2546
Gets the number of decimal places to which currency values are set.
sl@0
  2547
	
sl@0
  2548
@return The number of decimal places.
sl@0
  2549
*/
sl@0
  2550
	{return(iCurrencyDecimalPlaces);}
sl@0
  2551
sl@0
  2552
sl@0
  2553
sl@0
  2554
sl@0
  2555
inline void TLocale::SetCurrencyDecimalPlaces(TInt aPlaces)
sl@0
  2556
/**
sl@0
  2557
Sets the number of decimal places to which currency values should be set.
sl@0
  2558
	
sl@0
  2559
@param aPlaces The number of decimal places.
sl@0
  2560
*/
sl@0
  2561
	{iCurrencyDecimalPlaces=aPlaces;}
sl@0
  2562
sl@0
  2563
sl@0
  2564
sl@0
  2565
sl@0
  2566
inline TBool TLocale::CurrencyNegativeInBrackets() const
sl@0
  2567
/**
sl@0
  2568
@deprecated
sl@0
  2569
sl@0
  2570
Gets whether negative currency values are enclosed in brackets rather than 
sl@0
  2571
being preceded by a minus sign. 
sl@0
  2572
	
sl@0
  2573
This is deprecated, use NegativeCurrencyFormat() instead.
sl@0
  2574
	
sl@0
  2575
@return True if negative currency is enclosed in brackets and has no minus 
sl@0
  2576
        sign; false if negative currency has a minus sign and is not enclosed
sl@0
  2577
		in brackets.
sl@0
  2578
sl@0
  2579
@see TLocale::NegativeCurrencyFormat
sl@0
  2580
*/
sl@0
  2581
	{return((TBool)iNegativeCurrencyFormat);}			
sl@0
  2582
sl@0
  2583
sl@0
  2584
sl@0
  2585
sl@0
  2586
inline void TLocale::SetCurrencyNegativeInBrackets(TBool aBool)
sl@0
  2587
/** 
sl@0
  2588
@deprecated
sl@0
  2589
sl@0
  2590
Sets whether negative currency values are enclosed in brackets rather than
sl@0
  2591
being preceded by a minus sign.
sl@0
  2592
	
sl@0
  2593
This is deprecated, use SetNegativeCurrencyFormat() instead.
sl@0
  2594
	
sl@0
  2595
@param aBool ETrue, if a negative currency value must be enclosed in brackets 
sl@0
  2596
	         without a minus sign; EFalse, if a negative currency value is
sl@0
  2597
			 preceded by a minus sign without any enclosing brackets.
sl@0
  2598
sl@0
  2599
@see TLocale::SetNegativeCurrencyFormat
sl@0
  2600
*/
sl@0
  2601
	{iNegativeCurrencyFormat=(aBool)?EInBrackets:ELeadingMinusSign;}
sl@0
  2602
sl@0
  2603
sl@0
  2604
sl@0
  2605
sl@0
  2606
inline TBool TLocale::CurrencyTriadsAllowed() const
sl@0
  2607
/**
sl@0
  2608
Gets whether triads are allowed in currency values. Triads are groups of 
sl@0
  2609
three digits separated by the thousands separator.
sl@0
  2610
	
sl@0
  2611
@return True if triads are allowed; false if not.
sl@0
  2612
*/
sl@0
  2613
	{return(iCurrencyTriadsAllowed);}
sl@0
  2614
sl@0
  2615
sl@0
  2616
sl@0
  2617
sl@0
  2618
inline void TLocale::SetCurrencyTriadsAllowed(TBool aBool)
sl@0
  2619
/**
sl@0
  2620
Sets whether triads are allowed in currency values.
sl@0
  2621
	
sl@0
  2622
@param aBool ETrue if triads are allowed; EFalse if triads not allowed.
sl@0
  2623
*/
sl@0
  2624
	{iCurrencyTriadsAllowed=aBool;}
sl@0
  2625
sl@0
  2626
sl@0
  2627
sl@0
  2628
sl@0
  2629
inline TChar TLocale::ThousandsSeparator() const
sl@0
  2630
/**
sl@0
  2631
Gets the character used to separate groups of three digits to the left of 
sl@0
  2632
the decimal separator.
sl@0
  2633
	
sl@0
  2634
A thousands separator character is only displayed in currency values if currency 
sl@0
  2635
triads are allowed.
sl@0
  2636
	
sl@0
  2637
@return The character used as the thousands separator.
sl@0
  2638
*/
sl@0
  2639
	{return(iThousandsSeparator);}
sl@0
  2640
sl@0
  2641
sl@0
  2642
sl@0
  2643
sl@0
  2644
inline void TLocale::SetThousandsSeparator(const TChar& aChar)
sl@0
  2645
/**
sl@0
  2646
Sets the character to be used to separate groups of three digits to the left 
sl@0
  2647
of the decimal separator.
sl@0
  2648
	
sl@0
  2649
A thousands separator character is only displayed in currency values if currency 
sl@0
  2650
triads are allowed.
sl@0
  2651
	
sl@0
  2652
@param aChar The character to be used as the thousands separator.
sl@0
  2653
*/
sl@0
  2654
	{iThousandsSeparator=aChar;}
sl@0
  2655
sl@0
  2656
sl@0
  2657
sl@0
  2658
sl@0
  2659
inline TChar TLocale::DecimalSeparator() const
sl@0
  2660
/**
sl@0
  2661
Gets the character used to separate a whole number from its fractional part.
sl@0
  2662
	
sl@0
  2663
@return The character used as the decimal separator.
sl@0
  2664
*/
sl@0
  2665
	{return(iDecimalSeparator);}
sl@0
  2666
sl@0
  2667
sl@0
  2668
sl@0
  2669
sl@0
  2670
inline void TLocale::SetDecimalSeparator(const TChar& aChar)
sl@0
  2671
/**
sl@0
  2672
Sets the character to be used to separate a whole number from its fractional 
sl@0
  2673
part.
sl@0
  2674
	
sl@0
  2675
@param aChar The character to be used as the decimal separator.
sl@0
  2676
*/
sl@0
  2677
	{iDecimalSeparator=aChar;}
sl@0
  2678
sl@0
  2679
sl@0
  2680
sl@0
  2681
sl@0
  2682
inline TChar TLocale::DateSeparator(TInt aIndex) const
sl@0
  2683
/**
sl@0
  2684
Gets one of the four characters used to separate the day, month and year 
sl@0
  2685
components of the date.
sl@0
  2686
	
sl@0
  2687
If the four separators are represented by S0, S1, S2 and S3 and the three 
sl@0
  2688
date components are represented by XX, YY and ZZ, then the separators are 
sl@0
  2689
located: S0 XX S1 YY S2 ZZ S3.
sl@0
  2690
	
sl@0
  2691
@param aIndex An index indicating which of the four separators is being accessed. 
sl@0
  2692
              This must be a value between zero and three inclusive.
sl@0
  2693
sl@0
  2694
@return A date separator character as determined by the value of aIndex.
sl@0
  2695
*/
sl@0
  2696
	{return(iDateSeparator[aIndex]);}
sl@0
  2697
sl@0
  2698
sl@0
  2699
sl@0
  2700
sl@0
  2701
inline void TLocale::SetDateSeparator(const TChar& aChar,TInt aIndex)
sl@0
  2702
/**
sl@0
  2703
Sets one of the four characters used to separate the day, month and year
sl@0
  2704
components of the date.
sl@0
  2705
	
sl@0
  2706
If the four separators are represented by S0, S1, S2 and S3 and the three 
sl@0
  2707
date components are represented by XX, YY and ZZ, then the separators are 
sl@0
  2708
located: S0 XX S1 YY S2 ZZ S3.
sl@0
  2709
	
sl@0
  2710
@param aChar  A date separator character to be used.
sl@0
  2711
@param aIndex An index indicating which of the four separators is being accessed. 
sl@0
  2712
	          This must be a value between zero and three inclusive.
sl@0
  2713
*/
sl@0
  2714
	{__ASSERT_DEBUG(aIndex>=0 && aIndex<KMaxDateSeparators,User::Invariant());
sl@0
  2715
	iDateSeparator[aIndex]=aChar;}
sl@0
  2716
sl@0
  2717
sl@0
  2718
sl@0
  2719
sl@0
  2720
inline TChar TLocale::TimeSeparator(TInt aIndex) const
sl@0
  2721
/**
sl@0
  2722
Gets one of the four characters used to separate the hour, second and minute 
sl@0
  2723
components of the time.
sl@0
  2724
	
sl@0
  2725
If the four separators are represented by S0, S1, S2 and S3 and the three 
sl@0
  2726
time components are represented by XX, YY and ZZ, then the separators are 
sl@0
  2727
located: S0 XX S1 YY S2 ZZ S3.
sl@0
  2728
	
sl@0
  2729
@param aIndex An index indicating which of the four separators is being
sl@0
  2730
              accessed. This must be a value between zero and three inclusive.
sl@0
  2731
sl@0
  2732
@return A time separator character as determined by the value of aIndex.
sl@0
  2733
*/
sl@0
  2734
sl@0
  2735
	{return(iTimeSeparator[aIndex]);}
sl@0
  2736
sl@0
  2737
sl@0
  2738
sl@0
  2739
sl@0
  2740
inline void TLocale::SetTimeSeparator(const TChar& aChar,TInt aIndex)
sl@0
  2741
/**
sl@0
  2742
Sets one of the four characters used to separate the hour, minute and second 
sl@0
  2743
components of the date.
sl@0
  2744
	
sl@0
  2745
If the four separators are represented by S0, S1, S2 and S3 and the three 
sl@0
  2746
time components are represented by XX, YY and ZZ, then the separators are 
sl@0
  2747
located: S0 XX S1 YY S2 ZZ S3.
sl@0
  2748
	
sl@0
  2749
@param aChar  A time separator character to be used.
sl@0
  2750
@param aIndex An index indicating which of the four separators is being accessed. 
sl@0
  2751
	          This must be a value between zero and three inclusive.
sl@0
  2752
*/
sl@0
  2753
	{__ASSERT_DEBUG(aIndex>=0 && aIndex<KMaxTimeSeparators,User::Invariant());
sl@0
  2754
	iTimeSeparator[aIndex]=aChar;}
sl@0
  2755
sl@0
  2756
sl@0
  2757
sl@0
  2758
sl@0
  2759
inline TLocalePos TLocale::AmPmSymbolPosition() const
sl@0
  2760
/**
sl@0
  2761
Gets the am/pm text position (before or after the time value).
sl@0
  2762
sl@0
  2763
@return The am/pm text position (0 before, 1 after).
sl@0
  2764
*/
sl@0
  2765
	{return(iAmPmSymbolPosition);}
sl@0
  2766
sl@0
  2767
sl@0
  2768
sl@0
  2769
sl@0
  2770
inline void TLocale::SetAmPmSymbolPosition(TLocalePos aPos)
sl@0
  2771
/**
sl@0
  2772
Sets the am/pm text position (before or after the time value).
sl@0
  2773
	
sl@0
  2774
@param aSpace The am/pm text position (0 before, 1 after).
sl@0
  2775
*/
sl@0
  2776
	{iAmPmSymbolPosition=aPos;}
sl@0
  2777
sl@0
  2778
sl@0
  2779
sl@0
  2780
sl@0
  2781
inline TBool TLocale::AmPmSpaceBetween() const
sl@0
  2782
/**
sl@0
  2783
Tests whether or not a space is inserted between the time and the preceding 
sl@0
  2784
or trailing am/pm text.
sl@0
  2785
	
sl@0
  2786
@return True if a space is inserted between the time and am/pm text; false 
sl@0
  2787
        if not.
sl@0
  2788
*/
sl@0
  2789
	{return(iAmPmSpaceBetween);}
sl@0
  2790
sl@0
  2791
sl@0
  2792
sl@0
  2793
sl@0
  2794
inline void TLocale::SetAmPmSpaceBetween(TBool aSpace)
sl@0
  2795
/**
sl@0
  2796
Sets whether a space is inserted between the time and the preceding or trailing 
sl@0
  2797
am/pm text.
sl@0
  2798
	
sl@0
  2799
@param aPos ETrue if a space is inserted between the time and am/pm text; 
sl@0
  2800
            EFalse otherwise.
sl@0
  2801
*/
sl@0
  2802
	{iAmPmSpaceBetween=aSpace;}
sl@0
  2803
sl@0
  2804
sl@0
  2805
sl@0
  2806
sl@0
  2807
inline TUint TLocale::DaylightSaving() const
sl@0
  2808
/**
sl@0
  2809
Gets the zones in which daylight saving is in effect.
sl@0
  2810
	
sl@0
  2811
If daylight saving is in effect, one hour is added to the time.
sl@0
  2812
	
sl@0
  2813
Use TLocale::QueryHomeHasDaylightSavingOn() to find out whether daylight saving 
sl@0
  2814
is in effect for the home city. This is because the daylight saving setting 
sl@0
  2815
for the home city may differ from that of the zone in which home is located.
sl@0
  2816
	
sl@0
  2817
@return A bit mask in which the three least significant bits are defined, 
sl@0
  2818
        indicating which of the three daylight saving zones are adjusted for
sl@0
  2819
		daylight saving. These bits represent:
sl@0
  2820
		Northern (non-European countries in the northern hemisphere),
sl@0
  2821
		Southern (southern hemisphere),
sl@0
  2822
		and European.
sl@0
  2823
sl@0
  2824
@see TLocale::QueryHomeHasDaylightSavingOn
sl@0
  2825
@see TDaylightSavingZone
sl@0
  2826
sl@0
  2827
@deprecated Use the timezone server to retrieve information on timezones and DST.
sl@0
  2828
			This method will always indicate that DST is inactive, in order to
sl@0
  2829
			preserve compatibility.
sl@0
  2830
*/
sl@0
  2831
	{return(iDaylightSaving);} 
sl@0
  2832
sl@0
  2833
sl@0
  2834
sl@0
  2835
sl@0
  2836
inline TBool TLocale::QueryHomeHasDaylightSavingOn() const
sl@0
  2837
/**
sl@0
  2838
Tests whether or not daylight saving is set for the home city.
sl@0
  2839
	
sl@0
  2840
@return True if home daylight saving is set; false if not.
sl@0
  2841
sl@0
  2842
@deprecated Use the timezone server to retrieve information on timezones and DST.
sl@0
  2843
			This method will always indicate that DST is inactive, in order to
sl@0
  2844
			preserve compatibility.
sl@0
  2845
*/
sl@0
  2846
	{return((iHomeDaylightSavingZone|EDstHome) & iDaylightSaving);}
sl@0
  2847
sl@0
  2848
sl@0
  2849
sl@0
  2850
sl@0
  2851
inline TDaylightSavingZone TLocale::HomeDaylightSavingZone() const
sl@0
  2852
/**
sl@0
  2853
Gets the daylight saving zone in which the home city is located.
sl@0
  2854
	
sl@0
  2855
@return The daylight saving zone in which the home city is located.
sl@0
  2856
sl@0
  2857
@deprecated Use the timezone server to retrieve information on timezones and DST.
sl@0
  2858
*/
sl@0
  2859
	{return(iHomeDaylightSavingZone);}
sl@0
  2860
sl@0
  2861
sl@0
  2862
sl@0
  2863
sl@0
  2864
inline TUint TLocale::WorkDays() const
sl@0
  2865
/**
sl@0
  2866
Gets a bit mask representing the days of the week which are considered as 
sl@0
  2867
working days.
sl@0
  2868
	
sl@0
  2869
@return A bit mask of seven bits indicating (by being set) which days are 
sl@0
  2870
        workdays. The least significant bit corresponds to Monday, the next bit to 
sl@0
  2871
	    Tuesday and so on.
sl@0
  2872
*/
sl@0
  2873
	{return(iWorkDays);}
sl@0
  2874
sl@0
  2875
sl@0
  2876
sl@0
  2877
sl@0
  2878
inline void TLocale::SetWorkDays(TUint aMask)
sl@0
  2879
/**
sl@0
  2880
Sets the days of the week which are considered as working days.
sl@0
  2881
	
sl@0
  2882
@param aMask A bit mask of seven bits indicating (by being set) which days 
sl@0
  2883
             are workdays. The least significant bit corresponds to Monday, the
sl@0
  2884
			 next bit is Tuesday and so on.
sl@0
  2885
*/
sl@0
  2886
	{iWorkDays=aMask;}
sl@0
  2887
sl@0
  2888
sl@0
  2889
sl@0
  2890
sl@0
  2891
inline TDay TLocale::StartOfWeek() const
sl@0
  2892
/**
sl@0
  2893
Gets the day which is considered the first day of the week.
sl@0
  2894
	
sl@0
  2895
@return The first day of the week.
sl@0
  2896
*/
sl@0
  2897
	{return(iStartOfWeek);}
sl@0
  2898
sl@0
  2899
sl@0
  2900
sl@0
  2901
sl@0
  2902
inline void TLocale::SetStartOfWeek(TDay aDay)
sl@0
  2903
/**
sl@0
  2904
Sets the day which is considered to be the first day of the week.
sl@0
  2905
	
sl@0
  2906
@param aDay The first day of the week.
sl@0
  2907
*/
sl@0
  2908
	{iStartOfWeek=aDay;}
sl@0
  2909
sl@0
  2910
sl@0
  2911
sl@0
  2912
sl@0
  2913
inline TClockFormat TLocale::ClockFormat() const
sl@0
  2914
/**
sl@0
  2915
Gets the clock display format.
sl@0
  2916
	
sl@0
  2917
@return The clock display format.
sl@0
  2918
*/
sl@0
  2919
	{return(iClockFormat);}
sl@0
  2920
sl@0
  2921
sl@0
  2922
sl@0
  2923
sl@0
  2924
inline void TLocale::SetClockFormat(TClockFormat aFormat)
sl@0
  2925
/**
sl@0
  2926
Sets the clock display format.
sl@0
  2927
	
sl@0
  2928
@param aFormat The clock display format.
sl@0
  2929
*/
sl@0
  2930
	{iClockFormat=aFormat;}
sl@0
  2931
sl@0
  2932
sl@0
  2933
sl@0
  2934
sl@0
  2935
inline TUnitsFormat TLocale::UnitsGeneral() const
sl@0
  2936
/**
sl@0
  2937
Gets the general units of measurement.
sl@0
  2938
sl@0
  2939
This function should be used when both short and long distances use the
sl@0
  2940
same units of measurement.
sl@0
  2941
	
sl@0
  2942
@return General units of measurement.
sl@0
  2943
*/
sl@0
  2944
	{return(iUnitsGeneral);}
sl@0
  2945
sl@0
  2946
sl@0
  2947
sl@0
  2948
sl@0
  2949
inline void TLocale::SetUnitsGeneral(TUnitsFormat aFormat)
sl@0
  2950
/**
sl@0
  2951
Sets the general units of measurement.
sl@0
  2952
This function should be used when both short and long distances use the
sl@0
  2953
same units of measurement.
sl@0
  2954
	
sl@0
  2955
@param aFormat General units of measurement.
sl@0
  2956
*/
sl@0
  2957
	{iUnitsGeneral=aFormat;}
sl@0
  2958
sl@0
  2959
sl@0
  2960
sl@0
  2961
sl@0
  2962
inline TUnitsFormat TLocale::UnitsDistanceShort() const
sl@0
  2963
/**
sl@0
  2964
Gets the units of measurement for short distances.
sl@0
  2965
sl@0
  2966
Short distances are those which would normally be represented by either
sl@0
  2967
metres and centimetres or feet and inches.
sl@0
  2968
	
sl@0
  2969
@return Units of measurement for short distances.
sl@0
  2970
*/
sl@0
  2971
	{return(iUnitsDistanceShort);}
sl@0
  2972
sl@0
  2973
sl@0
  2974
sl@0
  2975
sl@0
  2976
inline void TLocale::SetUnitsDistanceShort(TUnitsFormat aFormat)
sl@0
  2977
/**
sl@0
  2978
Sets the units of measurement for short distances.
sl@0
  2979
sl@0
  2980
Short distances are those which would normally be represented by either
sl@0
  2981
metres and centimetres or feet and inches.
sl@0
  2982
	
sl@0
  2983
@param aFormat Units of measurement for short distances.
sl@0
  2984
*/
sl@0
  2985
	{iUnitsDistanceShort=aFormat;}
sl@0
  2986
sl@0
  2987
sl@0
  2988
sl@0
  2989
sl@0
  2990
inline TUnitsFormat TLocale::UnitsDistanceLong() const
sl@0
  2991
/**
sl@0
  2992
Gets the units of measurement for long distances.
sl@0
  2993
sl@0
  2994
Long distances are those which would normally be represented by either
sl@0
  2995
miles or kilometres.
sl@0
  2996
	
sl@0
  2997
@return Units of measurement for long distances.
sl@0
  2998
*/
sl@0
  2999
	{return(iUnitsDistanceLong);}
sl@0
  3000
sl@0
  3001
sl@0
  3002
sl@0
  3003
sl@0
  3004
inline void TLocale::SetUnitsDistanceLong(TUnitsFormat aFormat)
sl@0
  3005
/**
sl@0
  3006
Sets the units of measurement for long distances.
sl@0
  3007
sl@0
  3008
Long distances are those which would normally be represented by either
sl@0
  3009
miles or kilometres.
sl@0
  3010
	
sl@0
  3011
@param aFormat Units of measurement for long distances.
sl@0
  3012
*/
sl@0
  3013
	{iUnitsDistanceLong=aFormat;}
sl@0
  3014
sl@0
  3015
sl@0
  3016
sl@0
  3017
sl@0
  3018
inline void TLocale::SetNegativeCurrencyFormat(TLocale::TNegativeCurrencyFormat aNegativeCurrencyFormat)
sl@0
  3019
/**
sl@0
  3020
Sets the negative currency format.
sl@0
  3021
	
sl@0
  3022
@param aNegativeCurrencyFormat How negative currency values are formatted.
sl@0
  3023
*/
sl@0
  3024
	{iNegativeCurrencyFormat = aNegativeCurrencyFormat;}
sl@0
  3025
sl@0
  3026
sl@0
  3027
sl@0
  3028
sl@0
  3029
inline TLocale::TNegativeCurrencyFormat TLocale::NegativeCurrencyFormat() const
sl@0
  3030
/**
sl@0
  3031
Gets the negative currency format.
sl@0
  3032
	
sl@0
  3033
@return How negative currency values are formatted.
sl@0
  3034
*/
sl@0
  3035
	{return(iNegativeCurrencyFormat);}
sl@0
  3036
sl@0
  3037
sl@0
  3038
sl@0
  3039
sl@0
  3040
inline TBool TLocale::NegativeLoseSpace() const
sl@0
  3041
/**
sl@0
  3042
Gets whether negative currency values lose the space between the currency 
sl@0
  3043
symbol and the value.
sl@0
  3044
	
sl@0
  3045
@return True, if negative currency values lose the space between the value 
sl@0
  3046
	    and the symbol; false, if not.
sl@0
  3047
*/
sl@0
  3048
	{ 
sl@0
  3049
	if((iExtraNegativeCurrencyFormatFlags|EFlagNegativeLoseSpace)==iExtraNegativeCurrencyFormatFlags)
sl@0
  3050
		return ETrue;
sl@0
  3051
	else
sl@0
  3052
		return EFalse;
sl@0
  3053
	}
sl@0
  3054
sl@0
  3055
sl@0
  3056
sl@0
  3057
sl@0
  3058
inline void TLocale::SetNegativeLoseSpace(TBool aBool)
sl@0
  3059
/**
sl@0
  3060
Sets whether negative currency values lose the space between the currency symbol 
sl@0
  3061
and the value.
sl@0
  3062
	
sl@0
  3063
@param aBool ETrue to set a flag which indicates that negative currency values 
sl@0
  3064
	         should lose the space between the value and the symbol. EFalse to unset it.
sl@0
  3065
*/
sl@0
  3066
	{
sl@0
  3067
	if(aBool)
sl@0
  3068
		iExtraNegativeCurrencyFormatFlags |= EFlagNegativeLoseSpace;
sl@0
  3069
	else
sl@0
  3070
		iExtraNegativeCurrencyFormatFlags &= ~EFlagNegativeLoseSpace;
sl@0
  3071
	}
sl@0
  3072
sl@0
  3073
sl@0
  3074
sl@0
  3075
sl@0
  3076
inline TBool TLocale::NegativeCurrencySymbolOpposite() const
sl@0
  3077
/**
sl@0
  3078
Gets whether in negative currency values, the position of the currency symbol 
sl@0
  3079
is set to be the opposite of the position used for non-negative values (before 
sl@0
  3080
or after the value, as set by SetCurrencySymbolPosition()).
sl@0
  3081
	
sl@0
  3082
@return True, if the currency symbol position for negative currency values 
sl@0
  3083
	    is the opposite of the position set by SetCurrencySymbolPosition();
sl@0
  3084
		false, otherwise.
sl@0
  3085
sl@0
  3086
@see TLocale::SetCurrencySymbolPosition
sl@0
  3087
*/
sl@0
  3088
	{
sl@0
  3089
	if((iExtraNegativeCurrencyFormatFlags|EFlagNegativeCurrencySymbolOpposite)==iExtraNegativeCurrencyFormatFlags)
sl@0
  3090
		return ETrue;
sl@0
  3091
	else
sl@0
  3092
		return EFalse;
sl@0
  3093
	}
sl@0
  3094
sl@0
  3095
sl@0
  3096
sl@0
  3097
sl@0
  3098
inline void TLocale::SetNegativeCurrencySymbolOpposite(TBool aBool)
sl@0
  3099
/**
sl@0
  3100
Sets whether the position of the currency symbol for negative currency values 
sl@0
  3101
should be the opposite of the position used for non-negative values (before 
sl@0
  3102
or after the value, as set by SetCurrencySymbolPosition()).
sl@0
  3103
	
sl@0
  3104
@param aBool ETrue to set the position of the currency symbol in negative 
sl@0
  3105
             currency values to be the opposite of the position as set
sl@0
  3106
			 using SetCurrencySymbolPosition(). EFalse to leave the
sl@0
  3107
			 position unchanged.
sl@0
  3108
sl@0
  3109
@see TLocale::SetCurrencySymbolPosition
sl@0
  3110
*/
sl@0
  3111
	{
sl@0
  3112
	if (aBool)
sl@0
  3113
		iExtraNegativeCurrencyFormatFlags |= EFlagNegativeCurrencySymbolOpposite;
sl@0
  3114
	else
sl@0
  3115
		iExtraNegativeCurrencyFormatFlags &= ~EFlagNegativeCurrencySymbolOpposite;
sl@0
  3116
	}
sl@0
  3117
sl@0
  3118
sl@0
  3119
sl@0
  3120
sl@0
  3121
inline TLanguage TLocale::LanguageDowngrade(TInt aIndex) const
sl@0
  3122
/**
sl@0
  3123
Gets the language that is stored at the specified index into the customisable 
sl@0
  3124
part of the language downgrade path.
sl@0
  3125
	
sl@0
  3126
The second, third and fourth languages in the language downgrade path can 
sl@0
  3127
be customised. These can be enquired using this function. The first language 
sl@0
  3128
in the path is always the language of the current locale, as returned by User::Language(). 
sl@0
  3129
	
sl@0
  3130
The languages in the downgrade path are used in turn by the BaflUtils::NearestLanguageFile() 
sl@0
  3131
function to find the best matching language-specific version of a language-neutral 
sl@0
  3132
filename.
sl@0
  3133
	
sl@0
  3134
The full language downgrade path can be retrieved using BaflUtils::GetDowngradePath().
sl@0
  3135
	
sl@0
  3136
@param aIndex An index into the customisable part of the language downgrade 
sl@0
  3137
              path. Between zero and two inclusive.
sl@0
  3138
sl@0
  3139
@return The language at the specified index.
sl@0
  3140
sl@0
  3141
@see BaflUtils::NearestLanguageFile
sl@0
  3142
@see BaflUtils::GetDowngradePath
sl@0
  3143
*/
sl@0
  3144
	{
sl@0
  3145
	__ASSERT_DEBUG(0 <= aIndex && aIndex < 3, User::Invariant());
sl@0
  3146
	return static_cast<TLanguage>(iLanguageDowngrade[aIndex]);
sl@0
  3147
	}
sl@0
  3148
sl@0
  3149
sl@0
  3150
sl@0
  3151
sl@0
  3152
inline void TLocale::SetLanguageDowngrade(TInt aIndex, TLanguage aLanguage)
sl@0
  3153
/**
sl@0
  3154
Sets a language in the customisable part of the language downgrade path.
sl@0
  3155
	
sl@0
  3156
@param aIndex    An index into the customisable part of the path at which to 
sl@0
  3157
	             add the language, a value between zero and two.
sl@0
  3158
@param aLanguage The language to add. ELangNone is considered to be the last 
sl@0
  3159
	             language in the path, no more will be searched, so can be used
sl@0
  3160
				 to specify that no language downgrade is required.
sl@0
  3161
sl@0
  3162
@see BaflUtils::NearestLanguageFile
sl@0
  3163
@see BaflUtils::GetDowngradePath
sl@0
  3164
*/
sl@0
  3165
	{
sl@0
  3166
	__ASSERT_DEBUG(0 <= aIndex && aIndex < 3, User::Invariant());
sl@0
  3167
	iLanguageDowngrade[aIndex] = static_cast<TUint16>(aLanguage);
sl@0
  3168
	}
sl@0
  3169
sl@0
  3170
sl@0
  3171
sl@0
  3172
sl@0
  3173
/**
sl@0
  3174
Gets the number mode stored in the locale.
sl@0
  3175
sl@0
  3176
@return The number mode for the locale.
sl@0
  3177
*/
sl@0
  3178
inline TDigitType TLocale::DigitType() const
sl@0
  3179
	{ return iDigitType; }
sl@0
  3180
sl@0
  3181
sl@0
  3182
sl@0
  3183
sl@0
  3184
/**
sl@0
  3185
Sets the number mode for the locale. 
sl@0
  3186
sl@0
  3187
@param aDigitType The number mode to be set.
sl@0
  3188
*/
sl@0
  3189
inline void TLocale::SetDigitType(TDigitType aDigitType)
sl@0
  3190
	{ iDigitType=aDigitType; }
sl@0
  3191
sl@0
  3192
sl@0
  3193
sl@0
  3194
sl@0
  3195
/**
sl@0
  3196
Sets the device time state.
sl@0
  3197
sl@0
  3198
@param aState The device time state. 
sl@0
  3199
sl@0
  3200
@deprecated Use the timezone server to coordinate automatic time adjustment.
sl@0
  3201
*/
sl@0
  3202
inline void TLocale::SetDeviceTime(TDeviceTimeState aState)
sl@0
  3203
   	{
sl@0
  3204
   	iDeviceTimeState=aState;
sl@0
  3205
   	}
sl@0
  3206
   
sl@0
  3207
sl@0
  3208
/**
sl@0
  3209
Get the pointer to the TLocale object contained in this extended locale.
sl@0
  3210
sl@0
  3211
@return Pointer to the TLocale object. 
sl@0
  3212
*/
sl@0
  3213
inline TLocale*	TExtendedLocale::GetLocale()
sl@0
  3214
	{ return &iLocale; }
sl@0
  3215
sl@0
  3216
sl@0
  3217
/**
sl@0
  3218
Gets the device time state.
sl@0
  3219
sl@0
  3220
@return The device time state.
sl@0
  3221
sl@0
  3222
@deprecated Use the timezone server to coordinate automatic time adjustment.
sl@0
  3223
*/
sl@0
  3224
inline TLocale::TDeviceTimeState TLocale::DeviceTime() const
sl@0
  3225
   	{
sl@0
  3226
   	return iDeviceTimeState;
sl@0
  3227
   	}
sl@0
  3228
sl@0
  3229
sl@0
  3230
// Class TFindSemaphore
sl@0
  3231
inline TFindSemaphore::TFindSemaphore()
sl@0
  3232
    : TFindHandleBase()
sl@0
  3233
/**
sl@0
  3234
Constructs the object with a default match pattern.
sl@0
  3235
sl@0
  3236
The default match pattern, as implemented by the base class, is the single 
sl@0
  3237
character "*".
sl@0
  3238
sl@0
  3239
A new match pattern can be set after construction by calling the Find() member 
sl@0
  3240
function of the TFindHandleBase base class.
sl@0
  3241
sl@0
  3242
@see TFindHandleBase::Find
sl@0
  3243
*/
sl@0
  3244
    {}
sl@0
  3245
sl@0
  3246
sl@0
  3247
sl@0
  3248
sl@0
  3249
inline TFindSemaphore::TFindSemaphore(const TDesC &aMatch)
sl@0
  3250
    : TFindHandleBase(aMatch)
sl@0
  3251
/**
sl@0
  3252
Constructs this object with the specified match pattern.
sl@0
  3253
sl@0
  3254
A new match pattern can be set after construction by
sl@0
  3255
calling TFindHandleBase::Find().
sl@0
  3256
sl@0
  3257
Note that after construction, the object contains a copy of the supplied
sl@0
  3258
match pattern; the source descriptor can, therefore, be safely discarded.
sl@0
  3259
sl@0
  3260
@param aMatch A reference to the descriptor containing the match pattern. 
sl@0
  3261
sl@0
  3262
@see TFindHandleBase::Find
sl@0
  3263
*/
sl@0
  3264
    {}
sl@0
  3265
sl@0
  3266
sl@0
  3267
sl@0
  3268
sl@0
  3269
// Class TFindMutex
sl@0
  3270
inline TFindMutex::TFindMutex()
sl@0
  3271
    : TFindHandleBase()
sl@0
  3272
/**
sl@0
  3273
Constructs this object with a default match pattern.
sl@0
  3274
sl@0
  3275
The default match pattern, as implemented by the base class, is the single 
sl@0
  3276
character "*".
sl@0
  3277
sl@0
  3278
A new match pattern can be set after construction by calling the Find() member 
sl@0
  3279
function of the TFindHandleBase base class.
sl@0
  3280
sl@0
  3281
@see TFindHandleBase::Find
sl@0
  3282
*/
sl@0
  3283
    {}
sl@0
  3284
sl@0
  3285
sl@0
  3286
sl@0
  3287
sl@0
  3288
inline TFindMutex::TFindMutex(const TDesC &aMatch)
sl@0
  3289
    : TFindHandleBase(aMatch)
sl@0
  3290
/**
sl@0
  3291
Constructs this object with the specified match pattern.
sl@0
  3292
sl@0
  3293
A new match pattern can be set after construction by calling the Find() member 
sl@0
  3294
function of the TFindHandleBase base class.
sl@0
  3295
sl@0
  3296
After construction, the object contains a copy of the supplied match pattern; 
sl@0
  3297
the source descriptor can, therefore, be safely discarded.
sl@0
  3298
sl@0
  3299
@param aMatch The match pattern.
sl@0
  3300
sl@0
  3301
@see TFindHandleBase::Find
sl@0
  3302
*/
sl@0
  3303
    {}
sl@0
  3304
sl@0
  3305
sl@0
  3306
sl@0
  3307
sl@0
  3308
// Class TFindChunk
sl@0
  3309
inline TFindChunk::TFindChunk()
sl@0
  3310
    : TFindHandleBase()
sl@0
  3311
/**
sl@0
  3312
Constructs this object with a default match pattern.
sl@0
  3313
sl@0
  3314
The default match pattern, as implemented by the base class, is
sl@0
  3315
the single character "*".
sl@0
  3316
sl@0
  3317
A new match pattern can be set after construction by
sl@0
  3318
calling TFindHandleBase::Find().
sl@0
  3319
sl@0
  3320
@see TFindHandleBase
sl@0
  3321
*/
sl@0
  3322
    {}
sl@0
  3323
sl@0
  3324
sl@0
  3325
sl@0
  3326
sl@0
  3327
inline TFindChunk::TFindChunk(const TDesC &aMatch)
sl@0
  3328
    : TFindHandleBase(aMatch)
sl@0
  3329
/**
sl@0
  3330
Constructs the object with the specified match pattern.
sl@0
  3331
sl@0
  3332
A new match pattern can be set after construction by
sl@0
  3333
calling TFindHandleBase::Find().
sl@0
  3334
sl@0
  3335
@param aMatch The match pattern.
sl@0
  3336
sl@0
  3337
@see TFindHandleBase
sl@0
  3338
*/
sl@0
  3339
    {}
sl@0
  3340
sl@0
  3341
sl@0
  3342
sl@0
  3343
sl@0
  3344
// Class TFindThread
sl@0
  3345
inline TFindThread::TFindThread()
sl@0
  3346
    : TFindHandleBase()
sl@0
  3347
/**
sl@0
  3348
Constructs this object with a default match pattern.
sl@0
  3349
sl@0
  3350
The default match pattern, as implemented by the base class,
sl@0
  3351
is the single character *.
sl@0
  3352
sl@0
  3353
A new match pattern can be set after construction
sl@0
  3354
by calling TFindHandleBase::Find().
sl@0
  3355
sl@0
  3356
@see TFindHandleBase::Find
sl@0
  3357
*/
sl@0
  3358
    {}
sl@0
  3359
sl@0
  3360
sl@0
  3361
sl@0
  3362
sl@0
  3363
inline TFindThread::TFindThread(const TDesC &aMatch)
sl@0
  3364
    : TFindHandleBase(aMatch)
sl@0
  3365
/**
sl@0
  3366
Constructs this object with the specified match pattern.
sl@0
  3367
sl@0
  3368
A new match pattern can be set after construction
sl@0
  3369
by calling the TFindHandleBase::Find().
sl@0
  3370
sl@0
  3371
@see TFindHandleBase::Find
sl@0
  3372
*/
sl@0
  3373
    {}
sl@0
  3374
sl@0
  3375
sl@0
  3376
sl@0
  3377
sl@0
  3378
// Class TFindProcess
sl@0
  3379
inline TFindProcess::TFindProcess()
sl@0
  3380
    : TFindHandleBase()
sl@0
  3381
/**
sl@0
  3382
Constructs this object with a default match pattern.
sl@0
  3383
sl@0
  3384
The default match pattern, as implemented by the base class,
sl@0
  3385
is the single character *.
sl@0
  3386
sl@0
  3387
A new match pattern can be set after construction
sl@0
  3388
by calling TFindHandleBase::Find().
sl@0
  3389
sl@0
  3390
@see TFindHandleBase::Find
sl@0
  3391
*/
sl@0
  3392
    {}
sl@0
  3393
sl@0
  3394
sl@0
  3395
sl@0
  3396
sl@0
  3397
inline TFindProcess::TFindProcess(const TDesC &aMatch)
sl@0
  3398
    : TFindHandleBase(aMatch)
sl@0
  3399
/**
sl@0
  3400
Constructs this object with the specified match pattern.
sl@0
  3401
sl@0
  3402
A new match pattern can be set after construction
sl@0
  3403
by calling the TFindHandleBase::Find().
sl@0
  3404
sl@0
  3405
@see TFindHandleBase::Find
sl@0
  3406
*/
sl@0
  3407
    {}
sl@0
  3408
sl@0
  3409
sl@0
  3410
sl@0
  3411
sl@0
  3412
// Class TFindLogicalDevice
sl@0
  3413
/**
sl@0
  3414
Constructs the LDD factory object with a default match pattern.
sl@0
  3415
sl@0
  3416
The default match pattern, as implemented by the base class, is the single 
sl@0
  3417
character "*".
sl@0
  3418
sl@0
  3419
A new match pattern can be set after construction by calling the Find() member 
sl@0
  3420
function of the TFindHandleBase base class.
sl@0
  3421
sl@0
  3422
@see TFindHandleBase::Find
sl@0
  3423
*/
sl@0
  3424
inline TFindLogicalDevice::TFindLogicalDevice()
sl@0
  3425
    : TFindHandleBase()
sl@0
  3426
    {}
sl@0
  3427
sl@0
  3428
/**
sl@0
  3429
Constructs the LDD factory object with a specified match pattern.
sl@0
  3430
sl@0
  3431
A new match pattern can be set after construction by calling
sl@0
  3432
TFindHandleBase::Find().
sl@0
  3433
sl@0
  3434
@param aMatch The match pattern.
sl@0
  3435
sl@0
  3436
@see TFindHandleBase::Find
sl@0
  3437
*/
sl@0
  3438
inline TFindLogicalDevice::TFindLogicalDevice(const TDesC &aMatch)
sl@0
  3439
    : TFindHandleBase(aMatch)
sl@0
  3440
    {}
sl@0
  3441
sl@0
  3442
// Class TFindPhysicalDevice
sl@0
  3443
/**
sl@0
  3444
Constructs the PDD factory object with a default match pattern.
sl@0
  3445
sl@0
  3446
The default match pattern, as implemented by the base class, is the single 
sl@0
  3447
character "*".
sl@0
  3448
sl@0
  3449
A new match pattern can be set after construction by calling the Find() member 
sl@0
  3450
function of the TFindHandleBase base class.
sl@0
  3451
sl@0
  3452
@see TFindHandleBase::Find
sl@0
  3453
*/
sl@0
  3454
inline TFindPhysicalDevice::TFindPhysicalDevice()
sl@0
  3455
    : TFindHandleBase()
sl@0
  3456
    {}
sl@0
  3457
sl@0
  3458
/**
sl@0
  3459
Constructs the PDD factory object with a specified match pattern.
sl@0
  3460
sl@0
  3461
A new match pattern can be set after construction by calling
sl@0
  3462
TFindHandleBase::Find().
sl@0
  3463
sl@0
  3464
@param aMatch The match pattern.
sl@0
  3465
sl@0
  3466
@see TFindHandleBase::Find
sl@0
  3467
*/
sl@0
  3468
inline TFindPhysicalDevice::TFindPhysicalDevice(const TDesC &aMatch)
sl@0
  3469
    : TFindHandleBase(aMatch)
sl@0
  3470
    {}
sl@0
  3471
sl@0
  3472
sl@0
  3473
sl@0
  3474
sl@0
  3475
sl@0
  3476
// Class TFindServer
sl@0
  3477
inline TFindServer::TFindServer()
sl@0
  3478
    : TFindHandleBase()
sl@0
  3479
/**
sl@0
  3480
Constructs the object with a default match pattern.
sl@0
  3481
sl@0
  3482
The default match pattern, as implemented by the base class, is the single 
sl@0
  3483
character "*".
sl@0
  3484
sl@0
  3485
A new match pattern can be set after construction by calling the Find() member 
sl@0
  3486
function of the TFindHandleBase base class.
sl@0
  3487
sl@0
  3488
@see TFindHandleBase::Find
sl@0
  3489
*/
sl@0
  3490
    {}
sl@0
  3491
sl@0
  3492
sl@0
  3493
sl@0
  3494
sl@0
  3495
inline TFindServer::TFindServer(const TDesC &aMatch)
sl@0
  3496
    : TFindHandleBase(aMatch)
sl@0
  3497
/**
sl@0
  3498
Constructs the object with a specified match pattern.
sl@0
  3499
sl@0
  3500
A new match pattern can be set after construction by calling
sl@0
  3501
TFindHandleBase::Find().
sl@0
  3502
sl@0
  3503
@param aMatch The match pattern.
sl@0
  3504
sl@0
  3505
@see TFindHandleBase::Find
sl@0
  3506
*/
sl@0
  3507
    {}
sl@0
  3508
sl@0
  3509
sl@0
  3510
sl@0
  3511
sl@0
  3512
// Class TFindLibrary
sl@0
  3513
inline TFindLibrary::TFindLibrary()
sl@0
  3514
    : TFindHandleBase()
sl@0
  3515
/**
sl@0
  3516
Constructs this object with a default match pattern.
sl@0
  3517
sl@0
  3518
The default match pattern is the single character ‘*’ and is implemented by
sl@0
  3519
the base class TFindHandleBase.
sl@0
  3520
*/
sl@0
  3521
    {}
sl@0
  3522
sl@0
  3523
sl@0
  3524
sl@0
  3525
sl@0
  3526
inline TFindLibrary::TFindLibrary(const TDesC &aMatch)
sl@0
  3527
    : TFindHandleBase(aMatch)
sl@0
  3528
/**
sl@0
  3529
Constructs this object with the specified match pattern.
sl@0
  3530
sl@0
  3531
@param aMatch The descriptor containing the match pattern. 
sl@0
  3532
*/
sl@0
  3533
    {}
sl@0
  3534
sl@0
  3535
sl@0
  3536
sl@0
  3537
sl@0
  3538
// Class RDevice
sl@0
  3539
/**
sl@0
  3540
Opens a handle to an LDD factory object found using a TFindLogicalDevice object.
sl@0
  3541
sl@0
  3542
A TFindLogicalDevice object is used to find all LDD factory objects whose full names match 
sl@0
  3543
a specified pattern.
sl@0
  3544
sl@0
  3545
@param aFind A reference to the object which is used to find the LDD factory object.
sl@0
  3546
@param aType An enumeration whose enumerators define the ownership of this 
sl@0
  3547
             LDD factory object handle. If not explicitly specified, EOwnerProcess is
sl@0
  3548
			 taken as default.
sl@0
  3549
sl@0
  3550
@return KErrNone if successful, otherwise one of the other system wide error 
sl@0
  3551
        codes.
sl@0
  3552
*/
sl@0
  3553
inline TInt RDevice::Open(const TFindLogicalDevice& aFind,TOwnerType aType)
sl@0
  3554
	{return(RHandleBase::Open(aFind,aType));}
sl@0
  3555
sl@0
  3556
sl@0
  3557
sl@0
  3558
sl@0
  3559
// Class RCriticalSection
sl@0
  3560
inline TBool RCriticalSection::IsBlocked() const
sl@0
  3561
/**
sl@0
  3562
Tests whether the critical section is occupied by any thread.
sl@0
  3563
sl@0
  3564
@return True, if the critical section is occupied by another thread. False, 
sl@0
  3565
        otherwise.
sl@0
  3566
*/
sl@0
  3567
	{return(iBlocked!=1);}
sl@0
  3568
sl@0
  3569
sl@0
  3570
sl@0
  3571
sl@0
  3572
// Class RMutex
sl@0
  3573
inline TInt RMutex::Open(const TFindMutex& aFind,TOwnerType aType)
sl@0
  3574
/**
sl@0
  3575
Opens a handle to the global mutex found using a TFindMutex object.
sl@0
  3576
sl@0
  3577
A TFindMutex object is used to find all global mutexes whose full names match 
sl@0
  3578
a specified pattern.
sl@0
  3579
sl@0
  3580
By default, any thread in the process can use this instance of RMutex to access 
sl@0
  3581
the mutex. However, specifying EOwnerThread as the second parameter to this 
sl@0
  3582
function, means that only the opening thread can use this instance of RMutex 
sl@0
  3583
to access the mutex; any other thread in this process that wants to access 
sl@0
  3584
the mutex must either duplicate the handle or use OpenGlobal() again.
sl@0
  3585
sl@0
  3586
@param aFind A reference to the object which is used to find the mutex.
sl@0
  3587
@param aType An enumeration whose enumerators define the ownership of this 
sl@0
  3588
             mutex handle. If not explicitly specified, EOwnerProcess is
sl@0
  3589
			 taken as default. 
sl@0
  3590
sl@0
  3591
@return KErrNone if successful, otherwise one of the other system wide error 
sl@0
  3592
        codes.
sl@0
  3593
*/
sl@0
  3594
	{return(RHandleBase::Open(aFind,aType));}
sl@0
  3595
sl@0
  3596
sl@0
  3597
sl@0
  3598
sl@0
  3599
// Class RChunk
sl@0
  3600
inline TInt RChunk::Open(const TFindChunk& aFind,TOwnerType aType)
sl@0
  3601
/**
sl@0
  3602
Opens a handle to the global chunk found using a TFindChunk object.
sl@0
  3603
sl@0
  3604
A TFindChunk object is used to find all chunks whose full names match
sl@0
  3605
a specified pattern. 
sl@0
  3606
sl@0
  3607
By default, ownership of this chunk handle is vested in the current process, 
sl@0
  3608
but can be vested in the current thread by passing EOwnerThread as the second 
sl@0
  3609
parameter to this function.
sl@0
  3610
sl@0
  3611
@param aFind A reference to the TFindChunk object used to find the chunk.
sl@0
  3612
@param aType An enumeration whose enumerators define the ownership of this 
sl@0
  3613
             chunk handle. If not explicitly specified, EOwnerProcess is
sl@0
  3614
			 taken as default.
sl@0
  3615
sl@0
  3616
@return KErrNone if successful, otherwise another of the system error codes.
sl@0
  3617
*/
sl@0
  3618
	{return(RHandleBase::Open(aFind,aType));}
sl@0
  3619
sl@0
  3620
sl@0
  3621
sl@0
  3622
sl@0
  3623
inline TBool RChunk::IsReadable() const
sl@0
  3624
/**
sl@0
  3625
Tests whether the chunk is mapped into its process address space.
sl@0
  3626
sl@0
  3627
@return True, if the chunk is readable; false, otherwise.
sl@0
  3628
*/
sl@0
  3629
	{return (Attributes()&RHandleBase::EDirectReadAccess); }
sl@0
  3630
sl@0
  3631
sl@0
  3632
sl@0
  3633
sl@0
  3634
inline TBool RChunk::IsWritable() const
sl@0
  3635
/**
sl@0
  3636
Tests whether the chunk mapped into its process address space and is writable.
sl@0
  3637
sl@0
  3638
@return True, if the chunk is writable; false, otherwise.
sl@0
  3639
*/
sl@0
  3640
	{return (Attributes()&RHandleBase::EDirectWriteAccess); }
sl@0
  3641
sl@0
  3642
sl@0
  3643
sl@0
  3644
sl@0
  3645
// Class TObjectId
sl@0
  3646
inline TObjectId::TObjectId()
sl@0
  3647
/**
sl@0
  3648
Default constructor.
sl@0
  3649
*/
sl@0
  3650
	{}
sl@0
  3651
sl@0
  3652
sl@0
  3653
sl@0
  3654
sl@0
  3655
inline TObjectId::TObjectId(TUint64 aId)
sl@0
  3656
	: iId(aId)
sl@0
  3657
/**
sl@0
  3658
Constructor taking an unsigned integer value.
sl@0
  3659
sl@0
  3660
@param aId The value of the object id.
sl@0
  3661
*/
sl@0
  3662
	{}
sl@0
  3663
sl@0
  3664
sl@0
  3665
sl@0
  3666
sl@0
  3667
inline TUint64 TObjectId::Id() const
sl@0
  3668
/**
sl@0
  3669
Return the ID as a 64 bit integer
sl@0
  3670
*/
sl@0
  3671
	{ return iId; }
sl@0
  3672
sl@0
  3673
sl@0
  3674
sl@0
  3675
sl@0
  3676
inline TObjectId::operator TUint() const
sl@0
  3677
/**
sl@0
  3678
Conversion operator invoked by the compiler when a TObjectId type is passed
sl@0
  3679
to a function that is prototyped to take a TUint type.
sl@0
  3680
sl@0
  3681
@see TUint
sl@0
  3682
*/
sl@0
  3683
	{ return TUint(iId); }
sl@0
  3684
sl@0
  3685
sl@0
  3686
sl@0
  3687
sl@0
  3688
inline TBool TObjectId::operator==(TObjectId aId) const
sl@0
  3689
/**
sl@0
  3690
Tests whether this thread Id is equal to the specified Id.
sl@0
  3691
sl@0
  3692
@param aId The thread Id to be compared with this thread Id.
sl@0
  3693
sl@0
  3694
@return True, if the thread Ids are equal; false otherwise.
sl@0
  3695
*/
sl@0
  3696
	{return iId==aId.iId;}
sl@0
  3697
sl@0
  3698
sl@0
  3699
sl@0
  3700
sl@0
  3701
inline TBool TObjectId::operator!=(TObjectId aId) const
sl@0
  3702
/**
sl@0
  3703
Tests whether this thread Id is unequal to the specified thread Id.
sl@0
  3704
sl@0
  3705
@param aId The thread Id to be compared with this thread Id.
sl@0
  3706
sl@0
  3707
@return True, if the thread Ids are unequal; false otherwise.
sl@0
  3708
*/
sl@0
  3709
	{return iId!=aId.iId;}
sl@0
  3710
sl@0
  3711
sl@0
  3712
sl@0
  3713
sl@0
  3714
// Class TThreadId
sl@0
  3715
inline TThreadId::TThreadId()
sl@0
  3716
	: TObjectId()
sl@0
  3717
/**
sl@0
  3718
Default constructor.
sl@0
  3719
*/
sl@0
  3720
	{}
sl@0
  3721
sl@0
  3722
sl@0
  3723
sl@0
  3724
sl@0
  3725
inline TThreadId::TThreadId(TUint64 aId)
sl@0
  3726
	: TObjectId(aId)
sl@0
  3727
/**
sl@0
  3728
Constructor taking an unsigned integer value.
sl@0
  3729
sl@0
  3730
@param aId The value of the thread id.
sl@0
  3731
*/
sl@0
  3732
	{}
sl@0
  3733
sl@0
  3734
sl@0
  3735
sl@0
  3736
sl@0
  3737
// Class RThread
sl@0
  3738
inline RThread::RThread()
sl@0
  3739
	: RHandleBase(KCurrentThreadHandle)
sl@0
  3740
/**
sl@0
  3741
Default constructor.
sl@0
  3742
sl@0
  3743
The constructor exists to initialise private data within this handle; it does 
sl@0
  3744
not create the thread object.
sl@0
  3745
sl@0
  3746
Specifically, it sets the handle-number to the value KCurrentThreadHandle.
sl@0
  3747
In effect, the constructor creates a default thread handle.
sl@0
  3748
*/
sl@0
  3749
	{}
sl@0
  3750
sl@0
  3751
sl@0
  3752
sl@0
  3753
sl@0
  3754
inline TInt RThread::Open(const TFindThread& aFind,TOwnerType aType)
sl@0
  3755
/**
sl@0
  3756
Opens a handle to the thread found by pattern matching a name.
sl@0
  3757
sl@0
  3758
A TFindThread object is used to find all threads whose full names match a 
sl@0
  3759
specified pattern. 
sl@0
  3760
sl@0
  3761
By default, ownership of this thread handle is vested in the current process, 
sl@0
  3762
but can be vested in the current thread by passing EOwnerThread as the second 
sl@0
  3763
parameter to this function.
sl@0
  3764
sl@0
  3765
@param aFind A reference to the TFindThread object used to find the thread.
sl@0
  3766
@param aType An enumeration whose enumerators define the ownership of this 
sl@0
  3767
             thread handle. If not explicitly specified, EOwnerProcess is
sl@0
  3768
			 taken as default.
sl@0
  3769
sl@0
  3770
@return KErrNone if successful, otherwise one of the other system-wide error codes.
sl@0
  3771
*/
sl@0
  3772
	{return(RHandleBase::Open(aFind,aType));}
sl@0
  3773
sl@0
  3774
sl@0
  3775
sl@0
  3776
sl@0
  3777
#ifndef __REMOVE_PLATSEC_DIAGNOSTIC_STRINGS__
sl@0
  3778
sl@0
  3779
inline TBool RThread::HasCapability(TCapability aCapability, const char* aDiagnostic) const
sl@0
  3780
	{
sl@0
  3781
	return DoHasCapability(aCapability, aDiagnostic);
sl@0
  3782
	}
sl@0
  3783
sl@0
  3784
inline TBool RThread::HasCapability(TCapability aCapability1, TCapability aCapability2, const char* aDiagnostic) const
sl@0
  3785
	{
sl@0
  3786
	return DoHasCapability(aCapability1, aCapability2, aDiagnostic);
sl@0
  3787
	}
sl@0
  3788
sl@0
  3789
#else //__REMOVE_PLATSEC_DIAGNOSTIC_STRINGS__
sl@0
  3790
sl@0
  3791
// Only available to NULL arguments
sl@0
  3792
inline TBool RThread::HasCapability(TCapability aCapability, OnlyCreateWithNull /*aDiagnostic*/) const
sl@0
  3793
	{
sl@0
  3794
	return DoHasCapability(aCapability);
sl@0
  3795
	}
sl@0
  3796
sl@0
  3797
inline TBool RThread::HasCapability(TCapability aCapability1, TCapability aCapability2, OnlyCreateWithNull /*aDiagnostic*/) const
sl@0
  3798
	{
sl@0
  3799
	return DoHasCapability(aCapability1, aCapability2);
sl@0
  3800
	}
sl@0
  3801
sl@0
  3802
#ifndef __REMOVE_PLATSEC_DIAGNOSTICS__
sl@0
  3803
// For things using KSuppressPlatSecDiagnostic
sl@0
  3804
inline TBool RThread::HasCapability(TCapability aCapability, OnlyCreateWithNull /*aDiagnostic*/, OnlyCreateWithNull /*aSuppress*/) const
sl@0
  3805
	{
sl@0
  3806
	return DoHasCapability(aCapability, KSuppressPlatSecDiagnosticMagicValue);
sl@0
  3807
	}
sl@0
  3808
sl@0
  3809
inline TBool RThread::HasCapability(TCapability aCapability1, TCapability aCapability2, OnlyCreateWithNull /*aDiagnostic*/, OnlyCreateWithNull /*aSuppress*/) const
sl@0
  3810
	{
sl@0
  3811
	return DoHasCapability(aCapability1, aCapability2, KSuppressPlatSecDiagnosticMagicValue);
sl@0
  3812
	}
sl@0
  3813
sl@0
  3814
#endif // !__REMOVE_PLATSEC_DIAGNOSTICS__
sl@0
  3815
sl@0
  3816
#endif // !__REMOVE_PLATSEC_DIAGNOSTIC_STRINGS__
sl@0
  3817
sl@0
  3818
// Class TProcessId
sl@0
  3819
inline TProcessId::TProcessId()
sl@0
  3820
	: TObjectId()
sl@0
  3821
/**
sl@0
  3822
Default constructor.
sl@0
  3823
*/
sl@0
  3824
	{}
sl@0
  3825
sl@0
  3826
sl@0
  3827
sl@0
  3828
sl@0
  3829
inline TProcessId::TProcessId(TUint64 aId)
sl@0
  3830
	: TObjectId(aId)
sl@0
  3831
/**
sl@0
  3832
Constructor taking an unsigned integer value.
sl@0
  3833
sl@0
  3834
@param aId The value of the process id.
sl@0
  3835
*/
sl@0
  3836
	{}
sl@0
  3837
sl@0
  3838
sl@0
  3839
sl@0
  3840
sl@0
  3841
// Class RProcess
sl@0
  3842
inline RProcess::RProcess()
sl@0
  3843
	: RHandleBase(KCurrentProcessHandle)
sl@0
  3844
/** 
sl@0
  3845
Default constructor.
sl@0
  3846
sl@0
  3847
The constructor exists to initialise private data within this handle; it does 
sl@0
  3848
not create the process object.
sl@0
  3849
sl@0
  3850
Specifically, it sets the handle-number to the value KCurrentProcessHandle.
sl@0
  3851
In effect, the constructor creates a default process handle.
sl@0
  3852
*/
sl@0
  3853
	{}
sl@0
  3854
sl@0
  3855
sl@0
  3856
sl@0
  3857
sl@0
  3858
inline RProcess::RProcess(TInt aHandle)
sl@0
  3859
	: RHandleBase(aHandle)
sl@0
  3860
/**
sl@0
  3861
Constructor taking a handle number.
sl@0
  3862
sl@0
  3863
@param aHandle The handle number to be used to construct this RProcess handle.
sl@0
  3864
*/
sl@0
  3865
	{}
sl@0
  3866
sl@0
  3867
sl@0
  3868
sl@0
  3869
sl@0
  3870
inline TInt RProcess::Open(const TFindProcess& aFind,TOwnerType aType)
sl@0
  3871
/**
sl@0
  3872
Opens a handle to the process found by pattern matching a name.
sl@0
  3873
sl@0
  3874
A TFindProcess object is used to find all processes whose full names match 
sl@0
  3875
a specified pattern. 
sl@0
  3876
sl@0
  3877
By default, ownership of this process handle is vested in the current process, 
sl@0
  3878
but can be vested in the current thread by passing EOwnerThread as the second 
sl@0
  3879
parameter to this function.
sl@0
  3880
sl@0
  3881
@param aFind A reference to the TFindProcess object used to find the process.
sl@0
  3882
@param aType An enumeration whose enumerators define the ownership of this 
sl@0
  3883
             process handle. If not explicitly specified, EOwnerProcess is taken
sl@0
  3884
			 as default.
sl@0
  3885
sl@0
  3886
@return KErrNone if successful, otherwise one of the other system-wide error codes.
sl@0
  3887
*/
sl@0
  3888
	{return(RHandleBase::Open(aFind,aType));}
sl@0
  3889
sl@0
  3890
sl@0
  3891
sl@0
  3892
sl@0
  3893
#ifndef __REMOVE_PLATSEC_DIAGNOSTIC_STRINGS__
sl@0
  3894
sl@0
  3895
inline TBool RProcess::HasCapability(TCapability aCapability, const char* aDiagnostic) const
sl@0
  3896
	{
sl@0
  3897
	return DoHasCapability(aCapability, aDiagnostic);
sl@0
  3898
	}
sl@0
  3899
sl@0
  3900
inline TBool RProcess::HasCapability(TCapability aCapability1, TCapability aCapability2, const char* aDiagnostic) const
sl@0
  3901
	{
sl@0
  3902
	return DoHasCapability(aCapability1, aCapability2, aDiagnostic);
sl@0
  3903
	}
sl@0
  3904
sl@0
  3905
#else //__REMOVE_PLATSEC_DIAGNOSTIC_STRINGS__
sl@0
  3906
sl@0
  3907
// Only available to NULL arguments
sl@0
  3908
inline TBool RProcess::HasCapability(TCapability aCapability, OnlyCreateWithNull /*aDiagnostic*/) const
sl@0
  3909
	{
sl@0
  3910
	return DoHasCapability(aCapability);
sl@0
  3911
	}
sl@0
  3912
sl@0
  3913
inline TBool RProcess::HasCapability(TCapability aCapability1, TCapability aCapability2, OnlyCreateWithNull /*aDiagnostic*/) const
sl@0
  3914
	{
sl@0
  3915
	return DoHasCapability(aCapability1, aCapability2);
sl@0
  3916
	}
sl@0
  3917
sl@0
  3918
#ifndef __REMOVE_PLATSEC_DIAGNOSTICS__
sl@0
  3919
// For things using KSuppressPlatSecDiagnostic
sl@0
  3920
inline TBool RProcess::HasCapability(TCapability aCapability, OnlyCreateWithNull /*aDiagnostic*/, OnlyCreateWithNull /*aSuppress*/) const
sl@0
  3921
	{
sl@0
  3922
	return DoHasCapability(aCapability, KSuppressPlatSecDiagnosticMagicValue);
sl@0
  3923
	}
sl@0
  3924
sl@0
  3925
inline TBool RProcess::HasCapability(TCapability aCapability1, TCapability aCapability2, OnlyCreateWithNull /*aDiagnostic*/, OnlyCreateWithNull /*aSuppress*/) const
sl@0
  3926
	{
sl@0
  3927
	return DoHasCapability(aCapability1, aCapability2, KSuppressPlatSecDiagnosticMagicValue);
sl@0
  3928
	}
sl@0
  3929
sl@0
  3930
#endif // !__REMOVE_PLATSEC_DIAGNOSTICS__
sl@0
  3931
sl@0
  3932
#endif // !__REMOVE_PLATSEC_DIAGNOSTIC_STRINGS__
sl@0
  3933
sl@0
  3934
sl@0
  3935
sl@0
  3936
sl@0
  3937
sl@0
  3938
// Class RSessionBase
sl@0
  3939
sl@0
  3940
sl@0
  3941
/**
sl@0
  3942
Creates a session with a server, specifying no message slots.
sl@0
  3943
sl@0
  3944
It should be called as part of session initialisation in the derived class.
sl@0
  3945
sl@0
  3946
Message slots are not pre-allocated for the session but are taken from
sl@0
  3947
a system-wide pool allowing up to 255 asynchronous messages to be outstanding.
sl@0
  3948
This raises a risk of failure due to lack of memory and, therefore, this mode
sl@0
  3949
of operation is not viable for sessions that make guarantees about the failure
sl@0
  3950
modes of asynchonous services.
sl@0
  3951
sl@0
  3952
@param aServer  The name of the server with which a session is to
sl@0
  3953
                be established.
sl@0
  3954
@param aVersion The lowest version of the server with which this client
sl@0
  3955
                is compatible
sl@0
  3956
sl@0
  3957
@return KErrNone if successful, otherwise one of the other system-wide error
sl@0
  3958
        codes.
sl@0
  3959
*/
sl@0
  3960
inline TInt RSessionBase::CreateSession(const TDesC& aServer,const TVersion& aVersion)
sl@0
  3961
	{return CreateSession(aServer,aVersion,-1,EIpcSession_Unsharable,NULL,0);}
sl@0
  3962
sl@0
  3963
sl@0
  3964
sl@0
  3965
sl@0
  3966
/**
sl@0
  3967
Creates a session with a server, specifying no message slots.
sl@0
  3968
sl@0
  3969
It should be called as part of session initialisation in the derived class.
sl@0
  3970
sl@0
  3971
Message slots are not pre-allocated for the session but are taken from
sl@0
  3972
a system-wide pool allowing up to 255 asynchronous messages to be outstanding.
sl@0
  3973
This raises a risk of failure due to lack of memory and, therefore, this mode
sl@0
  3974
of operation is not viable for sessions that make guarantees about the failure
sl@0
  3975
modes of asynchonous services.
sl@0
  3976
sl@0
  3977
@param aServer  A handle to a server with which a session is to be established.
sl@0
  3978
@param aVersion The lowest version of the server with which this client
sl@0
  3979
                is compatible
sl@0
  3980
sl@0
  3981
@return KErrNone if successful, otherwise one of the other system-wide error
sl@0
  3982
        codes.
sl@0
  3983
*/
sl@0
  3984
inline TInt RSessionBase::CreateSession(RServer2 aServer,const TVersion& aVersion)
sl@0
  3985
	{return CreateSession(aServer,aVersion,-1,EIpcSession_Unsharable,NULL,0);}
sl@0
  3986
sl@0
  3987
sl@0
  3988
sl@0
  3989
sl@0
  3990
/**
sl@0
  3991
Issues a blind request to the server with the specified function number,
sl@0
  3992
and arguments.
sl@0
  3993
sl@0
  3994
A blind request is one where the server does not issue a response
sl@0
  3995
to the client.
sl@0
  3996
sl@0
  3997
@param aFunction The function number identifying the request.
sl@0
  3998
@param aArgs     A set of up to 4 arguments and their types to be passed
sl@0
  3999
                 to the server.
sl@0
  4000
sl@0
  4001
@return KErrNone, if the send operation is successful;
sl@0
  4002
        KErrServerTerminated, if the server no longer present;
sl@0
  4003
        KErrServerBusy, if there are no message slots available;
sl@0
  4004
        KErrNoMemory, if there is insufficient memory available.
sl@0
  4005
sl@0
  4006
@panic  USER 72 if the function number is negative.
sl@0
  4007
*/
sl@0
  4008
inline TInt RSessionBase::Send(TInt aFunction,const TIpcArgs& aArgs) const
sl@0
  4009
	{return DoSend(aFunction,&aArgs);}
sl@0
  4010
sl@0
  4011
sl@0
  4012
sl@0
  4013
sl@0
  4014
/**
sl@0
  4015
Issues an asynchronous request to the server with the specified function
sl@0
  4016
number and arguments. 
sl@0
  4017
sl@0
  4018
The completion status of the request is returned via the request
sl@0
  4019
status object, aStatus. 
sl@0
  4020
sl@0
  4021
@param aFunction The function number identifying the request.
sl@0
  4022
@param aArgs     A set of up to 4 arguments and their types to be passed
sl@0
  4023
                 to the server.
sl@0
  4024
@param aStatus   The request status object used to contain the completion status
sl@0
  4025
                 of the request.
sl@0
  4026
                 
sl@0
  4027
@panic  USER 72  if the function number is negative.                 
sl@0
  4028
*/
sl@0
  4029
inline void RSessionBase::SendReceive(TInt aFunction,const TIpcArgs& aArgs,TRequestStatus& aStatus) const
sl@0
  4030
	{DoSendReceive(aFunction,&aArgs,aStatus);}
sl@0
  4031
sl@0
  4032
sl@0
  4033
sl@0
  4034
sl@0
  4035
/**
sl@0
  4036
Issues a synchronous request to the server with the specified function number
sl@0
  4037
and arguments.
sl@0
  4038
sl@0
  4039
@param aFunction The function number identifying the request.
sl@0
  4040
@param aArgs     A set of up to 4 arguments and their types to be passed
sl@0
  4041
                 to the server.
sl@0
  4042
sl@0
  4043
@return KErrNone, if the send operation is successful;
sl@0
  4044
        KErrServerTerminated, if the server no longer present;
sl@0
  4045
        KErrServerBusy, if there are no message slots available;
sl@0
  4046
        KErrNoMemory, if there is insufficient memory available.
sl@0
  4047
sl@0
  4048
@panic  USER 72  if the function number is negative.
sl@0
  4049
*/
sl@0
  4050
inline TInt RSessionBase::SendReceive(TInt aFunction,const TIpcArgs& aArgs) const
sl@0
  4051
	{return DoSendReceive(aFunction,&aArgs);}
sl@0
  4052
sl@0
  4053
sl@0
  4054
sl@0
  4055
sl@0
  4056
/**
sl@0
  4057
Issues a blind request to the server with the specified function number,
sl@0
  4058
but with no arguments.
sl@0
  4059
sl@0
  4060
A blind request is one where the server does not issue a response
sl@0
  4061
to the client.
sl@0
  4062
sl@0
  4063
@param aFunction The function number identifying the request.
sl@0
  4064
sl@0
  4065
@return KErrNone, if the send operation is successful;
sl@0
  4066
        KErrServerTerminated, if the server no longer present;
sl@0
  4067
        KErrServerBusy, if there are no message slots available;
sl@0
  4068
        KErrNoMemory, if there is insufficient memory available.
sl@0
  4069
sl@0
  4070
@panic  USER 72 if the function number is negative.
sl@0
  4071
*/
sl@0
  4072
inline TInt RSessionBase::Send(TInt aFunction) const
sl@0
  4073
	{return DoSend(aFunction,NULL);}
sl@0
  4074
sl@0
  4075
sl@0
  4076
sl@0
  4077
sl@0
  4078
/**
sl@0
  4079
Issues an asynchronous request to the server with the specified function
sl@0
  4080
number, but with no arguments.
sl@0
  4081
sl@0
  4082
The completion status of the request is returned via the request
sl@0
  4083
status object, aStatus. 
sl@0
  4084
sl@0
  4085
@param aFunction The function number identifying the request.
sl@0
  4086
@param aStatus   The request status object used to contain the completion
sl@0
  4087
                 status of the request.
sl@0
  4088
                 
sl@0
  4089
@panic  USER 72  if the function number is negative.                 
sl@0
  4090
*/
sl@0
  4091
inline void RSessionBase::SendReceive(TInt aFunction,TRequestStatus& aStatus) const
sl@0
  4092
	{ DoSendReceive(aFunction,NULL,aStatus);}
sl@0
  4093
sl@0
  4094
sl@0
  4095
sl@0
  4096
sl@0
  4097
/**
sl@0
  4098
Sets the handle-number of this handle to the specified 
sl@0
  4099
value.
sl@0
  4100
sl@0
  4101
The function can take a (zero or positive) handle-number,
sl@0
  4102
or a (negative) error number.
sl@0
  4103
sl@0
  4104
If aHandleOrError represents a handle-number, then the handle-number of this handle
sl@0
  4105
is set to that value.
sl@0
  4106
If aHandleOrError represents an error number, then the handle-number of this handle is set to zero
sl@0
  4107
and the negative value is returned.
sl@0
  4108
sl@0
  4109
@param aHandleOrError A handle-number, if zero or positive; an error value, if negative.
sl@0
  4110
sl@0
  4111
@return KErrNone, if aHandle is a handle-number; the value of aHandleOrError, otherwise.
sl@0
  4112
*/
sl@0
  4113
inline TInt RSessionBase::SetReturnedHandle(TInt aHandleOrError)
sl@0
  4114
	{ return RHandleBase::SetReturnedHandle(aHandleOrError);}
sl@0
  4115
sl@0
  4116
sl@0
  4117
sl@0
  4118
sl@0
  4119
inline TInt RSessionBase::SetReturnedHandle(TInt aHandleOrError,RHandleBase& aHandle)
sl@0
  4120
	{ return RHandleBase::SetReturnedHandle(aHandleOrError,aHandle);}
sl@0
  4121
/**
sl@0
  4122
Issues a synchronous request to the server with the specified function number,
sl@0
  4123
but with no arguments.
sl@0
  4124
sl@0
  4125
@param aFunction The function number identifying the request.
sl@0
  4126
sl@0
  4127
@return KErrNone, if the send operation is successful;
sl@0
  4128
        KErrServerTerminated, if the server no longer present;
sl@0
  4129
        KErrServerBusy, if there are no message slots available;
sl@0
  4130
        KErrNoMemory, if there is insufficient memory available.
sl@0
  4131
sl@0
  4132
@panic  USER 72  if the function number is negative.
sl@0
  4133
*/
sl@0
  4134
inline TInt RSessionBase::SendReceive(TInt aFunction) const
sl@0
  4135
	{return DoSendReceive(aFunction,NULL);}
sl@0
  4136
sl@0
  4137
sl@0
  4138
sl@0
  4139
sl@0
  4140
// Class RSubSessionBase
sl@0
  4141
inline RSubSessionBase::RSubSessionBase()
sl@0
  4142
	: iSubSessionHandle(0)
sl@0
  4143
/**
sl@0
  4144
Default constructor
sl@0
  4145
*/
sl@0
  4146
	{}
sl@0
  4147
sl@0
  4148
sl@0
  4149
sl@0
  4150
sl@0
  4151
inline TInt RSubSessionBase::SubSessionHandle() const
sl@0
  4152
/**
sl@0
  4153
Gets the sub-session handle number.
sl@0
  4154
sl@0
  4155
This number is automatically passed to the server when making requests and is
sl@0
  4156
used to identify the appropriate server-side sub-session.
sl@0
  4157
sl@0
  4158
@return The sub-session handle number.
sl@0
  4159
*/
sl@0
  4160
	{return iSubSessionHandle;}
sl@0
  4161
sl@0
  4162
sl@0
  4163
sl@0
  4164
sl@0
  4165
/**
sl@0
  4166
Creates a new sub-session within an existing session.
sl@0
  4167
sl@0
  4168
@param aSession    The session to which this sub-session will belong.
sl@0
  4169
@param aFunction   The opcode specifying the requested service; the server should interpret this as a request to create a sub-session.
sl@0
  4170
@param aArgs       The message arguments.   
sl@0
  4171
sl@0
  4172
@return            KErrNone if successful, otherwise one of the system-wide error codes.
sl@0
  4173
*/
sl@0
  4174
inline TInt RSubSessionBase::CreateSubSession(const RSessionBase& aSession,TInt aFunction,const TIpcArgs& aArgs)
sl@0
  4175
	{ return DoCreateSubSession(aSession,aFunction,&aArgs); }
sl@0
  4176
sl@0
  4177
sl@0
  4178
sl@0
  4179
	
sl@0
  4180
/**
sl@0
  4181
Creates a new sub-session within an existing session.
sl@0
  4182
sl@0
  4183
This variant sends no message arguments to the server.
sl@0
  4184
sl@0
  4185
@param aSession    The session to which this sub-session will belong.
sl@0
  4186
@param aFunction   The opcode specifying the requested service; the server should interpret this as a request to create a sub-session.
sl@0
  4187
sl@0
  4188
@return            KErrNone if successful, otherwise one of the system-wide error codes.
sl@0
  4189
*/
sl@0
  4190
inline TInt RSubSessionBase::CreateSubSession(const RSessionBase& aSession,TInt aFunction)
sl@0
  4191
	{ return DoCreateSubSession(aSession,aFunction,NULL); }
sl@0
  4192
sl@0
  4193
sl@0
  4194
sl@0
  4195
	
sl@0
  4196
/**
sl@0
  4197
Sends a blind message to the server - no reply is expected.
sl@0
  4198
sl@0
  4199
A set of message arguments is passed that can be used to specify client
sl@0
  4200
addresses, which the server can use to read from and write to the client
sl@0
  4201
address space.
sl@0
  4202
sl@0
  4203
Note that this function can fail if there are no available message-slots, either
sl@0
  4204
in the system wide pool (if this is being used), or in the session reserved pool
sl@0
  4205
(if this is being used). If the client request is synchronous, then always use
sl@0
  4206
the synchronous variant of SendReceive(); this is guaranteed to reach the server.
sl@0
  4207
sl@0
  4208
@param aFunction	The opcode specifying the requested service.
sl@0
  4209
@param aArgs		The message arguments.
sl@0
  4210
                    
sl@0
  4211
@return				KErrNone if successful, otherwise one of the system-wide error codes.                    
sl@0
  4212
*/
sl@0
  4213
inline TInt RSubSessionBase::Send(TInt aFunction,const TIpcArgs& aArgs) const
sl@0
  4214
	{return DoSend(aFunction,&aArgs);}
sl@0
  4215
sl@0
  4216
sl@0
  4217
sl@0
  4218
	
sl@0
  4219
/**
sl@0
  4220
Sends a message to the server and waits asynchronously for the reply.
sl@0
  4221
sl@0
  4222
An opcode specifies the service required.
sl@0
  4223
A set of message arguments is passed that can be used to specify client addresses,
sl@0
  4224
which the server can use to read from and write to the client address space.
sl@0
  4225
sl@0
  4226
Note that this function can fail if there are no available message-slots, 
sl@0
  4227
either in the system wide pool (if this is being used), or in the session
sl@0
  4228
reserved pool (if this is being used). If the client request is synchronous,
sl@0
  4229
then always use the synchronous variant of SendReceive();
sl@0
  4230
this is guaranteed to reach the server.
sl@0
  4231
sl@0
  4232
@param aFunction	The opcode specifying the requested service.
sl@0
  4233
@param aArgs		The message arguments.
sl@0
  4234
@param aStatus	    A request status which indicates the completion status of the asynchronous request.
sl@0
  4235
*/
sl@0
  4236
inline void RSubSessionBase::SendReceive(TInt aFunction,const TIpcArgs& aArgs,TRequestStatus& aStatus) const
sl@0
  4237
	{DoSendReceive(aFunction,&aArgs,aStatus);}
sl@0
  4238
sl@0
  4239
sl@0
  4240
sl@0
  4241
	
sl@0
  4242
/**
sl@0
  4243
Sends a message to the server and waits synchronously for a reply.
sl@0
  4244
sl@0
  4245
An opcode specifies the service required.
sl@0
  4246
A set of message arguments is passed that can be used to specify client addresses,
sl@0
  4247
which the server can use to read from and write to the client address space.
sl@0
  4248
sl@0
  4249
Note that this function will only fail if the server itself fails or environmental
sl@0
  4250
errors occur in the server. All requests made using this function are guaranteed to
sl@0
  4251
reach the server. This means that all synchronous client requests (typically those
sl@0
  4252
that return void) should be routed through this synchronous variant of SendReceive().
sl@0
  4253
sl@0
  4254
@param aFunction	The opcode specifying the requested service.
sl@0
  4255
@param aArgs		The message arguments.
sl@0
  4256
sl@0
  4257
@return				KErrNone if successful, otherwise one of the system-wide error codes. 
sl@0
  4258
*/
sl@0
  4259
inline TInt RSubSessionBase::SendReceive(TInt aFunction,const TIpcArgs& aArgs) const
sl@0
  4260
	{return DoSendReceive(aFunction,&aArgs);}
sl@0
  4261
	
sl@0
  4262
sl@0
  4263
sl@0
  4264
	
sl@0
  4265
/**
sl@0
  4266
Sends a blind message to the server - no reply is expected.
sl@0
  4267
sl@0
  4268
This variant sends no message arguments to the server.
sl@0
  4269
sl@0
  4270
@param aFunction	The opcode specifying the requested service.
sl@0
  4271
                    
sl@0
  4272
@return				KErrNone if successful, otherwise one of the system-wide error codes. 
sl@0
  4273
*/
sl@0
  4274
inline TInt RSubSessionBase::Send(TInt aFunction) const
sl@0
  4275
	{return DoSend(aFunction,NULL);}
sl@0
  4276
sl@0
  4277
sl@0
  4278
sl@0
  4279
	
sl@0
  4280
/**
sl@0
  4281
Sends a message to the server and waits asynchronously for the reply.
sl@0
  4282
sl@0
  4283
An opcode specifies the service required.
sl@0
  4284
This variant sends no message arguments to the server.
sl@0
  4285
sl@0
  4286
@param aFunction	The opcode specifying the requested service.
sl@0
  4287
@param aStatus	    A request status which indicates the completion status of the asynchronous request.
sl@0
  4288
*/
sl@0
  4289
inline void RSubSessionBase::SendReceive(TInt aFunction,TRequestStatus& aStatus) const
sl@0
  4290
	{ DoSendReceive(aFunction,NULL,aStatus);}
sl@0
  4291
sl@0
  4292
sl@0
  4293
sl@0
  4294
	
sl@0
  4295
/**
sl@0
  4296
Sends a message to the server and waits synchronously for a reply.
sl@0
  4297
sl@0
  4298
An opcode specifies the service required.
sl@0
  4299
This variant sends no message arguments to the server.
sl@0
  4300
sl@0
  4301
@param aFunction	The opcode specifying the requested service.
sl@0
  4302
sl@0
  4303
@return				KErrNone if successful, otherwise one of the system-wide error codes. 
sl@0
  4304
*/
sl@0
  4305
inline TInt RSubSessionBase::SendReceive(TInt aFunction) const
sl@0
  4306
	{return DoSendReceive(aFunction,NULL);}
sl@0
  4307
sl@0
  4308
sl@0
  4309
sl@0
  4310
sl@0
  4311
// Class RRefBase
sl@0
  4312
sl@0
  4313
/**
sl@0
  4314
Default constructor.
sl@0
  4315
*/
sl@0
  4316
inline RRefBase::RRefBase()
sl@0
  4317
	: iPtr(NULL)
sl@0
  4318
	{}
sl@0
  4319
sl@0
  4320
sl@0
  4321
sl@0
  4322
/**
sl@0
  4323
Copy constructor.
sl@0
  4324
sl@0
  4325
@param aRef A reference to the object to be copied.
sl@0
  4326
*/
sl@0
  4327
inline RRefBase::RRefBase(const RRefBase &aRef)
sl@0
  4328
	{Copy(aRef);}
sl@0
  4329
sl@0
  4330
sl@0
  4331
sl@0
  4332
sl@0
  4333
// Class RRef
sl@0
  4334
sl@0
  4335
sl@0
  4336
/**
sl@0
  4337
Default constructor.
sl@0
  4338
*/
sl@0
  4339
template <class T>
sl@0
  4340
inline RRef<T>::RRef()
sl@0
  4341
	{}
sl@0
  4342
sl@0
  4343
sl@0
  4344
sl@0
  4345
/**
sl@0
  4346
Copy constructor.
sl@0
  4347
sl@0
  4348
The constructor frees any existing contained object, and takes ownership of
sl@0
  4349
the object owned by anObject. 
sl@0
  4350
sl@0
  4351
@param anObject A reference to another 'reference' object.
sl@0
  4352
                On return from this constructor, anObject may be safely
sl@0
  4353
                orphaned if it lives on the program stack.
sl@0
  4354
*/
sl@0
  4355
template <class T>
sl@0
  4356
inline RRef<T>::RRef(const RRef<T> &anObject)
sl@0
  4357
	{Copy(anObject);}
sl@0
  4358
sl@0
  4359
sl@0
  4360
sl@0
  4361
sl@0
  4362
/**
sl@0
  4363
Assignment operator.
sl@0
  4364
sl@0
  4365
The constructor frees any existing contained object, and takes ownership of
sl@0
  4366
the object owned by anObject. 
sl@0
  4367
sl@0
  4368
@param anObject A reference to another 'reference' object.
sl@0
  4369
                On return from this constructor, anObject may be safely
sl@0
  4370
                orphaned if it lives on the program stack.
sl@0
  4371
*/
sl@0
  4372
template <class T>
sl@0
  4373
inline void RRef<T>::operator=(const RRef<T> &anObject)
sl@0
  4374
	{Copy(anObject);}
sl@0
  4375
sl@0
  4376
sl@0
  4377
sl@0
  4378
sl@0
  4379
/**
sl@0
  4380
Gets a pointer to the contained object.
sl@0
  4381
sl@0
  4382
@return A pointer to the contained object
sl@0
  4383
*/
sl@0
  4384
template <class T>
sl@0
  4385
inline T *RRef<T>::operator->()
sl@0
  4386
	{return((T *)iPtr);}
sl@0
  4387
sl@0
  4388
sl@0
  4389
sl@0
  4390
sl@0
  4391
/**
sl@0
  4392
Gets a pointer to the contained object.
sl@0
  4393
sl@0
  4394
@return A pointer to the contained object
sl@0
  4395
*/
sl@0
  4396
template <class T>
sl@0
  4397
inline RRef<T>::operator T*()
sl@0
  4398
	{return((T *)iPtr);}
sl@0
  4399
sl@0
  4400
sl@0
  4401
sl@0
  4402
sl@0
  4403
/**
sl@0
  4404
Creates a copy of the specified object, which is to be contained by
sl@0
  4405
this reference object.
sl@0
  4406
sl@0
  4407
The amount of memory set aside to contain the object is defined by the size
sl@0
  4408
of the object
sl@0
  4409
sl@0
  4410
@param anObject The object to be packaged up by this reference object.
sl@0
  4411
*/
sl@0
  4412
template <class T>
sl@0
  4413
void RRef<T>::Alloc(const T &anObject)
sl@0
  4414
	{DoAlloc(&anObject,sizeof(T));}
sl@0
  4415
sl@0
  4416
sl@0
  4417
sl@0
  4418
sl@0
  4419
/**
sl@0
  4420
Creates a copy of the specified object, which is to be contained by
sl@0
  4421
this reference object.
sl@0
  4422
sl@0
  4423
The amount of memory set aside to contain the object is defined by aSize.
sl@0
  4424
sl@0
  4425
@param anObject The object to be packaged up by this reference object.
sl@0
  4426
@param aSize    The amount of memory to be set aside to contain the object.
sl@0
  4427
                You must make sure that this is big enough.
sl@0
  4428
*/
sl@0
  4429
template <class T>
sl@0
  4430
void RRef<T>::Alloc(const T &anObject,TInt aSize)
sl@0
  4431
	{DoAlloc(&anObject,aSize);}
sl@0
  4432
sl@0
  4433
sl@0
  4434
sl@0
  4435
sl@0
  4436
/**
sl@0
  4437
Creates a copy of the specified object, which is to be contained by
sl@0
  4438
this reference object, and leaves on failure.
sl@0
  4439
sl@0
  4440
The amount of memory set aside to contain the object is defined by the size
sl@0
  4441
of the object
sl@0
  4442
sl@0
  4443
@param anObject The object to be packaged up by this reference object.
sl@0
  4444
*/
sl@0
  4445
template <class T>
sl@0
  4446
void RRef<T>::AllocL(const T &anObject)
sl@0
  4447
	{DoAllocL(&anObject,sizeof(T));}
sl@0
  4448
sl@0
  4449
sl@0
  4450
sl@0
  4451
sl@0
  4452
/**
sl@0
  4453
Creates a copy of the specified object, which is to be contained by
sl@0
  4454
this reference object, and leaves on failure.
sl@0
  4455
sl@0
  4456
The amount of memory set aside to contain the object is defined by aSize.
sl@0
  4457
sl@0
  4458
@param anObject The object to be packaged up by this reference object.
sl@0
  4459
@param aSize    The amount of memory to be set aside to contain the object.
sl@0
  4460
                You must make sure that this is big enough.
sl@0
  4461
*/
sl@0
  4462
template <class T>
sl@0
  4463
void RRef<T>::AllocL(const T &anObject,TInt aSize)
sl@0
  4464
	{DoAllocL(&anObject,aSize);}
sl@0
  4465
sl@0
  4466
sl@0
  4467
sl@0
  4468
sl@0
  4469
// Class TRegion
sl@0
  4470
inline TBool TRegion::CheckError() const
sl@0
  4471
/** 
sl@0
  4472
Tests whether the region's error flag is set.
sl@0
  4473
sl@0
  4474
The error flag may be set:
sl@0
  4475
sl@0
  4476
1. when an attempt to allocate more memory for the region fails
sl@0
  4477
sl@0
  4478
2. if an attempt is made to expand a fixed size region beyond its allocated
sl@0
  4479
   size
sl@0
  4480
sl@0
  4481
3. if ForceError() has been called.
sl@0
  4482
sl@0
  4483
Use Clear() to unset the error flag, clear the region and free all allocated 
sl@0
  4484
memory.
sl@0
  4485
sl@0
  4486
@return True, if the error flag is set; false, otherwise. 
sl@0
  4487
sl@0
  4488
@see TRegion::ForceError
sl@0
  4489
@see TRegion::Clear
sl@0
  4490
*/
sl@0
  4491
	{return(iError);}
sl@0
  4492
sl@0
  4493
sl@0
  4494
sl@0
  4495
sl@0
  4496
inline TInt TRegion::Count() const
sl@0
  4497
/**
sl@0
  4498
Gets the number of rectangles in this region.
sl@0
  4499
sl@0
  4500
@return The number of rectangles.
sl@0
  4501
*/
sl@0
  4502
	{return(iCount);}
sl@0
  4503
sl@0
  4504
sl@0
  4505
sl@0
  4506
sl@0
  4507
inline const TRect *TRegion::RectangleList() const
sl@0
  4508
/**
sl@0
  4509
Gets a pointer to the array of rectangles defining this region.
sl@0
  4510
sl@0
  4511
@return Pointer to the array of rectangles. Note that array is a standard 
sl@0
  4512
        C++ array, i.e. a concatenated set of TRect objects. Use Count() to
sl@0
  4513
		get the number of rectangles.
sl@0
  4514
sl@0
  4515
@see TRegion::Count
sl@0
  4516
*/
sl@0
  4517
	{return(((TRegion *)this)->RectangleListW());}
sl@0
  4518
sl@0
  4519
sl@0
  4520
sl@0
  4521
sl@0
  4522
inline TRegion::TRegion()
sl@0
  4523
	{}
sl@0
  4524
sl@0
  4525
sl@0
  4526
sl@0
  4527
sl@0
  4528
// Class RRegion
sl@0
  4529
inline TInt RRegion::CheckSpare() const
sl@0
  4530
/**
sl@0
  4531
Gets the number of free memory slots in the region.
sl@0
  4532
sl@0
  4533
This is the number of slots which have been allocated, minus the number in 
sl@0
  4534
use.
sl@0
  4535
sl@0
  4536
@return The number of free memory slots in the region.
sl@0
  4537
*/
sl@0
  4538
	{return(iAllocedRects-iCount);}
sl@0
  4539
sl@0
  4540
sl@0
  4541
sl@0
  4542
sl@0
  4543
// Class TRegionFix
sl@0
  4544
template <TInt S>
sl@0
  4545
inline TRegionFix<S>::TRegionFix() : TRegion(-S)
sl@0
  4546
/**
sl@0
  4547
Constructs a default fixed size region.
sl@0
  4548
*/
sl@0
  4549
	{}
sl@0
  4550
sl@0
  4551
sl@0
  4552
sl@0
  4553
sl@0
  4554
template <TInt S>
sl@0
  4555
inline TRegionFix<S>::TRegionFix(const TRect &aRect) : TRegion(-S)
sl@0
  4556
/**
sl@0
  4557
Constructs a fixed size region with a TRect.
sl@0
  4558
sl@0
  4559
@param aRect Rectangle to be added to the newly constructed region.
sl@0
  4560
*/
sl@0
  4561
	{AddRect(aRect);}
sl@0
  4562
sl@0
  4563
sl@0
  4564
sl@0
  4565
sl@0
  4566
template <TInt S>
sl@0
  4567
inline TRegionFix<S>::TRegionFix(const TRegionFix<S> &aRegion)
sl@0
  4568
/**
sl@0
  4569
Copy constructor.
sl@0
  4570
sl@0
  4571
@param aRegion The TRegionFix object to be copied.
sl@0
  4572
*/
sl@0
  4573
	{*this=aRegion;}
sl@0
  4574
sl@0
  4575
sl@0
  4576
sl@0
  4577
sl@0
  4578
template <TInt S>
sl@0
  4579
inline RRegionBuf<S>::RRegionBuf() : RRegion(-S&(~ERRegionBuf),S)
sl@0
  4580
/**
sl@0
  4581
Constructs a default object.
sl@0
  4582
sl@0
  4583
The granularity is the value of the template parameter.
sl@0
  4584
*/
sl@0
  4585
	{}
sl@0
  4586
sl@0
  4587
sl@0
  4588
sl@0
  4589
template <TInt S>
sl@0
  4590
inline RRegionBuf<S>::RRegionBuf(const RRegion &aRegion) 
sl@0
  4591
/**
sl@0
  4592
Constructs this object from the specified RRegion.
sl@0
  4593
sl@0
  4594
@param aRegion The region to assign to this RRegionBuf.
sl@0
  4595
*/
sl@0
  4596
	{*this=aRegion;}
sl@0
  4597
sl@0
  4598
sl@0
  4599
sl@0
  4600
sl@0
  4601
template <TInt S>
sl@0
  4602
inline RRegionBuf<S>::RRegionBuf(const TRect &aRect) : RRegion(-S&(~ERRegionBuf),S)
sl@0
  4603
/**
sl@0
  4604
Constructs an RRegionBuf with a TRect.
sl@0
  4605
sl@0
  4606
Its granularity is initialised to the value contained in the template argument.
sl@0
  4607
The resulting region consists of the specified single rectangle.
sl@0
  4608
sl@0
  4609
@param aRect The single rectangle with which to initialise the region.
sl@0
  4610
*/
sl@0
  4611
	{AddRect(aRect);}
sl@0
  4612
sl@0
  4613
sl@0
  4614
sl@0
  4615
sl@0
  4616
template <TInt S>
sl@0
  4617
inline RRegionBuf<S>::RRegionBuf(const RRegionBuf<S> &aRegion)
sl@0
  4618
/**
sl@0
  4619
Copy constructs from an existing RRegionBuf object.
sl@0
  4620
sl@0
  4621
@param aRegion The RRegionBuf to be copied.
sl@0
  4622
*/
sl@0
  4623
    {*this=aRegion;}
sl@0
  4624
sl@0
  4625
sl@0
  4626
sl@0
  4627
sl@0
  4628
// enum TTimerLockSpec
sl@0
  4629
inline TTimerLockSpec &operator++(TTimerLockSpec &aLock)
sl@0
  4630
	{
sl@0
  4631
	return aLock=((aLock==ETwelveOClock) ? EOneOClock : (TTimerLockSpec)((TInt)aLock+1));
sl@0
  4632
	}
sl@0
  4633
inline TTimerLockSpec operator++(TTimerLockSpec &aLock, TInt)
sl@0
  4634
	{
sl@0
  4635
	TTimerLockSpec l=aLock;
sl@0
  4636
	aLock=((aLock==ETwelveOClock) ? EOneOClock : (TTimerLockSpec)((TInt)aLock+1));
sl@0
  4637
	return l;
sl@0
  4638
	}
sl@0
  4639
sl@0
  4640
sl@0
  4641
sl@0
  4642
sl@0
  4643
// Class TCheckedUid
sl@0
  4644
inline const TUidType& TCheckedUid::UidType() const
sl@0
  4645
/**
sl@0
  4646
Gets the Uid type contained in this object.
sl@0
  4647
sl@0
  4648
@return The Uid type.
sl@0
  4649
*/
sl@0
  4650
    {return(iType);}
sl@0
  4651
sl@0
  4652
sl@0
  4653
sl@0
  4654
sl@0
  4655
// Array deletion support, uses CBase deletion (virtual d'tor) for all C-classes
sl@0
  4656
template <class T>
sl@0
  4657
/**	@internalComponent
sl@0
  4658
*/
sl@0
  4659
void _DeleteArray(T** aBegin,T** aEnd)
sl@0
  4660
	{for (;;) if (aBegin<aEnd) delete *aBegin++; else return;}
sl@0
  4661
sl@0
  4662
template <class T>
sl@0
  4663
/**	@internalComponent
sl@0
  4664
*/
sl@0
  4665
struct _ArrayUtil
sl@0
  4666
	{
sl@0
  4667
	static inline void Delete(T* aBegin,T* aEnd,CBase*)
sl@0
  4668
		{::_DeleteArray((CBase**)aBegin,(CBase**)aEnd);}
sl@0
  4669
	static inline void Delete(T* aBegin,T* aEnd,TAny*)
sl@0
  4670
		{::_DeleteArray(aBegin,aEnd);}
sl@0
  4671
	static inline void Delete(T* aArray,TInt aCount)
sl@0
  4672
		{Delete(aArray,aArray+aCount,*aArray);}
sl@0
  4673
	};
sl@0
  4674
sl@0
  4675
sl@0
  4676
sl@0
  4677
//SL:
sl@0
  4678
//#ifndef __TOOLS__
sl@0
  4679
// Template class TFixedArray
sl@0
  4680
IMPORT_C void PanicTFixedArray();
sl@0
  4681
sl@0
  4682
sl@0
  4683
sl@0
  4684
sl@0
  4685
template <class T,TInt S>
sl@0
  4686
inline TFixedArray<T,S>::TFixedArray()
sl@0
  4687
/**
sl@0
  4688
Default constructor.
sl@0
  4689
sl@0
  4690
Constructs an uninitialised C++ array.
sl@0
  4691
*/
sl@0
  4692
	{}
sl@0
  4693
sl@0
  4694
sl@0
  4695
sl@0
  4696
sl@0
  4697
template <class T,TInt S>
sl@0
  4698
inline void TFixedArray<T,S>::Copy(const T* aList,TInt aLength)
sl@0
  4699
/**
sl@0
  4700
Copies the specified set of contiguous objects into the C++ array.
sl@0
  4701
sl@0
  4702
The copy operation starts at the beginning of the array, replacing
sl@0
  4703
any existing data.
sl@0
  4704
sl@0
  4705
@param aList   A pointer to a set of contiguous objects. 
sl@0
  4706
@param aLength The number of contiguous objects to be copied. This value must
sl@0
  4707
               not be negative and must not be greater than the size of the
sl@0
  4708
			   array as defined by the integer template parameter.
sl@0
  4709
sl@0
  4710
@panic USER 133, in a debug build only, if aLength is negative or is greater
sl@0
  4711
       than the size of the array as defined by the integer template parameter.
sl@0
  4712
*/
sl@0
  4713
	{__ASSERT_DEBUG(TUint(aLength)<=TUint(S),PanicTFixedArray());Mem::Copy(iRep,aList,aLength*sizeof(T));}
sl@0
  4714
sl@0
  4715
sl@0
  4716
sl@0
  4717
sl@0
  4718
template <class T,TInt S>
sl@0
  4719
inline TFixedArray<T,S>::TFixedArray(const T* aList,TInt aLength)
sl@0
  4720
/**
sl@0
  4721
Constructs a C++ array initialised with the specified objects.
sl@0
  4722
sl@0
  4723
@param aList   A pointer to a set of contiguous objects. 
sl@0
  4724
@param aLength The number of contiguous objects to be copied. This value must
sl@0
  4725
               not be negative and must not be greater than the size of the
sl@0
  4726
			   array as defined by the integer template parameter.
sl@0
  4727
sl@0
  4728
@panic USER 133, in a debug build only, if aLength is negative or is greater
sl@0
  4729
       than the size of the array as defined by the integer template parameter.
sl@0
  4730
*/
sl@0
  4731
	{Copy(aList,aLength);}
sl@0
  4732
sl@0
  4733
sl@0
  4734
sl@0
  4735
sl@0
  4736
template <class T,TInt S>
sl@0
  4737
inline void TFixedArray<T,S>::Reset()
sl@0
  4738
/**
sl@0
  4739
Fills every element of the array with binary zeroes.
sl@0
  4740
*/
sl@0
  4741
	{Mem::FillZ(iRep,sizeof(iRep));}
sl@0
  4742
sl@0
  4743
sl@0
  4744
sl@0
  4745
sl@0
  4746
template <class T,TInt S>
sl@0
  4747
inline TInt TFixedArray<T,S>::Count() const
sl@0
  4748
/**
sl@0
  4749
Gets the size of the array.
sl@0
  4750
sl@0
  4751
For any instance of this class, the array size 
sl@0
  4752
is fixed and has the same value as the integer template parameter.
sl@0
  4753
sl@0
  4754
@return The size of the array.
sl@0
  4755
*/
sl@0
  4756
	{return S;}
sl@0
  4757
sl@0
  4758
sl@0
  4759
sl@0
  4760
sl@0
  4761
template <class T,TInt S>
sl@0
  4762
inline TInt TFixedArray<T,S>::Length() const
sl@0
  4763
/**
sl@0
  4764
Gets the size of an array element, in bytes.
sl@0
  4765
sl@0
  4766
@return The size of an array element, in bytes.
sl@0
  4767
*/
sl@0
  4768
	{return sizeof(T);}
sl@0
  4769
sl@0
  4770
sl@0
  4771
sl@0
  4772
sl@0
  4773
template <class T,TInt S>
sl@0
  4774
inline TBool TFixedArray<T,S>::InRange(TInt aIndex)
sl@0
  4775
	{return TUint(aIndex)<S;}
sl@0
  4776
sl@0
  4777
sl@0
  4778
sl@0
  4779
sl@0
  4780
template <class T,TInt S>
sl@0
  4781
inline T& TFixedArray<T,S>::operator[](TInt aIndex)
sl@0
  4782
/**
sl@0
  4783
Gets a reference to the specified element within the C++ array.
sl@0
  4784
sl@0
  4785
@param aIndex The position of the element within the array. This is an offset value; 
sl@0
  4786
              a zero value refers to the first element in the array. This value must be 
sl@0
  4787
              greater than or equal to zero and less than the size of the array.
sl@0
  4788
sl@0
  4789
@return A reference to an element of the array.
sl@0
  4790
sl@0
  4791
@panic USER 133, in a debug build only, if aIndex is negative or greater than or equal to the size
sl@0
  4792
       of the array as defined by the integer template parameter.
sl@0
  4793
*/
sl@0
  4794
	{__ASSERT_DEBUG(InRange(aIndex),PanicTFixedArray());return iRep[aIndex];}
sl@0
  4795
sl@0
  4796
sl@0
  4797
sl@0
  4798
sl@0
  4799
template <class T,TInt S>
sl@0
  4800
inline const T& TFixedArray<T,S>::operator[](TInt aIndex) const
sl@0
  4801
/**
sl@0
  4802
Gets a const reference to the specified element within the C++ array.
sl@0
  4803
sl@0
  4804
@param aIndex The position of the element within the array. This is an offset value; 
sl@0
  4805
              a zero value refers to the first element in the array. This value must be 
sl@0
  4806
              greater than or equal to zero and less than the size of the array.
sl@0
  4807
sl@0
  4808
@return A const reference to an element of the array; the element cannot be 
sl@0
  4809
        changed through this reference.
sl@0
  4810
sl@0
  4811
@panic USER 133, in a debug build only, if aIndex is negative or greater than or equal to the size
sl@0
  4812
       of the array as defined by the integer template parameter.
sl@0
  4813
*/
sl@0
  4814
	{return CONST_CAST(ThisClass&,*this)[aIndex];}
sl@0
  4815
sl@0
  4816
sl@0
  4817
sl@0
  4818
sl@0
  4819
template <class T,TInt S>
sl@0
  4820
inline T& TFixedArray<T,S>::At(TInt aIndex)
sl@0
  4821
/**
sl@0
  4822
Gets a reference to the specified element within the C++ array.
sl@0
  4823
sl@0
  4824
@param aIndex The position of the element within the array. This is an offset value; 
sl@0
  4825
              a zero value refers to the first element in the array. This value must be 
sl@0
  4826
              greater than or equal to zero and less than the size of the array.
sl@0
  4827
sl@0
  4828
@return A reference to an element of the array.
sl@0
  4829
sl@0
  4830
@panic USER 133, if aIndex is negative or greater than or equal to the size
sl@0
  4831
       of the array as defined by the integer template parameter.
sl@0
  4832
*/
sl@0
  4833
	{__ASSERT_ALWAYS(InRange(aIndex),PanicTFixedArray());return iRep[aIndex];}
sl@0
  4834
sl@0
  4835
sl@0
  4836
sl@0
  4837
sl@0
  4838
template <class T,TInt S>
sl@0
  4839
inline const T& TFixedArray<T,S>::At(TInt aIndex) const
sl@0
  4840
/**
sl@0
  4841
Gets a const reference to the specified element within the C++ array.
sl@0
  4842
sl@0
  4843
@param aIndex The position of the element within the array. This is an offset value; 
sl@0
  4844
              a zero value refers to the first element in the array. This value must be 
sl@0
  4845
              greater than or equal to zero and less than the size of the array.
sl@0
  4846
sl@0
  4847
@return A const reference to an element of the array; the element cannot be 
sl@0
  4848
        changed through this reference.
sl@0
  4849
sl@0
  4850
@panic USER 133, in a debug build only, if aIndex is negative or greater than or equal to the size
sl@0
  4851
       of the array as defined by the integer template parameter.
sl@0
  4852
*/
sl@0
  4853
	{return CONST_CAST(ThisClass&,*this).At(aIndex);}
sl@0
  4854
sl@0
  4855
sl@0
  4856
sl@0
  4857
sl@0
  4858
template <class T,TInt S>
sl@0
  4859
inline T* TFixedArray<T,S>::Begin()
sl@0
  4860
/**
sl@0
  4861
Gets a pointer to the first element of the array.
sl@0
  4862
sl@0
  4863
@return A pointer to the first element of the array.
sl@0
  4864
*/
sl@0
  4865
	{return &iRep[0];}
sl@0
  4866
sl@0
  4867
sl@0
  4868
sl@0
  4869
sl@0
  4870
template <class T,TInt S>
sl@0
  4871
inline T* TFixedArray<T,S>::End()
sl@0
  4872
/**
sl@0
  4873
Gets a pointer to the first byte following the end of the array.
sl@0
  4874
sl@0
  4875
@return A pointer to the first byte following the end of the array.
sl@0
  4876
*/
sl@0
  4877
	{return &iRep[S];}
sl@0
  4878
sl@0
  4879
sl@0
  4880
sl@0
  4881
sl@0
  4882
template <class T,TInt S>
sl@0
  4883
inline const T* TFixedArray<T,S>::Begin() const
sl@0
  4884
/**
sl@0
  4885
Gets a pointer to the first element of the array.
sl@0
  4886
sl@0
  4887
@return A pointer to a const element of the array. 
sl@0
  4888
*/
sl@0
  4889
	{return &iRep[0];}
sl@0
  4890
sl@0
  4891
sl@0
  4892
sl@0
  4893
sl@0
  4894
template <class T,TInt S>
sl@0
  4895
inline const T* TFixedArray<T,S>::End() const
sl@0
  4896
/**
sl@0
  4897
Gets a pointer to the first byte following the end of the array.
sl@0
  4898
sl@0
  4899
@return A pointer to the const first byte following the end of the array.
sl@0
  4900
*/
sl@0
  4901
	{return &iRep[S];}
sl@0
  4902
sl@0
  4903
sl@0
  4904
sl@0
  4905
sl@0
  4906
template <class T,TInt S>
sl@0
  4907
inline TInt TFixedArray<T,S>::CountFunctionR(const CBase*)
sl@0
  4908
	{return S;}
sl@0
  4909
sl@0
  4910
sl@0
  4911
sl@0
  4912
sl@0
  4913
template <class T,TInt S>
sl@0
  4914
inline const TAny* TFixedArray<T,S>::AtFunctionR(const CBase* aThis,TInt aIndex)
sl@0
  4915
	{return &REINTERPRET_CAST(const ThisClass&,*aThis)[aIndex];}
sl@0
  4916
sl@0
  4917
sl@0
  4918
sl@0
  4919
sl@0
  4920
template <class T,TInt S>
sl@0
  4921
inline TArray<T> TFixedArray<T,S>::Array() const
sl@0
  4922
/**
sl@0
  4923
Creates and returns a generic array for this C++ array.
sl@0
  4924
sl@0
  4925
@return A generic array for this C++ array.
sl@0
  4926
*/
sl@0
  4927
	{return TArray<T>(CountFunctionR,AtFunctionR,REINTERPRET_CAST(const CBase*,this));}
sl@0
  4928
sl@0
  4929
sl@0
  4930
sl@0
  4931
sl@0
  4932
template <class T,TInt S>
sl@0
  4933
inline void TFixedArray<T,S>::DeleteAll()
sl@0
  4934
/**
sl@0
  4935
Invokes the delete operator on every member of the array.
sl@0
  4936
sl@0
  4937
The function can only be used for arrays of pointers to CBase derived objects.
sl@0
  4938
sl@0
  4939
If the array is to be used after a call to this function, it is good practice 
sl@0
  4940
to call TFixedArray<class T,TInt S>::Reset() to set all array elements to 
sl@0
  4941
NULL.
sl@0
  4942
*/
sl@0
  4943
	{_ArrayUtil<T>::Delete(iRep,S);}
sl@0
  4944
//#endif
sl@0
  4945
sl@0
  4946
sl@0
  4947
sl@0
  4948
sl@0
  4949
// class User
sl@0
  4950
sl@0
  4951
inline RHeap* User::SwitchHeap(RAllocator* aHeap)
sl@0
  4952
/**
sl@0
  4953
Changes the current thread's heap.
sl@0
  4954
	
sl@0
  4955
@param aHeap A pointer to the new heap handle.
sl@0
  4956
sl@0
  4957
@return A pointer to the old heap handle.
sl@0
  4958
*/
sl@0
  4959
	{ return (RHeap*)SwitchAllocator(aHeap); }
sl@0
  4960
sl@0
  4961
sl@0
  4962
sl@0
  4963
sl@0
  4964
inline RHeap& User::Heap()
sl@0
  4965
/**
sl@0
  4966
Gets a reference to the handle to the current thread's heap.
sl@0
  4967
	
sl@0
  4968
@return A reference to the handle to the current thread's heap.
sl@0
  4969
*/
sl@0
  4970
	{ return (RHeap&)Allocator(); }
sl@0
  4971
sl@0
  4972
sl@0
  4973
sl@0
  4974
sl@0
  4975
#ifndef __REMOVE_PLATSEC_DIAGNOSTIC_STRINGS__
sl@0
  4976
sl@0
  4977
inline TBool User::CreatorHasCapability(TCapability aCapability, const char* aDiagnostic)
sl@0
  4978
	{
sl@0
  4979
	return DoCreatorHasCapability(aCapability, aDiagnostic);
sl@0
  4980
	}
sl@0
  4981
sl@0
  4982
inline TBool User::CreatorHasCapability(TCapability aCapability1, TCapability aCapability2, const char* aDiagnostic)
sl@0
  4983
	{
sl@0
  4984
	return DoCreatorHasCapability(aCapability1, aCapability2, aDiagnostic);
sl@0
  4985
	}
sl@0
  4986
sl@0
  4987
#else //__REMOVE_PLATSEC_DIAGNOSTIC_STRINGS__
sl@0
  4988
sl@0
  4989
// Only available to NULL arguments
sl@0
  4990
inline TBool User::CreatorHasCapability(TCapability aCapability, OnlyCreateWithNull /*aDiagnostic*/)
sl@0
  4991
	{
sl@0
  4992
	return DoCreatorHasCapability(aCapability);
sl@0
  4993
	}
sl@0
  4994
sl@0
  4995
inline TBool User::CreatorHasCapability(TCapability aCapability1, TCapability aCapability2, OnlyCreateWithNull /*aDiagnostic*/)
sl@0
  4996
	{
sl@0
  4997
	return DoCreatorHasCapability(aCapability1, aCapability2);
sl@0
  4998
	}
sl@0
  4999
sl@0
  5000
#ifndef __REMOVE_PLATSEC_DIAGNOSTICS__
sl@0
  5001
// For things using KSuppressPlatSecDiagnostic
sl@0
  5002
inline TBool User::CreatorHasCapability(TCapability aCapability, OnlyCreateWithNull /*aDiagnostic*/, OnlyCreateWithNull /*aSuppress*/)
sl@0
  5003
	{
sl@0
  5004
	return DoCreatorHasCapability(aCapability, KSuppressPlatSecDiagnosticMagicValue);
sl@0
  5005
	}
sl@0
  5006
sl@0
  5007
inline TBool User::CreatorHasCapability(TCapability aCapability1, TCapability aCapability2, OnlyCreateWithNull /*aDiagnostic*/, OnlyCreateWithNull /*aSuppress*/)
sl@0
  5008
	{
sl@0
  5009
	return DoCreatorHasCapability(aCapability1, aCapability2, KSuppressPlatSecDiagnosticMagicValue);
sl@0
  5010
	}
sl@0
  5011
sl@0
  5012
#endif // !__REMOVE_PLATSEC_DIAGNOSTICS__
sl@0
  5013
sl@0
  5014
#endif // !__REMOVE_PLATSEC_DIAGNOSTIC_STRINGS__
sl@0
  5015
sl@0
  5016
sl@0
  5017
inline const TAny* User::LeaveIfNull(const TAny* aPtr)
sl@0
  5018
/**
sl@0
  5019
Leaves with the reason code KErrNoMemory, if the specified pointer is NULL. 
sl@0
  5020
sl@0
  5021
If the pointer is not NULL, the function simply returns with the value of 
sl@0
  5022
the pointer.
sl@0
  5023
sl@0
  5024
Used to check pointers to const objects.
sl@0
  5025
sl@0
  5026
@param aPtr The pointer to be tested.
sl@0
  5027
sl@0
  5028
@return If the function returns, the value of aPtr.
sl@0
  5029
*/
sl@0
  5030
	{ return (const TAny*)LeaveIfNull((TAny*)aPtr); }
sl@0
  5031
sl@0
  5032
/** Sets this TSecurityInfo to the security attributes of this process. */
sl@0
  5033
inline void TSecurityInfo::SetToCurrentInfo()
sl@0
  5034
	{ new (this) TSecurityInfo(RProcess()); }
sl@0
  5035
sl@0
  5036
/** Constructs a TSecurityInfo using the security attributes of aProcess */
sl@0
  5037
inline void TSecurityInfo::Set(RProcess aProcess)
sl@0
  5038
	{ new (this) TSecurityInfo(aProcess); }
sl@0
  5039
sl@0
  5040
/** Constructs a TSecurityInfo using the security attributes of the process
sl@0
  5041
owning aThread 
sl@0
  5042
*/
sl@0
  5043
inline void TSecurityInfo::Set(RThread aThread)
sl@0
  5044
	{ new (this) TSecurityInfo(aThread); }
sl@0
  5045
sl@0
  5046
/** Constructs a TSecurityInfo using the security attributes of the process
sl@0
  5047
which sent the message aMsgPtr */
sl@0
  5048
inline void TSecurityInfo::Set(RMessagePtr2 aMsgPtr)
sl@0
  5049
	{ new (this) TSecurityInfo(aMsgPtr); }
sl@0
  5050
sl@0
  5051
#ifndef __REMOVE_PLATSEC_DIAGNOSTIC_STRINGS__
sl@0
  5052
sl@0
  5053
/** Checks this policy against the platform security attributes of aProcess.
sl@0
  5054
sl@0
  5055
	When a check fails the action taken is determined by the system wide Platform Security
sl@0
  5056
	configuration. If PlatSecDiagnostics is ON, then a diagnostic message is emitted.
sl@0
  5057
	If PlatSecEnforcement is OFF, then this function will return ETrue even though the
sl@0
  5058
	check failed.
sl@0
  5059
sl@0
  5060
@param aProcess The RProcess object to check against this TSecurityPolicy.
sl@0
  5061
@param aDiagnostic A string that will be emitted along with any diagnostic message
sl@0
  5062
							that may be issued if the policy check fails.
sl@0
  5063
							This string must be enclosed in the __PLATSEC_DIAGNOSTIC_STRING macro
sl@0
  5064
							which enables it to be easily removed from the system.
sl@0
  5065
@return ETrue if all the requirements of this TSecurityPolicy are met by the
sl@0
  5066
platform security attributes of aProcess, EFalse otherwise.
sl@0
  5067
@panic USER 190 if 'this' is an invalid SSecurityInfo object
sl@0
  5068
*/
sl@0
  5069
inline TBool TSecurityPolicy::CheckPolicy(RProcess aProcess, const char* aDiagnostic) const
sl@0
  5070
	{
sl@0
  5071
	return DoCheckPolicy(aProcess, aDiagnostic);
sl@0
  5072
	}
sl@0
  5073
sl@0
  5074
/** Checks this policy against the platform security attributes of the process
sl@0
  5075
owning aThread.
sl@0
  5076
sl@0
  5077
	When a check fails the action taken is determined by the system wide Platform Security
sl@0
  5078
	configuration. If PlatSecDiagnostics is ON, then a diagnostic message is emitted.
sl@0
  5079
	If PlatSecEnforcement is OFF, then this function will return ETrue even though the
sl@0
  5080
	check failed.
sl@0
  5081
sl@0
  5082
@param aThread The thread whose owning process' platform security attributes
sl@0
  5083
are to be checked against this TSecurityPolicy.
sl@0
  5084
@param aDiagnostic A string that will be emitted along with any diagnostic message
sl@0
  5085
							that may be issued if the policy check fails.
sl@0
  5086
							This string must be enclosed in the __PLATSEC_DIAGNOSTIC_STRING macro
sl@0
  5087
							which enables it to be easily removed from the system.
sl@0
  5088
@return ETrue if all the requirements of this TSecurityPolicy are met by the
sl@0
  5089
platform security parameters of the owning process of aThread, EFalse otherwise.
sl@0
  5090
@panic USER 190 if 'this' is an invalid SSecurityInfo object
sl@0
  5091
*/
sl@0
  5092
inline TBool TSecurityPolicy::CheckPolicy(RThread aThread, const char* aDiagnostic) const
sl@0
  5093
	{
sl@0
  5094
	return DoCheckPolicy(aThread, aDiagnostic);
sl@0
  5095
	}
sl@0
  5096
sl@0
  5097
/** Checks this policy against the platform security attributes of the process which sent
sl@0
  5098
the given message.
sl@0
  5099
sl@0
  5100
	When a check fails the action taken is determined by the system wide Platform Security
sl@0
  5101
	configuration. If PlatSecDiagnostics is ON, then a diagnostic message is emitted.
sl@0
  5102
	If PlatSecEnforcement is OFF, then this function will return ETrue even though the
sl@0
  5103
	check failed.
sl@0
  5104
sl@0
  5105
@param aMsgPtr The RMessagePtr2 object to check against this TSecurityPolicy.
sl@0
  5106
@param aDiagnostic A string that will be emitted along with any diagnostic message
sl@0
  5107
							that may be issued if the policy check fails.
sl@0
  5108
							This string must be enclosed in the __PLATSEC_DIAGNOSTIC_STRING macro
sl@0
  5109
							which enables it to be easily removed from the system.
sl@0
  5110
@return ETrue if all the requirements of this TSecurityPolicy are met by the
sl@0
  5111
platform security attributes of aMsg, EFalse otherwise.
sl@0
  5112
@panic USER 190 if 'this' is an invalid SSecurityInfo object
sl@0
  5113
*/
sl@0
  5114
inline TBool TSecurityPolicy::CheckPolicy(RMessagePtr2 aMsgPtr, const char* aDiagnostic) const
sl@0
  5115
	{
sl@0
  5116
	return DoCheckPolicy(aMsgPtr, aDiagnostic);
sl@0
  5117
	}
sl@0
  5118
sl@0
  5119
/** Checks this policy against the platform security attributes of the process which sent
sl@0
  5120
the given message.
sl@0
  5121
sl@0
  5122
	When a check fails the action taken is determined by the system wide Platform Security
sl@0
  5123
	configuration. If PlatSecDiagnostics is ON, then a diagnostic message is emitted.
sl@0
  5124
	If PlatSecEnforcement is OFF, then this function will return ETrue even though the
sl@0
  5125
	check failed.
sl@0
  5126
sl@0
  5127
@param aMsgPtr The RMessagePtr2 object to check against this TSecurityPolicy.
sl@0
  5128
@param aMissing A TSecurityInfo object which this method fills with any capabilities or IDs
sl@0
  5129
				it finds to be missing. 
sl@0
  5130
@param aDiagnostic A string that will be emitted along with any diagnostic message
sl@0
  5131
							that may be issued if the policy check fails.
sl@0
  5132
							This string must be enclosed in the __PLATSEC_DIAGNOSTIC_STRING macro
sl@0
  5133
							which enables it to be easily removed from the system.
sl@0
  5134
@return ETrue if all the requirements of this TSecurityPolicy are met by the
sl@0
  5135
platform security attributes of aMsg, EFalse otherwise.
sl@0
  5136
@panic USER 190 if 'this' is an invalid SSecurityInfo object
sl@0
  5137
sl@0
  5138
@internalComponent
sl@0
  5139
*/
sl@0
  5140
inline TBool TSecurityPolicy::CheckPolicy(RMessagePtr2 aMsgPtr, TSecurityInfo& aMissing, const char* aDiagnostic) const
sl@0
  5141
	{
sl@0
  5142
	return DoCheckPolicy(aMsgPtr, aMissing, aDiagnostic);
sl@0
  5143
	}
sl@0
  5144
sl@0
  5145
/** Checks this policy against the platform security attributes of this process' creator.
sl@0
  5146
sl@0
  5147
	When a check fails the action taken is determined by the system wide Platform Security
sl@0
  5148
	configuration. If PlatSecDiagnostics is ON, then a diagnostic message is emitted.
sl@0
  5149
	If PlatSecEnforcement is OFF, then this function will return ETrue even though the
sl@0
  5150
	check failed.
sl@0
  5151
sl@0
  5152
@param aDiagnostic A string that will be emitted along with any diagnostic message
sl@0
  5153
							that may be issued if the policy check fails.
sl@0
  5154
							This string must be enclosed in the __PLATSEC_DIAGNOSTIC_STRING macro
sl@0
  5155
							which enables it to be easily removed from the system.
sl@0
  5156
@return ETrue if all the requirements of this TSecurityPolicy are met by the
sl@0
  5157
platform security attributes of this process' creator, EFalse otherwise.
sl@0
  5158
@panic USER 190 if 'this' is an invalid SSecurityInfo object
sl@0
  5159
*/
sl@0
  5160
inline TBool TSecurityPolicy::CheckPolicyCreator(const char* aDiagnostic) const
sl@0
  5161
	{
sl@0
  5162
	return DoCheckPolicyCreator(aDiagnostic);
sl@0
  5163
	}
sl@0
  5164
sl@0
  5165
/**
sl@0
  5166
@see TSecurityPolicy::CheckPolicy(RProcess aProcess, const char* aDiagnostic)
sl@0
  5167
*/
sl@0
  5168
inline TBool TStaticSecurityPolicy::CheckPolicy(RProcess aProcess, const char* aDiagnostic) const
sl@0
  5169
	{
sl@0
  5170
	return (&(*this))->CheckPolicy(aProcess, aDiagnostic);
sl@0
  5171
	}
sl@0
  5172
sl@0
  5173
/**
sl@0
  5174
@see TSecurityPolicy::CheckPolicy(RThread aThread, const char* aDiagnostic)
sl@0
  5175
*/
sl@0
  5176
inline TBool TStaticSecurityPolicy::CheckPolicy(RThread aThread, const char* aDiagnostic) const
sl@0
  5177
	{
sl@0
  5178
	return (&(*this))->CheckPolicy(aThread, aDiagnostic);
sl@0
  5179
	}
sl@0
  5180
sl@0
  5181
/**
sl@0
  5182
@see TSecurityPolicy::CheckPolicy(RMessagePtr2 aMsgPtr, const char* aDiagnostic)
sl@0
  5183
*/
sl@0
  5184
inline TBool TStaticSecurityPolicy::CheckPolicy(RMessagePtr2 aMsgPtr, const char* aDiagnostic) const
sl@0
  5185
	{
sl@0
  5186
	return (&(*this))->CheckPolicy(aMsgPtr, aDiagnostic);
sl@0
  5187
	}
sl@0
  5188
sl@0
  5189
/**
sl@0
  5190
@see TSecurityPolicy::CheckPolicy(RMessagePtr2 aMsgPtr, TSecurityInfo& aMissing, const char* aDiagnostic)
sl@0
  5191
@internalComponent
sl@0
  5192
*/
sl@0
  5193
inline TBool TStaticSecurityPolicy::CheckPolicy(RMessagePtr2 aMsgPtr, TSecurityInfo& aMissing, const char* aDiagnostic) const
sl@0
  5194
	{
sl@0
  5195
	return (&(*this))->CheckPolicy(aMsgPtr, aMissing, aDiagnostic);
sl@0
  5196
	}
sl@0
  5197
sl@0
  5198
/**
sl@0
  5199
@see TSecurityPolicy::CheckPolicyCreator(const char* aDiagnostic)
sl@0
  5200
*/
sl@0
  5201
inline TBool TStaticSecurityPolicy::CheckPolicyCreator(const char* aDiagnostic) const
sl@0
  5202
	{
sl@0
  5203
	return (&(*this))->CheckPolicyCreator(aDiagnostic);
sl@0
  5204
	}
sl@0
  5205
sl@0
  5206
#else //__REMOVE_PLATSEC_DIAGNOSTIC_STRINGS__
sl@0
  5207
sl@0
  5208
/** Checks this policy against the platform security attributes of aProcess.
sl@0
  5209
sl@0
  5210
	When a check fails the action taken is determined by the system wide Platform Security
sl@0
  5211
	configuration. If PlatSecDiagnostics is ON, then a diagnostic message is emitted.
sl@0
  5212
	If PlatSecEnforcement is OFF, then this function will return ETrue even though the
sl@0
  5213
	check failed.
sl@0
  5214
sl@0
  5215
@param aProcess The RProcess object to check against this TSecurityPolicy.
sl@0
  5216
@param aDiagnostic A string that will be emitted along with any diagnostic message
sl@0
  5217
							that may be issued if the policy check fails.
sl@0
  5218
							This string must be enclosed in the __PLATSEC_DIAGNOSTIC_STRING macro
sl@0
  5219
							which enables it to be easily removed from the system.
sl@0
  5220
@return ETrue if all the requirements of this TSecurityPolicy are met by the
sl@0
  5221
platform security attributes of aProcess, EFalse otherwise.
sl@0
  5222
@panic USER 190 if 'this' is an invalid SSecurityInfo object
sl@0
  5223
*/
sl@0
  5224
inline TBool TSecurityPolicy::CheckPolicy(RProcess aProcess, OnlyCreateWithNull /*aDiagnostic*/) const
sl@0
  5225
	{
sl@0
  5226
	return DoCheckPolicy(aProcess);
sl@0
  5227
	}
sl@0
  5228
sl@0
  5229
/** Checks this policy against the platform security attributes of the process
sl@0
  5230
owning aThread.
sl@0
  5231
sl@0
  5232
	When a check fails the action taken is determined by the system wide Platform Security
sl@0
  5233
	configuration. If PlatSecDiagnostics is ON, then a diagnostic message is emitted.
sl@0
  5234
	If PlatSecEnforcement is OFF, then this function will return ETrue even though the
sl@0
  5235
	check failed.
sl@0
  5236
sl@0
  5237
@param aThread The thread whose owning process' platform security attributes
sl@0
  5238
are to be checked against this TSecurityPolicy.
sl@0
  5239
@param aDiagnostic A string that will be emitted along with any diagnostic message
sl@0
  5240
							that may be issued if the policy check fails.
sl@0
  5241
							This string must be enclosed in the __PLATSEC_DIAGNOSTIC_STRING macro
sl@0
  5242
							which enables it to be easily removed from the system.
sl@0
  5243
@return ETrue if all the requirements of this TSecurityPolicy are met by the
sl@0
  5244
platform security parameters of the owning process of aThread, EFalse otherwise.
sl@0
  5245
@panic USER 190 if 'this' is an invalid SSecurityInfo object
sl@0
  5246
*/
sl@0
  5247
inline TBool TSecurityPolicy::CheckPolicy(RThread aThread, OnlyCreateWithNull /*aDiagnostic*/) const
sl@0
  5248
	{
sl@0
  5249
	return DoCheckPolicy(aThread);
sl@0
  5250
	}
sl@0
  5251
sl@0
  5252
/** Checks this policy against the platform security attributes of the process which sent
sl@0
  5253
the given message.
sl@0
  5254
sl@0
  5255
	When a check fails the action taken is determined by the system wide Platform Security
sl@0
  5256
	configuration. If PlatSecDiagnostics is ON, then a diagnostic message is emitted.
sl@0
  5257
	If PlatSecEnforcement is OFF, then this function will return ETrue even though the
sl@0
  5258
	check failed.
sl@0
  5259
sl@0
  5260
@param aMsgPtr The RMessagePtr2 object to check against this TSecurityPolicy.
sl@0
  5261
@param aDiagnostic A string that will be emitted along with any diagnostic message
sl@0
  5262
							that may be issued if the policy check fails.
sl@0
  5263
							This string must be enclosed in the __PLATSEC_DIAGNOSTIC_STRING macro
sl@0
  5264
							which enables it to be easily removed from the system.
sl@0
  5265
@return ETrue if all the requirements of this TSecurityPolicy are met by the
sl@0
  5266
platform security attributes of aMsg, EFalse otherwise.
sl@0
  5267
@panic USER 190 if 'this' is an invalid SSecurityInfo object
sl@0
  5268
*/
sl@0
  5269
inline TBool TSecurityPolicy::CheckPolicy(RMessagePtr2 aMsgPtr, OnlyCreateWithNull /*aDiagnostic*/) const
sl@0
  5270
	{
sl@0
  5271
	return DoCheckPolicy(aMsgPtr);
sl@0
  5272
	}
sl@0
  5273
sl@0
  5274
/** Checks this policy against the platform security attributes of the process which sent
sl@0
  5275
the given message.
sl@0
  5276
sl@0
  5277
	When a check fails the action taken is determined by the system wide Platform Security
sl@0
  5278
	configuration. If PlatSecDiagnostics is ON, then a diagnostic message is emitted.
sl@0
  5279
	If PlatSecEnforcement is OFF, then this function will return ETrue even though the
sl@0
  5280
	check failed.
sl@0
  5281
sl@0
  5282
@param aMsgPtr The RMessagePtr2 object to check against this TSecurityPolicy.
sl@0
  5283
@param aMissing A TSecurityInfo object which this method fills with any capabilities or IDs
sl@0
  5284
				it finds to be missing. 
sl@0
  5285
@param aDiagnostic A string that will be emitted along with any diagnostic message
sl@0
  5286
							that may be issued if the policy check fails.
sl@0
  5287
							This string must be enclosed in the __PLATSEC_DIAGNOSTIC_STRING macro
sl@0
  5288
							which enables it to be easily removed from the system.
sl@0
  5289
@return ETrue if all the requirements of this TSecurityPolicy are met by the
sl@0
  5290
platform security attributes of aMsg, EFalse otherwise.
sl@0
  5291
@panic USER 190 if 'this' is an invalid SSecurityInfo object
sl@0
  5292
sl@0
  5293
@internalComponent
sl@0
  5294
*/
sl@0
  5295
inline TBool TSecurityPolicy::CheckPolicy(RMessagePtr2 aMsgPtr, TSecurityInfo& aMissing, OnlyCreateWithNull /*aDiagnostic*/) const
sl@0
  5296
	{
sl@0
  5297
	return DoCheckPolicy(aMsgPtr, aMissing);
sl@0
  5298
	}
sl@0
  5299
sl@0
  5300
/** Checks this policy against the platform security attributes of this process' creator.
sl@0
  5301
sl@0
  5302
	When a check fails the action taken is determined by the system wide Platform Security
sl@0
  5303
	configuration. If PlatSecDiagnostics is ON, then a diagnostic message is emitted.
sl@0
  5304
	If PlatSecEnforcement is OFF, then this function will return ETrue even though the
sl@0
  5305
	check failed.
sl@0
  5306
sl@0
  5307
@param aDiagnostic A string that will be emitted along with any diagnostic message
sl@0
  5308
							that may be issued if the policy check fails.
sl@0
  5309
							This string must be enclosed in the __PLATSEC_DIAGNOSTIC_STRING macro
sl@0
  5310
							which enables it to be easily removed from the system.
sl@0
  5311
@return ETrue if all the requirements of this TSecurityPolicy are met by the
sl@0
  5312
platform security attributes of this process' creator, EFalse otherwise.
sl@0
  5313
@panic USER 190 if 'this' is an invalid SSecurityInfo object
sl@0
  5314
*/
sl@0
  5315
inline TBool TSecurityPolicy::CheckPolicyCreator(OnlyCreateWithNull /*aDiagnostic*/) const
sl@0
  5316
	{
sl@0
  5317
	return DoCheckPolicyCreator();
sl@0
  5318
	}
sl@0
  5319
sl@0
  5320
#ifndef __REMOVE_PLATSEC_DIAGNOSTICS__
sl@0
  5321
inline TBool TSecurityPolicy::CheckPolicy(RProcess aProcess, OnlyCreateWithNull /*aDiagnostic*/, OnlyCreateWithNull /*aSuppress*/) const
sl@0
  5322
	{
sl@0
  5323
	return DoCheckPolicy(aProcess, KSuppressPlatSecDiagnosticMagicValue);
sl@0
  5324
	}
sl@0
  5325
sl@0
  5326
inline TBool TSecurityPolicy::CheckPolicy(RThread aThread, OnlyCreateWithNull /*aDiagnostic*/, OnlyCreateWithNull /*aSuppress*/) const
sl@0
  5327
	{
sl@0
  5328
	return DoCheckPolicy(aThread, KSuppressPlatSecDiagnosticMagicValue);
sl@0
  5329
	}
sl@0
  5330
sl@0
  5331
inline TBool TSecurityPolicy::CheckPolicy(RMessagePtr2 aMsgPtr, OnlyCreateWithNull /*aDiagnostic*/, OnlyCreateWithNull /*aSuppress*/) const
sl@0
  5332
	{
sl@0
  5333
	return DoCheckPolicy(aMsgPtr, KSuppressPlatSecDiagnosticMagicValue);
sl@0
  5334
	}
sl@0
  5335
sl@0
  5336
inline TBool TSecurityPolicy::CheckPolicy(RMessagePtr2 aMsgPtr, TSecurityInfo& aMissing, OnlyCreateWithNull /*aDiagnostic*/, OnlyCreateWithNull /*aSuppress*/) const
sl@0
  5337
	{
sl@0
  5338
	return DoCheckPolicy(aMsgPtr, aMissing, KSuppressPlatSecDiagnosticMagicValue);
sl@0
  5339
	}
sl@0
  5340
sl@0
  5341
inline TBool TSecurityPolicy::CheckPolicyCreator(OnlyCreateWithNull /*aDiagnostic*/, OnlyCreateWithNull /*aSuppress*/) const
sl@0
  5342
	{
sl@0
  5343
	return DoCheckPolicyCreator(KSuppressPlatSecDiagnosticMagicValue);
sl@0
  5344
	}
sl@0
  5345
#endif // !__REMOVE_PLATSEC_DIAGNOSTICS__
sl@0
  5346
sl@0
  5347
/**
sl@0
  5348
@see TSecurityPolicy::CheckPolicy(RProcess aProcess, const char* aDiagnostic)
sl@0
  5349
*/
sl@0
  5350
inline TBool TStaticSecurityPolicy::CheckPolicy(RProcess aProcess, OnlyCreateWithNull /*aDiagnostic*/) const
sl@0
  5351
	{
sl@0
  5352
	return (&(*this))->CheckPolicy(aProcess);
sl@0
  5353
	}
sl@0
  5354
sl@0
  5355
/**
sl@0
  5356
@see TSecurityPolicy::CheckPolicy(RThread aThread, const char* aDiagnostic)
sl@0
  5357
*/
sl@0
  5358
inline TBool TStaticSecurityPolicy::CheckPolicy(RThread aThread, OnlyCreateWithNull /*aDiagnostic*/) const
sl@0
  5359
	{
sl@0
  5360
	return (&(*this))->CheckPolicy(aThread);
sl@0
  5361
	}
sl@0
  5362
sl@0
  5363
/**
sl@0
  5364
@see TSecurityPolicy::CheckPolicy(RMessagePtr2 aMsgPtr, const char* aDiagnostic)
sl@0
  5365
*/
sl@0
  5366
inline TBool TStaticSecurityPolicy::CheckPolicy(RMessagePtr2 aMsgPtr, OnlyCreateWithNull /*aDiagnostic*/) const
sl@0
  5367
	{
sl@0
  5368
	return (&(*this))->CheckPolicy(aMsgPtr);
sl@0
  5369
	}
sl@0
  5370
sl@0
  5371
/**
sl@0
  5372
@see TSecurityPolicy::CheckPolicy(RMessagePtr2 aMsgPtr, TSecurityInfo& aMissing, const char* aDiagnostic)
sl@0
  5373
@internalComponent
sl@0
  5374
*/
sl@0
  5375
inline TBool TStaticSecurityPolicy::CheckPolicy(RMessagePtr2 aMsgPtr, TSecurityInfo& aMissing, OnlyCreateWithNull /*aDiagnostic*/) const
sl@0
  5376
	{
sl@0
  5377
	return (&(*this))->CheckPolicy(aMsgPtr, aMissing);
sl@0
  5378
	}
sl@0
  5379
sl@0
  5380
/**
sl@0
  5381
@see TSecurityPolicy::CheckPolicyCreator(const char* aDiagnostic)
sl@0
  5382
*/
sl@0
  5383
inline TBool TStaticSecurityPolicy::CheckPolicyCreator(OnlyCreateWithNull /*aDiagnostic*/) const
sl@0
  5384
	{
sl@0
  5385
	return (&(*this))->CheckPolicyCreator();
sl@0
  5386
	}
sl@0
  5387
sl@0
  5388
#ifndef __REMOVE_PLATSEC_DIAGNOSTICS__
sl@0
  5389
/**
sl@0
  5390
@see TSecurityPolicy::CheckPolicy(RProcess aProcess, const char* aDiagnostic)
sl@0
  5391
*/
sl@0
  5392
inline TBool TStaticSecurityPolicy::CheckPolicy(RProcess aProcess, OnlyCreateWithNull /*aDiagnostic*/, OnlyCreateWithNull /*aSuppress*/) const
sl@0
  5393
	{
sl@0
  5394
	return (&(*this))->CheckPolicy(aProcess, KSuppressPlatSecDiagnostic);
sl@0
  5395
	}
sl@0
  5396
sl@0
  5397
/**
sl@0
  5398
@see TSecurityPolicy::CheckPolicy(RThread aThread, const char* aDiagnostic)
sl@0
  5399
*/
sl@0
  5400
inline TBool TStaticSecurityPolicy::CheckPolicy(RThread aThread, OnlyCreateWithNull /*aDiagnostic*/, OnlyCreateWithNull /*aSuppress*/) const
sl@0
  5401
	{
sl@0
  5402
	return (&(*this))->CheckPolicy(aThread, KSuppressPlatSecDiagnostic);
sl@0
  5403
	}
sl@0
  5404
sl@0
  5405
/**
sl@0
  5406
@see TSecurityPolicy::CheckPolicy(RMessagePtr2 aMsgPtr, const char* aDiagnostic)
sl@0
  5407
*/
sl@0
  5408
inline TBool TStaticSecurityPolicy::CheckPolicy(RMessagePtr2 aMsgPtr, OnlyCreateWithNull /*aDiagnostic*/, OnlyCreateWithNull /*aSuppress*/) const
sl@0
  5409
	{
sl@0
  5410
	return (&(*this))->CheckPolicy(aMsgPtr, KSuppressPlatSecDiagnostic);
sl@0
  5411
	}
sl@0
  5412
sl@0
  5413
/**
sl@0
  5414
@see TSecurityPolicy::CheckPolicy(RMessagePtr2 aMsgPtr, TSecurityInfo& aMissing, const char* aDiagnostic)
sl@0
  5415
@internalComponent
sl@0
  5416
*/
sl@0
  5417
inline TBool TStaticSecurityPolicy::CheckPolicy(RMessagePtr2 aMsgPtr, TSecurityInfo& aMissing, OnlyCreateWithNull /*aDiagnostic*/, OnlyCreateWithNull /*aSuppress*/) const
sl@0
  5418
	{
sl@0
  5419
	return (&(*this))->CheckPolicy(aMsgPtr, aMissing, KSuppressPlatSecDiagnostic);
sl@0
  5420
	}
sl@0
  5421
sl@0
  5422
/**
sl@0
  5423
@see TSecurityPolicy::CheckPolicyCreator(const char* aDiagnostic)
sl@0
  5424
*/
sl@0
  5425
inline TBool TStaticSecurityPolicy::CheckPolicyCreator(OnlyCreateWithNull /*aDiagnostic*/, OnlyCreateWithNull /*aSuppress*/) const
sl@0
  5426
	{
sl@0
  5427
	return (&(*this))->CheckPolicyCreator(KSuppressPlatSecDiagnostic);
sl@0
  5428
	}
sl@0
  5429
#endif // !__REMOVE_PLATSEC_DIAGNOSTICS__
sl@0
  5430
sl@0
  5431
#endif //__REMOVE_PLATSEC_DIAGNOSTIC_STRINGS__
sl@0
  5432
sl@0
  5433
sl@0
  5434
sl@0
  5435
#ifndef __KERNEL_MODE__
sl@0
  5436
sl@0
  5437
/**
sl@0
  5438
Appends an object pointer onto the array.
sl@0
  5439
sl@0
  5440
The function leaves with one of the system wide error codes, if the operation fails.
sl@0
  5441
sl@0
  5442
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  5443
sl@0
  5444
@param anEntry The object pointer to be appended.
sl@0
  5445
*/
sl@0
  5446
template <class T>
sl@0
  5447
inline void RPointerArray<T>::AppendL(const T* anEntry)
sl@0
  5448
	{ User::LeaveIfError(Append(anEntry));}
sl@0
  5449
sl@0
  5450
sl@0
  5451
/**
sl@0
  5452
Inserts an object pointer into the array at the specified position.
sl@0
  5453
sl@0
  5454
The function leaves with one of the system wide error codes, if
sl@0
  5455
the operation fails.
sl@0
  5456
sl@0
  5457
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  5458
sl@0
  5459
@param anEntry The object pointer to be inserted.
sl@0
  5460
@param aPos    The position within the array where the object pointer is to be 
sl@0
  5461
               inserted. The position is relative to zero, i.e. zero implies
sl@0
  5462
			   that a pointer is inserted at the beginning of the array.
sl@0
  5463
sl@0
  5464
@panic USER 131, if aPos is negative, or is greater than the number of object
sl@0
  5465
       pointers currently in the array.
sl@0
  5466
*/
sl@0
  5467
template <class T>
sl@0
  5468
inline void RPointerArray<T>::InsertL(const T* anEntry, TInt aPos)
sl@0
  5469
	{ User::LeaveIfError(Insert(anEntry,aPos)); }
sl@0
  5470
sl@0
  5471
sl@0
  5472
/**
sl@0
  5473
Finds the first object pointer in the array which matches the specified object 
sl@0
  5474
pointer, using a sequential search.
sl@0
  5475
sl@0
  5476
Matching is based on the comparison of pointers.
sl@0
  5477
sl@0
  5478
The find operation always starts at the low index end of the array. There 
sl@0
  5479
is no assumption about the order of objects in the array.
sl@0
  5480
sl@0
  5481
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  5482
sl@0
  5483
@param anEntry The object pointer to be found.
sl@0
  5484
@return The index of the first matching object pointer within the array.
sl@0
  5485
@leave KErrNotFound, if no matching object pointer can be found.
sl@0
  5486
*/
sl@0
  5487
template <class T>
sl@0
  5488
inline TInt RPointerArray<T>::FindL(const T* anEntry) const
sl@0
  5489
	{ return User::LeaveIfError(Find(anEntry));}
sl@0
  5490
sl@0
  5491
sl@0
  5492
/**
sl@0
  5493
Finds the first object pointer in the array whose object matches the specified 
sl@0
  5494
object, using a sequential search and a matching algorithm.
sl@0
  5495
sl@0
  5496
The algorithm for determining whether two class T objects match is provided 
sl@0
  5497
by a function supplied by the caller.
sl@0
  5498
sl@0
  5499
The find operation always starts at the low index end of the array. There 
sl@0
  5500
is no assumption about the order of objects in the array.
sl@0
  5501
sl@0
  5502
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  5503
sl@0
  5504
@param anEntry    The object pointer to be found.
sl@0
  5505
@param anIdentity A package encapsulating the function which determines whether 
sl@0
  5506
                  two class T objects match.
sl@0
  5507
sl@0
  5508
@return The index of the first matching object pointer within the array.
sl@0
  5509
@leave  KErrNotFound, if no suitable object pointer can be found.
sl@0
  5510
*/
sl@0
  5511
template <class T>
sl@0
  5512
inline TInt RPointerArray<T>::FindL(const T* anEntry, TIdentityRelation<T> anIdentity) const
sl@0
  5513
	{ return User::LeaveIfError(Find(anEntry, anIdentity));}
sl@0
  5514
sl@0
  5515
sl@0
  5516
/**
sl@0
  5517
Finds the last object pointer in the array which matches the specified object 
sl@0
  5518
pointer, using a sequential search.
sl@0
  5519
sl@0
  5520
Matching is based on the comparison of pointers.
sl@0
  5521
sl@0
  5522
The find operation always starts at the high index end of the array. There 
sl@0
  5523
is no assumption about the order of objects in the array.
sl@0
  5524
sl@0
  5525
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  5526
sl@0
  5527
@param anEntry The object pointer to be found.
sl@0
  5528
@return The index of the last matching object pointer within the array.
sl@0
  5529
@leave KErrNotFound, if no matching object pointer can be found.
sl@0
  5530
*/
sl@0
  5531
template <class T>
sl@0
  5532
inline TInt RPointerArray<T>::FindReverseL(const T* anEntry) const
sl@0
  5533
	{ return User::LeaveIfError(FindReverse(anEntry));}
sl@0
  5534
sl@0
  5535
sl@0
  5536
/**
sl@0
  5537
Finds the last object pointer in the array whose object matches the specified 
sl@0
  5538
object, using a sequential search and a matching algorithm.
sl@0
  5539
sl@0
  5540
The algorithm for determining whether two class T objects match is provided 
sl@0
  5541
by a function supplied by the caller.
sl@0
  5542
sl@0
  5543
The find operation always starts at the high index end of the array. There 
sl@0
  5544
is no assumption about the order of objects in the array.
sl@0
  5545
sl@0
  5546
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  5547
sl@0
  5548
@param anEntry    The object pointer to be found.
sl@0
  5549
@param anIdentity A package encapsulating the function which determines whether 
sl@0
  5550
                  two class T objects match.
sl@0
  5551
sl@0
  5552
@return The index of the last matching object pointer within the array.
sl@0
  5553
@leave  KErrNotFound, if no suitable object pointer can be found.
sl@0
  5554
*/
sl@0
  5555
template <class T>
sl@0
  5556
inline TInt RPointerArray<T>::FindReverseL(const T* anEntry, TIdentityRelation<T> anIdentity) const
sl@0
  5557
	{ return User::LeaveIfError(FindReverse(anEntry, anIdentity));}
sl@0
  5558
sl@0
  5559
sl@0
  5560
/**
sl@0
  5561
Finds the object pointer in the array that matches the specified object
sl@0
  5562
pointer, using a binary search technique.
sl@0
  5563
sl@0
  5564
The function assumes that object pointers in the array are in address order.
sl@0
  5565
sl@0
  5566
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  5567
sl@0
  5568
@param anEntry The object pointer to be found.
sl@0
  5569
sl@0
  5570
@return The index of the matching object pointer within the array
sl@0
  5571
@leave KErrNotFound, if no suitable object pointer can be found.
sl@0
  5572
*/
sl@0
  5573
template <class T>
sl@0
  5574
inline TInt RPointerArray<T>::FindInAddressOrderL(const T* anEntry) const
sl@0
  5575
	{ return User::LeaveIfError(FindInAddressOrder(anEntry));}
sl@0
  5576
sl@0
  5577
sl@0
  5578
/**
sl@0
  5579
Finds the object pointer in the array whose object matches the specified
sl@0
  5580
object, using a binary search technique and an ordering algorithm.
sl@0
  5581
sl@0
  5582
The function assumes that existing object pointers in the array are ordered 
sl@0
  5583
so that the objects themselves are in object order as determined by an algorithm 
sl@0
  5584
supplied by the caller and packaged as a TLinearOrder<T>.
sl@0
  5585
sl@0
  5586
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  5587
sl@0
  5588
@param anEntry The object pointer to be found.
sl@0
  5589
@param anOrder A package encapsulating the function which determines the order 
sl@0
  5590
               of two class T objects.
sl@0
  5591
sl@0
  5592
@return The index of the matching object pointer within the array.
sl@0
  5593
sl@0
  5594
@leave KErrNotFound, if no suitable object pointer can be found.
sl@0
  5595
*/
sl@0
  5596
template <class T>
sl@0
  5597
inline TInt RPointerArray<T>::FindInOrderL(const T* anEntry, TLinearOrder<T> anOrder) const
sl@0
  5598
	{ return User::LeaveIfError(FindInOrder(anEntry, anOrder));}
sl@0
  5599
sl@0
  5600
sl@0
  5601
/**
sl@0
  5602
Finds the object pointer in the array that matches the specified object
sl@0
  5603
pointer, using a binary search technique.
sl@0
  5604
sl@0
  5605
The function assumes that object pointers in the array are in address order.
sl@0
  5606
sl@0
  5607
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  5608
sl@0
  5609
@param anEntry The object pointer to be found.
sl@0
  5610
@param anIndex A reference to a TInt into which the
sl@0
  5611
               function puts an index value: If the function does not leave,
sl@0
  5612
               this is the index of the matching object pointer within the
sl@0
  5613
               array. If the function leaves with KErrNotFound, this is the
sl@0
  5614
               index of the first object pointer within the array which
sl@0
  5615
               logically follows after anEntry.
sl@0
  5616
sl@0
  5617
@leave KErrNotFound, if no suitable object pointer can be found.
sl@0
  5618
*/
sl@0
  5619
template <class T>
sl@0
  5620
inline void RPointerArray<T>::FindInAddressOrderL(const T* anEntry, TInt& anIndex) const
sl@0
  5621
	{ User::LeaveIfError(FindInAddressOrder(anEntry, anIndex)); }
sl@0
  5622
sl@0
  5623
sl@0
  5624
/**
sl@0
  5625
Finds the object pointer in the array whose object matches the specified
sl@0
  5626
object, using a binary search technique and an ordering algorithm.
sl@0
  5627
sl@0
  5628
The function assumes that existing object pointers in the array are ordered 
sl@0
  5629
so that the objects themselves are in object order as determined by an
sl@0
  5630
algorithm supplied by the caller and packaged as a TLinearOrder<T>.
sl@0
  5631
sl@0
  5632
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  5633
sl@0
  5634
@param anEntry The object pointer to be found.
sl@0
  5635
@param anIndex A TInt supplied by the caller. On return, contains an
sl@0
  5636
               index value:
sl@0
  5637
               If the function does not leave, this is the index of the
sl@0
  5638
               matching object pointer within the array. 
sl@0
  5639
               If the function leaves with KErrNotFound, this is the index of
sl@0
  5640
               the first object pointer in the array whose object is bigger
sl@0
  5641
               than the entry being searched for - if no objects pointed to in
sl@0
  5642
               the array are bigger, then the index value is the same as the
sl@0
  5643
               total number of object pointers in the array.
sl@0
  5644
sl@0
  5645
@param anOrder A package encapsulating the function which determines the order 
sl@0
  5646
               of two class T objects.
sl@0
  5647
sl@0
  5648
@leave         KErrNotFound, if no suitable object pointer can be found.
sl@0
  5649
*/
sl@0
  5650
template <class T>
sl@0
  5651
inline void RPointerArray<T>::FindInOrderL(const T* anEntry, TInt& anIndex, TLinearOrder<T> anOrder) const
sl@0
  5652
	{ User::LeaveIfError(FindInOrder(anEntry, anIndex, anOrder)); }
sl@0
  5653
sl@0
  5654
sl@0
  5655
/**
sl@0
  5656
Finds the object pointer in the array that matches the specified object
sl@0
  5657
pointer, using a binary search technique.
sl@0
  5658
sl@0
  5659
Where there is more than one matching element, it finds the first, the last
sl@0
  5660
or any matching element as specified by the value of aMode.
sl@0
  5661
sl@0
  5662
The function assumes that object pointers in the array are in address order.
sl@0
  5663
sl@0
  5664
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  5665
sl@0
  5666
@param	anEntry The object pointer to be found.
sl@0
  5667
@param	aMode   Specifies whether to find the first match, the last match or
sl@0
  5668
                any match, as defined by one of the TArrayFindMode enum values.
sl@0
  5669
sl@0
  5670
@return If there is a matching element, the array index of a matching element -  what
sl@0
  5671
        the index refers to depends on the value of aMode:
sl@0
  5672
        if this is EArrayFindMode_First, then the index refers to the first matching element;
sl@0
  5673
        if this is EArrayFindMode_Any, then the index can refer to any of the matching elements;
sl@0
  5674
        if this is EArrayFindMode_Last, then the index refers to first element that follows the
sl@0
  5675
        last matching element - if the last matching element is also the last element of the array,
sl@0
  5676
        then the index value is the same as the total number of elements in the array.
sl@0
  5677
        
sl@0
  5678
@leave  KErrNotFound if no matching entry exists.
sl@0
  5679
sl@0
  5680
@see TArrayFindMode
sl@0
  5681
*/
sl@0
  5682
template <class T>
sl@0
  5683
inline TInt RPointerArray<T>::SpecificFindInAddressOrderL(const T* anEntry, TInt aMode) const
sl@0
  5684
	{ return User::LeaveIfError(SpecificFindInAddressOrder(anEntry, aMode));}
sl@0
  5685
sl@0
  5686
sl@0
  5687
/**
sl@0
  5688
Finds the object pointer in the array whose object matches the specified
sl@0
  5689
object, using a binary search technique and an ordering algorithm.
sl@0
  5690
sl@0
  5691
In the case that there is more than one matching element finds the first, last
sl@0
  5692
or any match as specified by the value of aMode.
sl@0
  5693
sl@0
  5694
The function assumes that existing object pointers in the array are ordered 
sl@0
  5695
so that the objects themselves are in object order as determined by an algorithm 
sl@0
  5696
supplied by the caller and packaged as a TLinearOrder<T> type.
sl@0
  5697
sl@0
  5698
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  5699
sl@0
  5700
@param anEntry The object pointer to be found.
sl@0
  5701
@param anOrder A package encapsulating the function which determines the order 
sl@0
  5702
               of two class T objects.
sl@0
  5703
@param	aMode  Specifies whether to find the first match, the last match or any match,
sl@0
  5704
               as defined by one of the TArrayFindMode enum values.
sl@0
  5705
sl@0
  5706
@return If there is a matching element, the array index of a matching
sl@0
  5707
        element -  what the index refers to depends on the value of aMode:
sl@0
  5708
        if this is EArrayFindMode_First, then the index refers to the first matching element;
sl@0
  5709
        if this is EArrayFindMode_Any, then the index can refer to any of the matching elements;
sl@0
  5710
        if this is EArrayFindMode_Last, then the index refers to first element that follows
sl@0
  5711
        the last matching element - if the last matching element is also the last element of the array, then
sl@0
  5712
        the index value is the same as the total number of elements in the array.
sl@0
  5713
sl@0
  5714
@leave  KErrNotFound if no matching entry exists.
sl@0
  5715
sl@0
  5716
@see TArrayFindMode
sl@0
  5717
*/
sl@0
  5718
template <class T>
sl@0
  5719
inline TInt RPointerArray<T>::SpecificFindInOrderL(const T* anEntry, TLinearOrder<T> anOrder, TInt aMode) const
sl@0
  5720
	{ return User::LeaveIfError(SpecificFindInOrder(anEntry, anOrder, aMode));}
sl@0
  5721
sl@0
  5722
sl@0
  5723
/**
sl@0
  5724
Finds the object pointer in the array that matches the specified object
sl@0
  5725
pointer, using a binary search technique.
sl@0
  5726
sl@0
  5727
Where there is more than one matching element, it finds the first, the last or
sl@0
  5728
any matching element as specified by the value of aMode.
sl@0
  5729
sl@0
  5730
The function assumes that object pointers in the array are in address order.
sl@0
  5731
sl@0
  5732
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  5733
sl@0
  5734
@param anEntry The object pointer to be found.
sl@0
  5735
@param anIndex A TInt type supplied by the caller. On return, it contains an index
sl@0
  5736
               value depending on whether a match is found and on the value of aMode.
sl@0
  5737
               If there is no matching element in the array, then this is the  index
sl@0
  5738
               of the first element in the array that is bigger than the element being
sl@0
  5739
               searched for - if no elements in the array are bigger, then the index
sl@0
  5740
               value is the same as the total number of elements in the array.
sl@0
  5741
               If there is a matching element, then what the index refers to depends
sl@0
  5742
               on the value of aMode:
sl@0
  5743
               if this is EArrayFindMode_First, then the index refers to the first matching element;
sl@0
  5744
               if this is EArrayFindMode_Any, then the index can refer to any of the matching elements;
sl@0
  5745
               if this is EArrayFindMode_Last, then the index refers to first element that follows
sl@0
  5746
               the last matching element - if the last matching element is also the last element
sl@0
  5747
               of the array, then the index value is the same as the total number of elements in the array.
sl@0
  5748
               
sl@0
  5749
@param	aMode  Specifies whether to find the first match, the last match or any match, as defined by
sl@0
  5750
               one of the TArrayFindMode enum values.
sl@0
  5751
sl@0
  5752
@leave  KErrNotFound, if no suitable object pointer can be found.
sl@0
  5753
sl@0
  5754
@see TArrayFindMode
sl@0
  5755
*/
sl@0
  5756
template <class T>
sl@0
  5757
inline void RPointerArray<T>::SpecificFindInAddressOrderL(const T* anEntry, TInt& anIndex, TInt aMode) const
sl@0
  5758
	{ User::LeaveIfError(SpecificFindInAddressOrder(anEntry, anIndex, aMode)); }
sl@0
  5759
sl@0
  5760
sl@0
  5761
/**
sl@0
  5762
Finds the object pointer in the array whose object matches the specified
sl@0
  5763
object, using a binary search technique and an ordering algorithm.
sl@0
  5764
sl@0
  5765
Where there is more than one matching element, it finds the first, the last or any
sl@0
  5766
matching element as specified by the value of aMode.
sl@0
  5767
sl@0
  5768
The function assumes that existing object pointers in the array are ordered 
sl@0
  5769
so that the objects themselves are in object order as determined by an
sl@0
  5770
algorithm supplied by the caller and packaged as a TLinearOrder<T>.
sl@0
  5771
sl@0
  5772
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  5773
sl@0
  5774
@param anEntry The object pointer to be found.
sl@0
  5775
@param anIndex A TInt type supplied by the caller. On return, it contains an index
sl@0
  5776
               value depending on whether a match is found and on the value of aMode.
sl@0
  5777
               If there is no matching element in the array, then this is
sl@0
  5778
               the index of the first element in the array that is bigger than
sl@0
  5779
               the element being searched for - if no elements in the array are bigger,
sl@0
  5780
               then the index value is the same as the total number of elements in the array.
sl@0
  5781
               If there is a matching element, then what the index refers to depends
sl@0
  5782
               on the value of aMode:
sl@0
  5783
               if this is EArrayFindMode_First, then the index refers to the first matching element;
sl@0
  5784
               if this is EArrayFindMode_Any, then the index can refer to any of the matching elements;
sl@0
  5785
               if this is EArrayFindMode_Last, then the index refers to first element that follows
sl@0
  5786
               the last matching element - if the last matching element is also the last element of
sl@0
  5787
               the array, then the index value is the same as the total number of elements in the array.
sl@0
  5788
sl@0
  5789
@param anOrder A package encapsulating the function which determines the order 
sl@0
  5790
               of two class T objects.
sl@0
  5791
@param	aMode  Specifies whether to find the first match, the last match or any match, as defined by
sl@0
  5792
               one of the TArrayFindModeenum values.
sl@0
  5793
sl@0
  5794
@leave  KErrNotFound, if no suitable object pointer can be found.
sl@0
  5795
sl@0
  5796
@see TArrayFindMode
sl@0
  5797
*/
sl@0
  5798
template <class T>
sl@0
  5799
inline void RPointerArray<T>::SpecificFindInOrderL(const T* anEntry, TInt& anIndex, TLinearOrder<T> anOrder, TInt aMode) const
sl@0
  5800
	{ User::LeaveIfError(SpecificFindInOrder(anEntry, anIndex, anOrder, aMode)); }
sl@0
  5801
sl@0
  5802
sl@0
  5803
/**
sl@0
  5804
Inserts an object pointer into the array in address order.
sl@0
  5805
sl@0
  5806
No duplicate entries are permitted.
sl@0
  5807
The function assumes that existing object pointers within the array are in 
sl@0
  5808
address order.
sl@0
  5809
sl@0
  5810
The function leaves with one of the system wide error codes, if the operation fails.
sl@0
  5811
sl@0
  5812
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  5813
sl@0
  5814
@param anEntry The object pointer to be inserted.
sl@0
  5815
*/
sl@0
  5816
template <class T>
sl@0
  5817
inline void RPointerArray<T>::InsertInAddressOrderL(const T* anEntry)
sl@0
  5818
	{ User::LeaveIfError(InsertInAddressOrder(anEntry)); }
sl@0
  5819
sl@0
  5820
sl@0
  5821
/**
sl@0
  5822
Inserts an object pointer into the array so that the object itself is in object 
sl@0
  5823
order.
sl@0
  5824
sl@0
  5825
The algorithm for determining the order of two class T objects is provided 
sl@0
  5826
by a function supplied by the caller.
sl@0
  5827
sl@0
  5828
No duplicate entries are permitted.
sl@0
  5829
sl@0
  5830
The function assumes that the array is ordered so that the referenced objects 
sl@0
  5831
are in object order.
sl@0
  5832
sl@0
  5833
The function leaves with one of the system wide error codes, if the operation fails.
sl@0
  5834
sl@0
  5835
Note that the array remains unchanged following an attempt to insert a duplicate
sl@0
  5836
entry.
sl@0
  5837
sl@0
  5838
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  5839
sl@0
  5840
@param anEntry The object pointer to be inserted.
sl@0
  5841
@param anOrder A package encapsulating the function which determines the order 
sl@0
  5842
               of two class T objects.
sl@0
  5843
*/
sl@0
  5844
template <class T>
sl@0
  5845
inline void RPointerArray<T>::InsertInOrderL(const T* anEntry, TLinearOrder<T> anOrder)
sl@0
  5846
	{ User::LeaveIfError(InsertInOrder(anEntry, anOrder)); }
sl@0
  5847
sl@0
  5848
sl@0
  5849
/**
sl@0
  5850
Inserts an object pointer into the array in address order, allowing duplicates.
sl@0
  5851
sl@0
  5852
If the new object pointer is a duplicate of an existing object pointer in 
sl@0
  5853
the array, then the new pointer is inserted after the existing one. If more 
sl@0
  5854
than one duplicate object pointer already exists in the array, then any new 
sl@0
  5855
duplicate pointer is inserted after the last one.
sl@0
  5856
sl@0
  5857
The function assumes that existing object pointers within the array are in 
sl@0
  5858
address order.
sl@0
  5859
sl@0
  5860
The function leaves with one of the system wide error codes, if the operation fails.
sl@0
  5861
sl@0
  5862
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  5863
sl@0
  5864
@param anEntry The object pointer to be inserted.
sl@0
  5865
*/
sl@0
  5866
template <class T>
sl@0
  5867
inline void RPointerArray<T>::InsertInAddressOrderAllowRepeatsL(const T* anEntry)
sl@0
  5868
	{ User::LeaveIfError(InsertInAddressOrderAllowRepeats(anEntry)); }
sl@0
  5869
sl@0
  5870
sl@0
  5871
/**
sl@0
  5872
Inserts an object pointer into the array so that the object itself is in object 
sl@0
  5873
order, allowing duplicates
sl@0
  5874
sl@0
  5875
The algorithm for determining the order of two class T objects is provided 
sl@0
  5876
by a function supplied by the caller.
sl@0
  5877
sl@0
  5878
If the specified object is a duplicate of an existing object, then the new 
sl@0
  5879
pointer is inserted after the pointer to the existing object. If more than 
sl@0
  5880
one duplicate object already exists, then the new pointer is inserted after 
sl@0
  5881
the pointer to the last one.
sl@0
  5882
sl@0
  5883
The function leaves with one of the system wide error codes, if the operation fails.
sl@0
  5884
sl@0
  5885
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  5886
sl@0
  5887
@param anEntry The object pointer to be inserted. 
sl@0
  5888
@param anOrder A package encapsulating the function which determines the order 
sl@0
  5889
               of two class T objects.
sl@0
  5890
*/
sl@0
  5891
template <class T>
sl@0
  5892
inline void RPointerArray<T>::InsertInOrderAllowRepeatsL(const T* anEntry, TLinearOrder<T> anOrder)
sl@0
  5893
	{ User::LeaveIfError(InsertInOrderAllowRepeats(anEntry, anOrder)); }
sl@0
  5894
sl@0
  5895
sl@0
  5896
sl@0
  5897
/**
sl@0
  5898
Reserves space for the specified number of elements.
sl@0
  5899
sl@0
  5900
After a call to this function, the memory allocated to the array is sufficient 
sl@0
  5901
to hold the number of object pointers specified. Adding new object pointers to the array 
sl@0
  5902
does not result in a re-allocation of memory until the the total number of 
sl@0
  5903
pointers exceeds the specified count.
sl@0
  5904
sl@0
  5905
@param	aCount	The number of object pointers for which space should be reserved
sl@0
  5906
@leave KErrNoMemory	If the requested amount of memory could not be allocated
sl@0
  5907
*/
sl@0
  5908
template <class T>
sl@0
  5909
inline void RPointerArray<T>::ReserveL(TInt aCount)
sl@0
  5910
	{ User::LeaveIfError(RPointerArrayBase::DoReserve(aCount)); }
sl@0
  5911
sl@0
  5912
sl@0
  5913
sl@0
  5914
// Specialization for RPointerArray<TAny>
sl@0
  5915
sl@0
  5916
/**
sl@0
  5917
Appends an pointer onto the array.
sl@0
  5918
sl@0
  5919
The function leaves with one of the system wide error codes, if the operation fails.
sl@0
  5920
sl@0
  5921
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  5922
sl@0
  5923
@param anEntry The pointer to be appended.
sl@0
  5924
*/
sl@0
  5925
inline void RPointerArray<TAny>::AppendL(const TAny* anEntry)
sl@0
  5926
	{ User::LeaveIfError(Append(anEntry));}
sl@0
  5927
sl@0
  5928
sl@0
  5929
/**
sl@0
  5930
Inserts an pointer into the array at the specified position.
sl@0
  5931
sl@0
  5932
The function leaves with one of the system wide error codes, if
sl@0
  5933
the operation fails.
sl@0
  5934
sl@0
  5935
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  5936
sl@0
  5937
@param anEntry The pointer to be inserted.
sl@0
  5938
@param aPos    The position within the array where the pointer is to be 
sl@0
  5939
               inserted. The position is relative to zero, i.e. zero implies
sl@0
  5940
			   that a pointer is inserted at the beginning of the array.
sl@0
  5941
sl@0
  5942
@panic USER 131, if aPos is negative, or is greater than the number of object
sl@0
  5943
       pointers currently in the array.
sl@0
  5944
*/
sl@0
  5945
inline void RPointerArray<TAny>::InsertL(const TAny* anEntry, TInt aPos)
sl@0
  5946
	{ User::LeaveIfError(Insert(anEntry,aPos)); }
sl@0
  5947
sl@0
  5948
sl@0
  5949
/**
sl@0
  5950
Finds the first pointer in the array which matches the specified pointer, using
sl@0
  5951
a sequential search.
sl@0
  5952
sl@0
  5953
Matching is based on the comparison of pointers.
sl@0
  5954
sl@0
  5955
The find operation always starts at the low index end of the array. There 
sl@0
  5956
is no assumption about the order of objects in the array.
sl@0
  5957
sl@0
  5958
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  5959
sl@0
  5960
@param anEntry The pointer to be found.
sl@0
  5961
@return The index of the first matching pointer within the array.
sl@0
  5962
@leave KErrNotFound, if no matching pointer can be found.
sl@0
  5963
*/
sl@0
  5964
inline TInt RPointerArray<TAny>::FindL(const TAny* anEntry) const
sl@0
  5965
	{ return User::LeaveIfError(Find(anEntry));}
sl@0
  5966
sl@0
  5967
sl@0
  5968
/**
sl@0
  5969
Finds the last pointer in the array which matches the specified pointer, using
sl@0
  5970
a sequential search.
sl@0
  5971
sl@0
  5972
Matching is based on the comparison of pointers.
sl@0
  5973
sl@0
  5974
The find operation always starts at the high index end of the array. There 
sl@0
  5975
is no assumption about the order of objects in the array.
sl@0
  5976
sl@0
  5977
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  5978
sl@0
  5979
@param anEntry The pointer to be found.
sl@0
  5980
@return The index of the last matching pointer within the array.
sl@0
  5981
@leave KErrNotFound, if no matching pointer can be found.
sl@0
  5982
*/
sl@0
  5983
inline TInt RPointerArray<TAny>::FindReverseL(const TAny* anEntry) const
sl@0
  5984
	{ return User::LeaveIfError(FindReverse(anEntry));}
sl@0
  5985
sl@0
  5986
sl@0
  5987
/**
sl@0
  5988
Finds the pointer in the array that matches the specified pointer, using a
sl@0
  5989
binary search technique.
sl@0
  5990
sl@0
  5991
The function assumes that pointers in the array are in address order.
sl@0
  5992
sl@0
  5993
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  5994
sl@0
  5995
@param anEntry The pointer to be found.
sl@0
  5996
sl@0
  5997
@return The index of the matching pointer within the array
sl@0
  5998
@leave KErrNotFound, if no suitable pointer can be found.
sl@0
  5999
*/
sl@0
  6000
inline TInt RPointerArray<TAny>::FindInAddressOrderL(const TAny* anEntry) const
sl@0
  6001
	{ return User::LeaveIfError(FindInAddressOrder(anEntry));}
sl@0
  6002
sl@0
  6003
sl@0
  6004
/**
sl@0
  6005
Finds the pointer in the array that matches the specified pointer, using a
sl@0
  6006
binary search technique.
sl@0
  6007
sl@0
  6008
The function assumes that pointers in the array are in address order.
sl@0
  6009
sl@0
  6010
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  6011
sl@0
  6012
@param anEntry The pointer to be found.
sl@0
  6013
@param anIndex A reference to a TInt into which the
sl@0
  6014
               function puts an index value: If the function does not leave,
sl@0
  6015
			   this is the index of the matching pointer within the array. If the
sl@0
  6016
			   function leaves with KErrNotFound, this is the index of the last
sl@0
  6017
			   pointer within the array which logically precedes
sl@0
  6018
			   anEntry.
sl@0
  6019
sl@0
  6020
@leave KErrNotFound, if no suitable pointer can be found.
sl@0
  6021
*/
sl@0
  6022
inline void RPointerArray<TAny>::FindInAddressOrderL(const TAny* anEntry, TInt& anIndex) const
sl@0
  6023
	{ User::LeaveIfError(FindInAddressOrder(anEntry, anIndex)); }
sl@0
  6024
sl@0
  6025
sl@0
  6026
/**
sl@0
  6027
Finds the pointer in the array that matches the specified pointer, using a
sl@0
  6028
binary search technique.
sl@0
  6029
sl@0
  6030
Where there is more than one matching element, it finds the first, the last
sl@0
  6031
or any matching element as specified by the value of aMode.
sl@0
  6032
sl@0
  6033
The function assumes that pointers in the array are in address order.
sl@0
  6034
sl@0
  6035
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  6036
sl@0
  6037
@param	anEntry The pointer to be found.
sl@0
  6038
@param	aMode   Specifies whether to find the first match, the last match or
sl@0
  6039
                any match, as defined by one of the TArrayFindMode enum values.
sl@0
  6040
sl@0
  6041
@return If there is a matching element, the array index of a matching element -  what
sl@0
  6042
        the index refers to depends on the value of aMode:
sl@0
  6043
        if this is EArrayFindMode_First, then the index refers to the first matching element;
sl@0
  6044
        if this is EArrayFindMode_Any, then the index can refer to any of the matching elements;
sl@0
  6045
        if this is EArrayFindMode_Last, then the index refers to first element that follows the
sl@0
  6046
        last matching element - if the last matching element is also the last element of the array,
sl@0
  6047
        then the index value is the same as the total number of elements in the array.
sl@0
  6048
        
sl@0
  6049
@leave  KErrNotFound if no matching entry exists.
sl@0
  6050
sl@0
  6051
@see TArrayFindMode
sl@0
  6052
*/
sl@0
  6053
inline TInt RPointerArray<TAny>::SpecificFindInAddressOrderL(const TAny* anEntry, TInt aMode) const
sl@0
  6054
	{ return User::LeaveIfError(SpecificFindInAddressOrder(anEntry, aMode));}
sl@0
  6055
sl@0
  6056
sl@0
  6057
/**
sl@0
  6058
Finds the pointer in the array that matches the specified pointer, using a
sl@0
  6059
binary search technique.
sl@0
  6060
sl@0
  6061
Where there is more than one matching element, it finds the first, the last or
sl@0
  6062
any matching element as specified by the value of aMode.
sl@0
  6063
sl@0
  6064
The function assumes that pointers in the array are in address order.
sl@0
  6065
sl@0
  6066
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  6067
sl@0
  6068
@param anEntry The pointer to be found.
sl@0
  6069
@param anIndex A TInt type supplied by the caller. On return, it contains an index
sl@0
  6070
               value depending on whether a match is found and on the value of aMode.
sl@0
  6071
               If there is no matching element in the array, then this is the  index
sl@0
  6072
               of the first element in the array that is bigger than the element being
sl@0
  6073
               searched for - if no elements in the array are bigger, then the index
sl@0
  6074
               value is the same as the total number of elements in the array.
sl@0
  6075
               If there is a matching element, then what the index refers to depends
sl@0
  6076
               on the value of aMode:
sl@0
  6077
               if this is EArrayFindMode_First, then the index refers to the first matching element;
sl@0
  6078
               if this is EArrayFindMode_Any, then the index can refer to any of the matching elements;
sl@0
  6079
               if this is EArrayFindMode_Last, then the index refers to first element that follows
sl@0
  6080
               the last matching element - if the last matching element is also the last element
sl@0
  6081
               of the array, then the index value is the same as the total number of elements in the array.
sl@0
  6082
               
sl@0
  6083
@param	aMode  Specifies whether to find the first match, the last match or any match, as defined by
sl@0
  6084
               one of the TArrayFindMode enum values.
sl@0
  6085
sl@0
  6086
@leave  KErrNotFound, if no suitable pointer can be found.
sl@0
  6087
sl@0
  6088
@see TArrayFindMode
sl@0
  6089
*/
sl@0
  6090
inline void RPointerArray<TAny>::SpecificFindInAddressOrderL(const TAny* anEntry, TInt& anIndex, TInt aMode) const
sl@0
  6091
	{ User::LeaveIfError(SpecificFindInAddressOrder(anEntry, anIndex, aMode)); }
sl@0
  6092
sl@0
  6093
sl@0
  6094
/**
sl@0
  6095
Inserts an pointer into the array in address order.
sl@0
  6096
sl@0
  6097
No duplicate entries are permitted.  The function assumes that existing pointers
sl@0
  6098
within the array are in address order.
sl@0
  6099
sl@0
  6100
The function leaves with one of the system wide error codes, if the operation fails.
sl@0
  6101
sl@0
  6102
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  6103
sl@0
  6104
@param anEntry The pointer to be inserted.
sl@0
  6105
*/
sl@0
  6106
inline void RPointerArray<TAny>::InsertInAddressOrderL(const TAny* anEntry)
sl@0
  6107
	{ User::LeaveIfError(InsertInAddressOrder(anEntry)); }
sl@0
  6108
sl@0
  6109
sl@0
  6110
/**
sl@0
  6111
Inserts an pointer into the array in address order, allowing duplicates.
sl@0
  6112
sl@0
  6113
If the new pointer is a duplicate of an existing pointer in the array, then the
sl@0
  6114
new pointer is inserted after the existing one. If more than one duplicate
sl@0
  6115
pointer already exists in the array, then any new duplicate pointer is inserted
sl@0
  6116
after the last one.
sl@0
  6117
sl@0
  6118
The function assumes that existing pointers within the array are in address
sl@0
  6119
order.
sl@0
  6120
sl@0
  6121
The function leaves with one of the system wide error codes, if the operation fails.
sl@0
  6122
sl@0
  6123
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  6124
sl@0
  6125
@param anEntry The pointer to be inserted.
sl@0
  6126
*/
sl@0
  6127
inline void RPointerArray<TAny>::InsertInAddressOrderAllowRepeatsL(const TAny* anEntry)
sl@0
  6128
	{ User::LeaveIfError(InsertInAddressOrderAllowRepeats(anEntry)); }
sl@0
  6129
sl@0
  6130
sl@0
  6131
/**
sl@0
  6132
Apends an object onto the array.
sl@0
  6133
sl@0
  6134
The function leaves with one of the system wide error codes, if the operation fails.
sl@0
  6135
sl@0
  6136
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  6137
sl@0
  6138
@param anEntry    A reference to the object of type class T to be appended.
sl@0
  6139
*/
sl@0
  6140
template <class T>
sl@0
  6141
inline void RArray<T>::AppendL(const T& anEntry)
sl@0
  6142
	{ User::LeaveIfError(Append(anEntry));}
sl@0
  6143
sl@0
  6144
sl@0
  6145
/**
sl@0
  6146
Inserts an object into the array at a specified position.
sl@0
  6147
sl@0
  6148
The function leaves with one of the system wide error codes, if the operation fails.
sl@0
  6149
sl@0
  6150
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  6151
sl@0
  6152
@param anEntry The class T object to be inserted.
sl@0
  6153
@param aPos    The position within the array where the object is to
sl@0
  6154
               be inserted. The position is relative to zero, i.e. zero
sl@0
  6155
			   implies that an object is inserted at the beginning of
sl@0
  6156
			   the array.
sl@0
  6157
			   
sl@0
  6158
@panic USER 131, if aPos is negative or is greater than the number of objects
sl@0
  6159
       currently in the array.
sl@0
  6160
*/
sl@0
  6161
template <class T>
sl@0
  6162
inline void RArray<T>::InsertL(const T& anEntry, TInt aPos)
sl@0
  6163
	{ User::LeaveIfError(Insert(anEntry, aPos));}
sl@0
  6164
sl@0
  6165
sl@0
  6166
/**
sl@0
  6167
Finds the first object in the array which matches the specified object using 
sl@0
  6168
a sequential search.
sl@0
  6169
sl@0
  6170
Matching is based on the comparison of a TInt value at the key offset position 
sl@0
  6171
within the objects.
sl@0
  6172
sl@0
  6173
For classes which define their own equality operator (==), the alternative method
sl@0
  6174
FindL(const T& anEntry, TIdentityRelation<T> anIdentity) is recommended.
sl@0
  6175
sl@0
  6176
The find operation always starts at the low index end of the array. There 
sl@0
  6177
is no assumption about the order of objects in the array.
sl@0
  6178
sl@0
  6179
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  6180
sl@0
  6181
@param anEntry A reference to an object of type class T to be used for matching.
sl@0
  6182
sl@0
  6183
@return The index of the first matching object within the array. 
sl@0
  6184
@leave  KErrNotFound, if no matching object can be found.
sl@0
  6185
*/
sl@0
  6186
template <class T>
sl@0
  6187
inline TInt RArray<T>::FindL(const T& anEntry) const
sl@0
  6188
	{ return User::LeaveIfError(Find(anEntry));}
sl@0
  6189
sl@0
  6190
sl@0
  6191
/**
sl@0
  6192
Finds the first object in the array which matches the specified object using 
sl@0
  6193
a sequential search and a matching algorithm.
sl@0
  6194
sl@0
  6195
The algorithm for determining whether two class T type objects match is provided 
sl@0
  6196
by a function supplied by the caller.
sl@0
  6197
sl@0
  6198
Such a function need not be supplied if an equality operator (==) is defined for class T. 
sl@0
  6199
In this case, default construction of anIdentity provides matching.
sl@0
  6200
sl@0
  6201
See Find(const T& anEntry, TIdentityRelation<T> anIdentity) for more details.
sl@0
  6202
sl@0
  6203
The find operation always starts at the low index end of the array. There 
sl@0
  6204
is no assumption about the order of objects in the array.
sl@0
  6205
sl@0
  6206
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  6207
sl@0
  6208
@param anEntry    A reference to an object of type class T to be used
sl@0
  6209
                  for matching.
sl@0
  6210
@param anIdentity A package encapsulating the function which determines whether 
sl@0
  6211
                  two class T type objects match.
sl@0
  6212
sl@0
  6213
@return The index of the first matching object within the array.
sl@0
  6214
@leave  KErrNotFound, if no matching object can be found.
sl@0
  6215
*/
sl@0
  6216
template <class T>
sl@0
  6217
inline TInt RArray<T>::FindL(const T& anEntry, TIdentityRelation<T> anIdentity) const
sl@0
  6218
	{ return User::LeaveIfError(Find(anEntry, anIdentity));}
sl@0
  6219
sl@0
  6220
sl@0
  6221
/**
sl@0
  6222
Finds the last object in the array which matches the specified object using 
sl@0
  6223
a sequential search.
sl@0
  6224
sl@0
  6225
Matching is based on the comparison of a TInt value at the key offset position 
sl@0
  6226
within the objects.
sl@0
  6227
sl@0
  6228
For classes which define their own equality operator (==), the alternative method
sl@0
  6229
FindReverseL(const T& anEntry, TIdentityRelation<T> anIdentity) is recommended.
sl@0
  6230
sl@0
  6231
The find operation always starts at the high index end of the array. There 
sl@0
  6232
is no assumption about the order of objects in the array.
sl@0
  6233
sl@0
  6234
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  6235
sl@0
  6236
@param anEntry A reference to an object of type class T to be used for matching.
sl@0
  6237
sl@0
  6238
@return The index of the last matching object within the array. 
sl@0
  6239
@leave  KErrNotFound, if no matching object can be found.
sl@0
  6240
*/
sl@0
  6241
template <class T>
sl@0
  6242
inline TInt RArray<T>::FindReverseL(const T& anEntry) const
sl@0
  6243
	{ return User::LeaveIfError(FindReverse(anEntry));}
sl@0
  6244
sl@0
  6245
sl@0
  6246
/**
sl@0
  6247
Finds the last object in the array which matches the specified object using 
sl@0
  6248
a sequential search and a matching algorithm.
sl@0
  6249
sl@0
  6250
The algorithm for determining whether two class T type objects match is provided 
sl@0
  6251
by a function supplied by the caller.
sl@0
  6252
sl@0
  6253
Such a function need not be supplied if an equality operator (==) is defined for class T. 
sl@0
  6254
In this case, default construction of anIdentity provides matching.
sl@0
  6255
sl@0
  6256
See Find(const T& anEntry, TIdentityRelation<T> anIdentity) for more details.
sl@0
  6257
sl@0
  6258
The find operation always starts at the high index end of the array. There 
sl@0
  6259
is no assumption about the order of objects in the array.
sl@0
  6260
sl@0
  6261
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  6262
sl@0
  6263
@param anEntry    A reference to an object of type class T to be used
sl@0
  6264
                  for matching.
sl@0
  6265
@param anIdentity A package encapsulating the function which determines whether 
sl@0
  6266
                  two class T type objects match.
sl@0
  6267
sl@0
  6268
@return The index of the last matching object within the array.
sl@0
  6269
@leave  KErrNotFound, if no matching object can be found.
sl@0
  6270
*/
sl@0
  6271
template <class T>
sl@0
  6272
inline TInt RArray<T>::FindReverseL(const T& anEntry, TIdentityRelation<T> anIdentity) const
sl@0
  6273
	{ return User::LeaveIfError(FindReverse(anEntry, anIdentity));}
sl@0
  6274
sl@0
  6275
sl@0
  6276
/**
sl@0
  6277
Finds the object in the array which matches the specified object using a binary 
sl@0
  6278
search technique.
sl@0
  6279
sl@0
  6280
The function assumes that existing objects within the array are in signed 
sl@0
  6281
key order.
sl@0
  6282
sl@0
  6283
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  6284
sl@0
  6285
@param anEntry A reference to an object of type class T to be used for matching.
sl@0
  6286
sl@0
  6287
@return The index of the matching object within the array.
sl@0
  6288
@leave  KErrNotFound, if no matching object can be found.
sl@0
  6289
*/
sl@0
  6290
template <class T>
sl@0
  6291
inline TInt RArray<T>::FindInSignedKeyOrderL(const T& anEntry) const
sl@0
  6292
	{ return User::LeaveIfError(FindInSignedKeyOrder(anEntry));}
sl@0
  6293
sl@0
  6294
sl@0
  6295
/**
sl@0
  6296
Finds the object in the array which matches the specified object using a binary 
sl@0
  6297
search technique.
sl@0
  6298
sl@0
  6299
The function assumes that existing objects within the array are in unsigned 
sl@0
  6300
key order.
sl@0
  6301
sl@0
  6302
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  6303
sl@0
  6304
@param anEntry A reference to an object of type class T to be used for matching.
sl@0
  6305
sl@0
  6306
@return The index of the matching object within the array.
sl@0
  6307
@leave  KErrNotFound, if no matching object can be found.
sl@0
  6308
*/
sl@0
  6309
template <class T>
sl@0
  6310
inline TInt RArray<T>::FindInUnsignedKeyOrderL(const T& anEntry) const
sl@0
  6311
	{ return User::LeaveIfError(FindInUnsignedKeyOrder(anEntry));}
sl@0
  6312
sl@0
  6313
sl@0
  6314
/**
sl@0
  6315
Finds the object in the array which matches the specified object using a binary 
sl@0
  6316
search technique and an ordering algorithm.
sl@0
  6317
sl@0
  6318
The function assumes that existing objects within the array are in object 
sl@0
  6319
order as determined by an algorithm supplied by the caller and packaged as 
sl@0
  6320
a TLinearOrder<T>.
sl@0
  6321
sl@0
  6322
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  6323
sl@0
  6324
@param anEntry A reference to an object of type class T to be used for matching.
sl@0
  6325
@param anOrder A package encapsulating the function which determines the order 
sl@0
  6326
               of two class T objects.
sl@0
  6327
sl@0
  6328
@return The index of the matching object within the array.
sl@0
  6329
@leave  KErrNotFound if no matching object can be found.
sl@0
  6330
*/
sl@0
  6331
template <class T>
sl@0
  6332
inline TInt RArray<T>::FindInOrderL(const T& anEntry, TLinearOrder<T> anOrder) const
sl@0
  6333
{ return User::LeaveIfError(FindInOrder(anEntry, anOrder));}
sl@0
  6334
sl@0
  6335
sl@0
  6336
/**
sl@0
  6337
Finds the object in the array which matches the specified object using a binary 
sl@0
  6338
search technique.
sl@0
  6339
sl@0
  6340
The function assumes that existing objects within the array are in signed 
sl@0
  6341
key order.
sl@0
  6342
sl@0
  6343
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  6344
sl@0
  6345
@param anEntry A reference to an object of type class T to be used for matching.
sl@0
  6346
@param anIndex On return contains an index value of the matching object within the array.
sl@0
  6347
               If the function leaves with KErrNotFound,this is the index of the
sl@0
  6348
               first element in the array whose key is bigger than the key of the
sl@0
  6349
               element being sought. If there are no elements in the array with
sl@0
  6350
               a bigger key, then the index value is the same as the total 
sl@0
  6351
               number of elements in the array.
sl@0
  6352
@leave KErrNotFound, if no matching object can be found.
sl@0
  6353
*/
sl@0
  6354
template <class T>
sl@0
  6355
inline void RArray<T>::FindInSignedKeyOrderL(const T& anEntry, TInt& anIndex) const
sl@0
  6356
	{ User::LeaveIfError(FindInSignedKeyOrder(anEntry, anIndex));}
sl@0
  6357
sl@0
  6358
sl@0
  6359
/**
sl@0
  6360
Finds the object in the array which matches the specified object using a binary 
sl@0
  6361
search technique.
sl@0
  6362
sl@0
  6363
The function assumes that existing objects within the array are in unsigned 
sl@0
  6364
key order.
sl@0
  6365
sl@0
  6366
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  6367
sl@0
  6368
@param anEntry A reference to an object of type class T to be used for matching.
sl@0
  6369
@param anIndex On return contains an index value of the matching object within the array. 
sl@0
  6370
               If the function leaves with KErrNotFound,  this is the index of the
sl@0
  6371
               first element in the array whose key is bigger than the key of the
sl@0
  6372
               element being sought. If there are no elements in the array with
sl@0
  6373
               a bigger key, then the index value is the same as the total 
sl@0
  6374
               number of elements in the array.
sl@0
  6375
@leave  KErrNotFound, if no matching object can be found.
sl@0
  6376
*/
sl@0
  6377
template <class T>
sl@0
  6378
inline void RArray<T>::FindInUnsignedKeyOrderL(const T& anEntry, TInt& anIndex) const
sl@0
  6379
	{ User::LeaveIfError(FindInUnsignedKeyOrder(anEntry, anIndex));}
sl@0
  6380
sl@0
  6381
sl@0
  6382
/**
sl@0
  6383
Finds the object in the array which matches the specified object using a binary 
sl@0
  6384
search technique and an ordering algorithm.
sl@0
  6385
sl@0
  6386
The function assumes that existing objects within the array are in object 
sl@0
  6387
order as determined by an algorithm supplied by the caller and packaged as 
sl@0
  6388
a TLinearOrder<T>.
sl@0
  6389
sl@0
  6390
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  6391
sl@0
  6392
@param anEntry A reference to an object of type class T to be used for matching.
sl@0
  6393
@param anIndex On return contains the index value of the matching object within the array
sl@0
  6394
               If the function leaves with KErrNotFound, this is the index of
sl@0
  6395
               the first element in the array that is bigger than the element
sl@0
  6396
               being searched for - if no elements in the array are bigger,
sl@0
  6397
               then the index value is the same as the total number of elements
sl@0
  6398
               in the array.
sl@0
  6399
@param anOrder A package encapsulating the function which determines the order 
sl@0
  6400
               of two class T objects.
sl@0
  6401
sl@0
  6402
@leave  KErrNotFound if no matching object can be found.
sl@0
  6403
*/
sl@0
  6404
template <class T>
sl@0
  6405
inline void RArray<T>::FindInOrderL(const T& anEntry, TInt& anIndex, TLinearOrder<T> anOrder) const
sl@0
  6406
	{ User::LeaveIfError(FindInOrder(anEntry, anIndex, anOrder));}
sl@0
  6407
sl@0
  6408
sl@0
  6409
/**
sl@0
  6410
Finds the object in the array which matches the specified object using a binary 
sl@0
  6411
search technique.
sl@0
  6412
sl@0
  6413
The element ordering is determined by a signed 32-bit word
sl@0
  6414
(the key) embedded in each array element. In the case that there is more than
sl@0
  6415
one matching element, finds the first, last or any match as specified.
sl@0
  6416
sl@0
  6417
The function assumes that existing objects within the array are in signed 
sl@0
  6418
key order.
sl@0
  6419
sl@0
  6420
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  6421
sl@0
  6422
@param anEntry A reference to an object of type class T to be used for matching.
sl@0
  6423
@param	aMode  Specifies whether to find the first match, the last match or
sl@0
  6424
               any match, as defined by one of the TArrayFindMode enum values.
sl@0
  6425
sl@0
  6426
@return The array index of a matching element - what the index refers to
sl@0
  6427
        depends on the value of aMode:
sl@0
  6428
        if this is EArrayFindMode_First, then the index refers to the first matching element;
sl@0
  6429
        if this is EArrayFindMode_Any, then the index can refer to any of the matching elements;
sl@0
  6430
        if this is EArrayFindMode_Last, then the index refers to first element that follows
sl@0
  6431
        the last matching element - if the last matching element is also the last element of
sl@0
  6432
        the array, then the index value is the same as the total number of elements in the array.
sl@0
  6433
@leave  KErrNotFound if no matching entry exists.
sl@0
  6434
sl@0
  6435
@see TArrayFindMode
sl@0
  6436
*/
sl@0
  6437
template <class T>
sl@0
  6438
inline TInt RArray<T>::SpecificFindInSignedKeyOrderL(const T& anEntry, TInt aMode) const
sl@0
  6439
{ return User::LeaveIfError(SpecificFindInSignedKeyOrder(anEntry, aMode));}
sl@0
  6440
sl@0
  6441
sl@0
  6442
/**
sl@0
  6443
Finds the object in the array which matches the specified object using a binary 
sl@0
  6444
search technique.
sl@0
  6445
sl@0
  6446
The element ordering is determined by an unsigned 32-bit word
sl@0
  6447
(the key) embedded in each array element. In the case that there is more than
sl@0
  6448
one matching element, finds the first, last or any match as specified.
sl@0
  6449
sl@0
  6450
The function assumes that existing objects within the array are in unsigned 
sl@0
  6451
key order.
sl@0
  6452
sl@0
  6453
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  6454
sl@0
  6455
@param anEntry A reference to an object of type class T to be used for matching.
sl@0
  6456
@param	aMode  Specifies whether to find the first match, the last match or any
sl@0
  6457
        match, as defined by one of the TArrayFindMode enum values.
sl@0
  6458
sl@0
  6459
@return The array index of a matching element -  what the index refers to
sl@0
  6460
        depends on the value of aMode:
sl@0
  6461
        if this is EArrayFindMode_First, then the index refers to the first matching element;
sl@0
  6462
        if this is EArrayFindMode_Any, then the index can refer to any of the matching elements;
sl@0
  6463
        if this is EArrayFindMode_Last, then the index refers to first element that follows
sl@0
  6464
        the last matching element - if the last matching element is also the last element
sl@0
  6465
        of the array, then the index value is the same as the total number of elements in the array.
sl@0
  6466
        
sl@0
  6467
@leave  KErrNotFound if no matching entry exists.
sl@0
  6468
sl@0
  6469
@see TArrayFindMode
sl@0
  6470
*/
sl@0
  6471
template <class T>
sl@0
  6472
inline TInt RArray<T>::SpecificFindInUnsignedKeyOrderL(const T& anEntry, TInt aMode) const
sl@0
  6473
	{ return User::LeaveIfError(SpecificFindInUnsignedKeyOrder(anEntry, aMode));}
sl@0
  6474
sl@0
  6475
sl@0
  6476
/**
sl@0
  6477
Finds the object in the array which matches the specified object using a binary 
sl@0
  6478
search technique and an ordering algorithm.
sl@0
  6479
sl@0
  6480
Where there is more than one matching element, it finds the first, the last or
sl@0
  6481
any matching element as specified by the value of aMode.
sl@0
  6482
sl@0
  6483
The function assumes that existing objects within the array are in object 
sl@0
  6484
order as determined by an algorithm supplied by the caller and packaged as 
sl@0
  6485
a TLinearOrder<T> type.
sl@0
  6486
sl@0
  6487
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  6488
sl@0
  6489
@param anEntry A reference to an object of type class T to be used for matching.
sl@0
  6490
@param anOrder A package encapsulating the function which determines the order 
sl@0
  6491
               of two class T objects.
sl@0
  6492
@param	aMode  Specifies whether to find the first match, the last match or any match,
sl@0
  6493
               as defined by one of the TArrayFindMode enum values.
sl@0
  6494
sl@0
  6495
@return The array index of a matching element -  what the index refers to
sl@0
  6496
        depends on the value of aMode:
sl@0
  6497
        if this is EArrayFindMode_First, then the index refers to the first matching element;
sl@0
  6498
        if this is EArrayFindMode_Any, then the index can refer to any of the matching elements;
sl@0
  6499
        if this is EArrayFindMode_Last, then the index refers to first element that follows
sl@0
  6500
        the last matching element - if the last matching element is also the last element
sl@0
  6501
        of the array, then the index value is the same as the total number of elements in the array.
sl@0
  6502
        
sl@0
  6503
@leave KErrNotFound if no matching entry exists.
sl@0
  6504
sl@0
  6505
@see TArrayFindMode
sl@0
  6506
*/
sl@0
  6507
template <class T>
sl@0
  6508
inline TInt RArray<T>::SpecificFindInOrderL(const T& anEntry, TLinearOrder<T> anOrder, TInt aMode) const
sl@0
  6509
{ return User::LeaveIfError(SpecificFindInOrder(anEntry, anOrder, aMode));}
sl@0
  6510
sl@0
  6511
sl@0
  6512
/**
sl@0
  6513
Finds the object in the array which matches the specified object using a binary 
sl@0
  6514
search technique.
sl@0
  6515
sl@0
  6516
The element ordering is determined by a signed 32-bit word
sl@0
  6517
(the key) embedded in each array element. In the case that there is more than
sl@0
  6518
one matching element, finds the first, last or any match as specified.
sl@0
  6519
sl@0
  6520
The function assumes that existing objects within the array are in signed 
sl@0
  6521
key order.
sl@0
  6522
sl@0
  6523
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  6524
sl@0
  6525
@param anEntry A reference to an object of type class T to be used for matching.
sl@0
  6526
@param anIndex A TInt type supplied by the caller. On return, it contains an
sl@0
  6527
               index value depending on whether a match is found and on the
sl@0
  6528
               value of aMode. If there is no matching element in the array,
sl@0
  6529
               then this is the index of the first element in the array that
sl@0
  6530
               is bigger than the element being searched for - if no elements
sl@0
  6531
               in the array are bigger, then the index value is the same as
sl@0
  6532
               the total number of elements in the array.
sl@0
  6533
               If there is a matching element, then what the index refers to
sl@0
  6534
               depends on the value of aMode:
sl@0
  6535
               if this is EArrayFindMode_First, then the index refers to the first matching element;
sl@0
  6536
               if this is EArrayFindMode_Any, then the index can refer to any of the matching elements;
sl@0
  6537
               if this is EArrayFindMode_Last, then the index refers to first element that follows
sl@0
  6538
               the last matching element - if the last matching element is also the last element
sl@0
  6539
               of the array, then the index value is the same as the total number of elements
sl@0
  6540
               in the array.
sl@0
  6541
@param aMode   Specifies whether to find the first match, the last match or any match,
sl@0
  6542
               as defined by one of the TArrayFindMode enum values.
sl@0
  6543
               
sl@0
  6544
@leave KErrNotFound if no matching entry exists.
sl@0
  6545
sl@0
  6546
@see TArrayFindMode
sl@0
  6547
*/
sl@0
  6548
template <class T>
sl@0
  6549
inline void RArray<T>::SpecificFindInSignedKeyOrderL(const T& anEntry, TInt& anIndex, TInt aMode) const
sl@0
  6550
	{ User::LeaveIfError(SpecificFindInSignedKeyOrder(anEntry, anIndex, aMode));}
sl@0
  6551
sl@0
  6552
sl@0
  6553
/**
sl@0
  6554
Finds the object in the array which matches the specified object using a binary 
sl@0
  6555
search technique.
sl@0
  6556
sl@0
  6557
The element ordering is determined by an unsigned 32-bit word
sl@0
  6558
(the key) embedded in each array element. In the case that there is more than
sl@0
  6559
one matching element, finds the first, last or any match as specified.
sl@0
  6560
sl@0
  6561
The function assumes that existing objects within the array are in unsigned 
sl@0
  6562
key order.
sl@0
  6563
sl@0
  6564
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  6565
sl@0
  6566
@param anEntry A reference to an object of type class T to be used for matching.
sl@0
  6567
@param anIndex A TInt type supplied by the caller. On return, it contains an
sl@0
  6568
               index value depending on whether a match is found and on the
sl@0
  6569
               value of aMode. If there is no matching element in the array,
sl@0
  6570
               then this is the index of the first element in the array that
sl@0
  6571
               is bigger than the element being searched for - if no elements
sl@0
  6572
               in the array are bigger, then the index value is the same as
sl@0
  6573
               the total number of elements in the array. If there is a matching
sl@0
  6574
               element, then what the index refers to depends on the value of aMode:
sl@0
  6575
               if this is EArrayFindMode_First, then the index refers to the first matching element;
sl@0
  6576
               if this is EArrayFindMode_Any, then the index can refer to any of the matching elements;
sl@0
  6577
               if this is EArrayFindMode_Last, then the index refers to first element that follows
sl@0
  6578
               the last matching element - if the last matching element is also the last element
sl@0
  6579
               of the array, then the index value is the same as the total number of elements in the array.
sl@0
  6580
@param aMode   Specifies whether to find the first match, the last match or any match,
sl@0
  6581
               as defined by one of the  TArrayFindMode enum values.
sl@0
  6582
               
sl@0
  6583
@leave KErrNotFound if no matching entry exists.
sl@0
  6584
sl@0
  6585
@see TArrayFindMode
sl@0
  6586
*/
sl@0
  6587
template <class T>
sl@0
  6588
inline void RArray<T>::SpecificFindInUnsignedKeyOrderL(const T& anEntry, TInt& anIndex, TInt aMode) const
sl@0
  6589
	{ User::LeaveIfError(SpecificFindInUnsignedKeyOrder(anEntry, anIndex, aMode));}
sl@0
  6590
sl@0
  6591
sl@0
  6592
/**
sl@0
  6593
Finds the object in the array which matches the specified object using a binary 
sl@0
  6594
search technique and a specified ordering algorithm.
sl@0
  6595
sl@0
  6596
Where there is more than one matching element, it finds the first, the last or
sl@0
  6597
any matching element as specified by the value of aMode.
sl@0
  6598
sl@0
  6599
The function assumes that existing objects within the array are in object 
sl@0
  6600
order as determined by an algorithm supplied by the caller and packaged as 
sl@0
  6601
a TLinearOrder<T> type.
sl@0
  6602
sl@0
  6603
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  6604
sl@0
  6605
@param anEntry A reference to an object of type class T to be used for matching.
sl@0
  6606
@param anIndex A TInt type supplied by the caller. On return, it contains an
sl@0
  6607
               index value depending on whether a match is found and on the value
sl@0
  6608
               of aMode. If there is no matching element in the array, then this is
sl@0
  6609
               the  index of the first element in the array that is bigger than the
sl@0
  6610
               element being searched for - if no elements in the array are bigger,
sl@0
  6611
               then the index value is the same as the total number of elements
sl@0
  6612
               in the array. If there is a matching element, then what the index
sl@0
  6613
               refers to depends on the value of aMode:
sl@0
  6614
               if this is EArrayFindMode_First, then the index refers to the first matching element;
sl@0
  6615
               if this is EArrayFindMode_Any, then the index can refer to any of the matching elements;
sl@0
  6616
               if this is EArrayFindMode_Last, then the index refers to first element that follows
sl@0
  6617
               the last matching element - if the last matching element is also the last element
sl@0
  6618
               of the array, then the index value is the same as the total number of elements in the array.
sl@0
  6619
               
sl@0
  6620
@param anOrder A package encapsulating the function which determines the order 
sl@0
  6621
               of two class T objects.
sl@0
  6622
@param aMode   Specifies whether to find the first match, the last match or any match,
sl@0
  6623
               as defined by one of the TArrayFindMode enum values.
sl@0
  6624
               
sl@0
  6625
@leave KErrNotFound if no matching entry exists.
sl@0
  6626
sl@0
  6627
@see TArrayFindMode
sl@0
  6628
*/
sl@0
  6629
template <class T>
sl@0
  6630
inline void RArray<T>::SpecificFindInOrderL(const T& anEntry, TInt& anIndex, TLinearOrder<T> anOrder, TInt aMode) const
sl@0
  6631
	{ User::LeaveIfError(SpecificFindInOrder(anEntry, anIndex, anOrder, aMode));}
sl@0
  6632
sl@0
  6633
sl@0
  6634
/**
sl@0
  6635
Inserts an object into the array in ascending signed key order.
sl@0
  6636
sl@0
  6637
The order of two class T type objects is based on comparing a TInt value
sl@0
  6638
located at the key offset position within the class T object.
sl@0
  6639
sl@0
  6640
No duplicate entries are permitted.
sl@0
  6641
sl@0
  6642
The function leaves with one of the system wide error codes, if the operation fails.
sl@0
  6643
sl@0
  6644
Note that the array remains unchanged following an attempt to insert a duplicate entry.
sl@0
  6645
sl@0
  6646
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  6647
sl@0
  6648
@param anEntry A reference to the object of type class T to be inserted.
sl@0
  6649
*/
sl@0
  6650
template <class T>
sl@0
  6651
inline void RArray<T>::InsertInSignedKeyOrderL(const T& anEntry)
sl@0
  6652
	{ User::LeaveIfError(InsertInSignedKeyOrder(anEntry));}
sl@0
  6653
sl@0
  6654
sl@0
  6655
/**
sl@0
  6656
Inserts an object into the array in ascending unsigned key order, not allowing 
sl@0
  6657
duplicate entries.
sl@0
  6658
sl@0
  6659
The order of two class T type objects is based on comparing a TUint value 
sl@0
  6660
located at the key offset position within the class T object. 
sl@0
  6661
sl@0
  6662
The function leaves with one of the system wide error codes, if the operation fails.
sl@0
  6663
sl@0
  6664
Note that the array remains unchanged following an attempt to insert a duplicate entry.
sl@0
  6665
sl@0
  6666
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  6667
sl@0
  6668
@param anEntry A reference to the object of type class T to be inserted.
sl@0
  6669
*/
sl@0
  6670
template <class T>
sl@0
  6671
inline void RArray<T>::InsertInUnsignedKeyOrderL(const T& anEntry)
sl@0
  6672
	{ User::LeaveIfError(InsertInUnsignedKeyOrder(anEntry));}
sl@0
  6673
sl@0
  6674
sl@0
  6675
/**
sl@0
  6676
Inserts an object of into the array in object order.
sl@0
  6677
sl@0
  6678
The algorithm for determining the order of two class T type objects is provided 
sl@0
  6679
by a function supplied by the caller.
sl@0
  6680
sl@0
  6681
No duplicate entries are permitted.
sl@0
  6682
sl@0
  6683
The function assumes that existing objects within the array are in object 
sl@0
  6684
order.
sl@0
  6685
sl@0
  6686
The function leaves with one of the system wide error codes, if the operation fails.
sl@0
  6687
sl@0
  6688
Note that the array remains unchanged following an attempt to insert a duplicate entry.
sl@0
  6689
sl@0
  6690
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  6691
sl@0
  6692
@param anEntry A reference to the object of type class T to be inserted.
sl@0
  6693
@param anOrder A package encapsulating the function which determines the order 
sl@0
  6694
               of two class T objects.
sl@0
  6695
*/
sl@0
  6696
template <class T>
sl@0
  6697
inline void RArray<T>::InsertInOrderL(const T& anEntry, TLinearOrder<T> anOrder)
sl@0
  6698
	{ User::LeaveIfError(InsertInOrder(anEntry, anOrder));}
sl@0
  6699
sl@0
  6700
sl@0
  6701
/**
sl@0
  6702
Inserts an object into the array in ascending signed key order,
sl@0
  6703
allowing duplicates.
sl@0
  6704
sl@0
  6705
The order of two class T type objects is based on comparing a TInt value
sl@0
  6706
located at the key offset position within the class T object. 
sl@0
  6707
sl@0
  6708
If anEntry is a duplicate of an existing object in the array, then the new 
sl@0
  6709
object is inserted after the existing object. If more than one duplicate object 
sl@0
  6710
already exists in the array, then any new duplicate object is inserted after 
sl@0
  6711
the last one.
sl@0
  6712
sl@0
  6713
The function leaves with one of the system wide error codes, if the operation fails.
sl@0
  6714
sl@0
  6715
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  6716
sl@0
  6717
@param anEntry A reference to the object of type class T to be inserted.
sl@0
  6718
*/
sl@0
  6719
template <class T>
sl@0
  6720
inline void RArray<T>::InsertInSignedKeyOrderAllowRepeatsL(const T& anEntry)
sl@0
  6721
	{ User::LeaveIfError(InsertInSignedKeyOrderAllowRepeats(anEntry));}
sl@0
  6722
sl@0
  6723
sl@0
  6724
/**
sl@0
  6725
Inserts an object into the array in ascending unsigned key order, allowing 
sl@0
  6726
duplicates.
sl@0
  6727
sl@0
  6728
The order of two class T type objects is based on comparing a TUint value 
sl@0
  6729
located at the key offset position within the class T object. 
sl@0
  6730
sl@0
  6731
If anEntry is a duplicate of an existing object in the array, then the new 
sl@0
  6732
object is inserted after the existing object. If more than one duplicate object 
sl@0
  6733
already exists in the array, then any new duplicate object is inserted after 
sl@0
  6734
the last one.
sl@0
  6735
sl@0
  6736
The function leaves with one of the system wide error codes, if the operation fails.
sl@0
  6737
sl@0
  6738
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  6739
sl@0
  6740
@param anEntry A reference to the object of type class T to be inserted.
sl@0
  6741
*/
sl@0
  6742
template <class T>
sl@0
  6743
inline void RArray<T>::InsertInUnsignedKeyOrderAllowRepeatsL(const T& anEntry)
sl@0
  6744
	{ User::LeaveIfError(InsertInUnsignedKeyOrderAllowRepeats(anEntry));}
sl@0
  6745
sl@0
  6746
sl@0
  6747
/**
sl@0
  6748
Inserts an object into the array in object order, allowing duplicates.
sl@0
  6749
sl@0
  6750
The algorithm for determining the order of two class T type objects is provided 
sl@0
  6751
by a function supplied by the caller.
sl@0
  6752
sl@0
  6753
If anEntry is a duplicate of an existing object in the array, then the new 
sl@0
  6754
object is inserted after the existing object. If more than one duplicate object 
sl@0
  6755
already exists in the array, then anEntry is inserted after the last one.
sl@0
  6756
sl@0
  6757
The function assumes that existing objects within the array are in object 
sl@0
  6758
order.
sl@0
  6759
sl@0
  6760
The function leaves with one of the system wide error codes, if the operation fails.
sl@0
  6761
sl@0
  6762
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  6763
sl@0
  6764
@param anEntry A reference to the object of type class T to be inserted.
sl@0
  6765
@param anOrder A package encapsulating the function which determines the order 
sl@0
  6766
               of two class T objects.
sl@0
  6767
*/
sl@0
  6768
template <class T>
sl@0
  6769
inline void RArray<T>::InsertInOrderAllowRepeatsL(const T& anEntry, TLinearOrder<T> anOrder)
sl@0
  6770
	{ User::LeaveIfError(InsertInOrderAllowRepeats(anEntry, anOrder));}
sl@0
  6771
sl@0
  6772
sl@0
  6773
sl@0
  6774
/**
sl@0
  6775
Reserves space for the specified number of elements.
sl@0
  6776
sl@0
  6777
After a call to this function, the memory allocated to the array is sufficient 
sl@0
  6778
to hold the number of objects specified. Adding new objects to the array 
sl@0
  6779
does not result in a re-allocation of memory until the the total number of 
sl@0
  6780
objects exceeds the specified count.
sl@0
  6781
sl@0
  6782
@param	aCount	The number of objects for which space should be reserved
sl@0
  6783
@leave KErrNoMemory	If the requested amount of memory could not be allocated
sl@0
  6784
*/
sl@0
  6785
template <class T>
sl@0
  6786
inline void RArray<T>::ReserveL(TInt aCount)
sl@0
  6787
	{ User::LeaveIfError(RArrayBase::DoReserve(aCount)); }
sl@0
  6788
sl@0
  6789
sl@0
  6790
sl@0
  6791
sl@0
  6792
/**
sl@0
  6793
Appends a signed integer onto the array.
sl@0
  6794
sl@0
  6795
The function leaves with one of the system wide error codes, if the operation fails.
sl@0
  6796
	
sl@0
  6797
NOTE: This function is NOT AVAILABLE to code running on the kernel side.	
sl@0
  6798
	
sl@0
  6799
@param anEntry The signed integer to be appended.
sl@0
  6800
*/
sl@0
  6801
inline void RArray<TInt>::AppendL(TInt anEntry)
sl@0
  6802
	{ User::LeaveIfError(Append(anEntry));}
sl@0
  6803
sl@0
  6804
sl@0
  6805
/**
sl@0
  6806
Inserts a signed integer into the array at the specified position.
sl@0
  6807
	
sl@0
  6808
The function leaves with one of the system wide error codes, if the operation fails.
sl@0
  6809
	
sl@0
  6810
NOTE: This function is NOT AVAILABLE to code running on the kernel side.	
sl@0
  6811
	
sl@0
  6812
@param anEntry The signed integer to be inserted.
sl@0
  6813
@param aPos    The position within the array where the signed integer is to be 
sl@0
  6814
	           inserted. The position is relative to zero, i.e. zero implies
sl@0
  6815
			   that an entry is inserted at the beginning of the array.
sl@0
  6816
		   
sl@0
  6817
@panic USER 131, if aPos is negative, or is greater than the number of entries
sl@0
  6818
       currently in the array.
sl@0
  6819
*/
sl@0
  6820
inline void RArray<TInt>::InsertL(TInt anEntry, TInt aPos)
sl@0
  6821
	{ User::LeaveIfError(Insert(anEntry, aPos));}
sl@0
  6822
sl@0
  6823
sl@0
  6824
/**
sl@0
  6825
Finds the first signed integer in the array which matches the specified signed 
sl@0
  6826
integer using a sequential search.
sl@0
  6827
sl@0
  6828
The find operation always starts at the low index end of the array. There 
sl@0
  6829
is no assumption about the order of entries in the array.
sl@0
  6830
sl@0
  6831
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  6832
	
sl@0
  6833
@param anEntry The signed integer to be found.
sl@0
  6834
sl@0
  6835
@return The index of the first matching signed integer within the array.
sl@0
  6836
@leave  KErrNotFound, if no matching entry can be found.
sl@0
  6837
*/
sl@0
  6838
inline TInt RArray<TInt>::FindL(TInt anEntry) const
sl@0
  6839
	{ return User::LeaveIfError(Find(anEntry));}
sl@0
  6840
sl@0
  6841
sl@0
  6842
/**
sl@0
  6843
Finds the last signed integer in the array which matches the specified signed 
sl@0
  6844
integer using a sequential search.
sl@0
  6845
sl@0
  6846
The find operation always starts at the high index end of the array. There 
sl@0
  6847
is no assumption about the order of entries in the array.
sl@0
  6848
sl@0
  6849
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  6850
	
sl@0
  6851
@param anEntry The signed integer to be found.
sl@0
  6852
sl@0
  6853
@return The index of the last matching signed integer within the array.
sl@0
  6854
@leave  KErrNotFound, if no matching entry can be found.
sl@0
  6855
*/
sl@0
  6856
inline TInt RArray<TInt>::FindReverseL(TInt anEntry) const
sl@0
  6857
	{ return User::LeaveIfError(FindReverse(anEntry));}
sl@0
  6858
sl@0
  6859
sl@0
  6860
/**
sl@0
  6861
Finds the signed integer in the array that matches the specified signed integer 
sl@0
  6862
using a binary search technique.
sl@0
  6863
sl@0
  6864
The function assumes that the array is in signed integer order.
sl@0
  6865
	
sl@0
  6866
NOTE: This function is NOT AVAILABLE to code running on the kernel side.	
sl@0
  6867
	
sl@0
  6868
@param anEntry The signed integer to be found.
sl@0
  6869
sl@0
  6870
@return The index of the matching signed integer within the array.
sl@0
  6871
@leave  KErrNotFound, if no match can be found.
sl@0
  6872
*/
sl@0
  6873
inline TInt RArray<TInt>::FindInOrderL(TInt anEntry) const
sl@0
  6874
	{ return User::LeaveIfError(FindInOrder(anEntry));}
sl@0
  6875
sl@0
  6876
sl@0
  6877
/**
sl@0
  6878
Finds the signed integer in the array that matches the specified signed integer
sl@0
  6879
using a binary search technique.
sl@0
  6880
	
sl@0
  6881
The function assumes that the array is in signed integer order.
sl@0
  6882
	
sl@0
  6883
NOTE: This function is NOT AVAILABLE to code running on the kernel side.	
sl@0
  6884
	
sl@0
  6885
@param anEntry The signed integer to be found.
sl@0
  6886
@param anIndex A reference to a signed integer into which the
sl@0
  6887
               function puts an index value: If the function returns ,
sl@0
  6888
               this is the index of the matching signed integer within the
sl@0
  6889
               array. If the function leaves with KErrNotFound, this is the
sl@0
  6890
               index of the first signed integer within the array that is
sl@0
  6891
               bigger than the signed integer being searched for - if no
sl@0
  6892
               signed integers within the array are bigger, then the index
sl@0
  6893
               value is the same as the total number of signed integers
sl@0
  6894
               within the array.
sl@0
  6895
@leave  KErrNotFound if no  match can be found.
sl@0
  6896
*/
sl@0
  6897
inline void RArray<TInt>::FindInOrderL(TInt anEntry, TInt& anIndex) const
sl@0
  6898
	{ User::LeaveIfError(FindInOrder(anEntry, anIndex));}
sl@0
  6899
sl@0
  6900
sl@0
  6901
/**
sl@0
  6902
Finds the signed integer in the array that matches the specified signed integer 
sl@0
  6903
using a binary search technique.
sl@0
  6904
sl@0
  6905
Where there is more than one matching element, it finds the first, last or any
sl@0
  6906
matching element  as specified by the value of aMode.
sl@0
  6907
	
sl@0
  6908
The function assumes that the array is in signed integer order.
sl@0
  6909
	
sl@0
  6910
NOTE: This function is NOT AVAILABLE to code running on the kernel side.	
sl@0
  6911
	
sl@0
  6912
@param anEntry The signed integer to be found.
sl@0
  6913
@param aMode   Specifies whether to find the first match, the last match or
sl@0
  6914
               any match, as defined by one of the TArrayFindMode enum values.
sl@0
  6915
sl@0
  6916
@return The array index of a matching element - what the index refers to
sl@0
  6917
        depends on the value of aMode:
sl@0
  6918
        if this is EArrayFindMode_First, then the index refers to the first matching element;
sl@0
  6919
        if this is EArrayFindMode_Any, then the index can refer to any of the matching elements;
sl@0
  6920
        if this is EArrayFindMode_Last, then the index refers to first element that follows
sl@0
  6921
        the last matching element - if the last matching element is also the last element
sl@0
  6922
        of the array, then the index value is the same as the total number of elements in the array.
sl@0
  6923
        
sl@0
  6924
@leave  KErrNotFound if no matching entry exists.
sl@0
  6925
sl@0
  6926
@see TArrayFindMode
sl@0
  6927
*/
sl@0
  6928
inline TInt RArray<TInt>::SpecificFindInOrderL(TInt anEntry, TInt aMode) const
sl@0
  6929
	{ return User::LeaveIfError(SpecificFindInOrder(anEntry, aMode));}
sl@0
  6930
sl@0
  6931
sl@0
  6932
/**
sl@0
  6933
Finds the signed integer in the array that matches the specified signed integer
sl@0
  6934
using a binary search technique.
sl@0
  6935
sl@0
  6936
Where there is more than one matching element, it finds the first, last or any
sl@0
  6937
matching element  as specified by the value of aMode.
sl@0
  6938
sl@0
  6939
The function assumes that the array is in signed integer order.
sl@0
  6940
sl@0
  6941
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  6942
	
sl@0
  6943
@param anEntry The signed integer to be found.
sl@0
  6944
@param anIndex A TInt type supplied by the caller. On return, it contains an
sl@0
  6945
               index value depending on whether a match is found and on the value of aMode.
sl@0
  6946
               If there is no matching element in the array, then this is
sl@0
  6947
               the  index of the first element in the array that is bigger
sl@0
  6948
               than the element being searched for - if no elements in the
sl@0
  6949
               array are bigger, then the index value is the same as the total
sl@0
  6950
               number of elements in the array. If there is a matching element,
sl@0
  6951
               then what the index refers to depends on the value of aMode:
sl@0
  6952
               if this is EArrayFindMode_First, then the index refers to the first matching element;
sl@0
  6953
               if this is EArrayFindMode_Any, then the index can refer to any of the matching elements;
sl@0
  6954
               if this is EArrayFindMode_Last, then the index refers to first element that follows
sl@0
  6955
               the last matching element - if the last matching element is also the last element
sl@0
  6956
               of the array, then the index value is the same as the total number of elements in the array.
sl@0
  6957
               
sl@0
  6958
@param	aMode  Specifies whether to find the first match, the last match or any match, as defined
sl@0
  6959
               by one of the TArrayFindMode enum values.
sl@0
  6960
               
sl@0
  6961
@leave KErrNotFound if no matching entry exists.
sl@0
  6962
sl@0
  6963
@see TArrayFindMode
sl@0
  6964
*/
sl@0
  6965
inline void RArray<TInt>::SpecificFindInOrderL(TInt anEntry, TInt& anIndex, TInt aMode) const
sl@0
  6966
	{ User::LeaveIfError(SpecificFindInOrder(anEntry, anIndex, aMode));}
sl@0
  6967
sl@0
  6968
sl@0
  6969
/**
sl@0
  6970
Inserts a signed integer into the array in signed integer order.
sl@0
  6971
sl@0
  6972
No duplicate entries are permitted.
sl@0
  6973
sl@0
  6974
The function assumes that existing entries within the array are in signed 
sl@0
  6975
integer order.
sl@0
  6976
sl@0
  6977
The function leaves with one of the system wide error codes, if the operation fails.
sl@0
  6978
sl@0
  6979
Note that the array remains unchanged following an attempt to insert a duplicate entry. 
sl@0
  6980
sl@0
  6981
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  6982
sl@0
  6983
@param anEntry The signed integer to be inserted.
sl@0
  6984
*/
sl@0
  6985
inline void RArray<TInt>::InsertInOrderL(TInt anEntry)
sl@0
  6986
	{ User::LeaveIfError(InsertInOrder(anEntry));}
sl@0
  6987
sl@0
  6988
sl@0
  6989
/**
sl@0
  6990
Inserts a signed integer into the array in signed integer order,
sl@0
  6991
allowing duplicates.
sl@0
  6992
sl@0
  6993
If anEntry is a duplicate of an existing entry in the array, then the new 
sl@0
  6994
signed integer is inserted after the existing one. If more than one duplicate 
sl@0
  6995
entry already exists in the array, then any new duplicate signed integer is 
sl@0
  6996
inserted after the last one.
sl@0
  6997
sl@0
  6998
The function assumes that existing entries within the array are in signed 
sl@0
  6999
integer order.
sl@0
  7000
sl@0
  7001
The function leaves with one of the system wide error codes, if the operation fails.
sl@0
  7002
	
sl@0
  7003
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  7004
	
sl@0
  7005
@param anEntry The signed integer to be inserted.
sl@0
  7006
*/
sl@0
  7007
inline void RArray<TInt>::InsertInOrderAllowRepeatsL(TInt anEntry)
sl@0
  7008
	{ User::LeaveIfError(InsertInOrderAllowRepeats(anEntry));}
sl@0
  7009
sl@0
  7010
sl@0
  7011
sl@0
  7012
/**
sl@0
  7013
Reserves space for the specified number of elements.
sl@0
  7014
sl@0
  7015
After a call to this function, the memory allocated to the array is sufficient 
sl@0
  7016
to hold the number of integers specified. Adding new integers to the array 
sl@0
  7017
does not result in a re-allocation of memory until the the total number of 
sl@0
  7018
integers exceeds the specified count.
sl@0
  7019
sl@0
  7020
@param	aCount	The number of integers for which space should be reserved
sl@0
  7021
@leave KErrNoMemory	If the requested amount of memory could not be allocated
sl@0
  7022
*/
sl@0
  7023
inline void RArray<TInt>::ReserveL(TInt aCount)
sl@0
  7024
	{ User::LeaveIfError(RPointerArrayBase::DoReserve(aCount)); }
sl@0
  7025
sl@0
  7026
sl@0
  7027
sl@0
  7028
sl@0
  7029
/**
sl@0
  7030
Appends an unsigned integer onto the array.
sl@0
  7031
	
sl@0
  7032
The function leaves with one of the system wide error codes, if the operation fails.
sl@0
  7033
	
sl@0
  7034
NOTE: This function is NOT AVAILABLE to code running on the kernel side.	
sl@0
  7035
	
sl@0
  7036
@param anEntry The unsigned integer to be appended.
sl@0
  7037
*/
sl@0
  7038
inline void RArray<TUint>::AppendL(TUint anEntry)
sl@0
  7039
	{ User::LeaveIfError(Append(anEntry));}
sl@0
  7040
sl@0
  7041
sl@0
  7042
/**
sl@0
  7043
Inserts an unsigned integer into the array at the specified position.
sl@0
  7044
	
sl@0
  7045
The function leaves with one of the system wide error codes, if the operation fails.
sl@0
  7046
	
sl@0
  7047
NOTE: This function is NOT AVAILABLE to code running on the kernel side.	
sl@0
  7048
	
sl@0
  7049
@param anEntry  The unsigned integer to be inserted.
sl@0
  7050
@param aPos     The position within the array where the unsigned integer is to 
sl@0
  7051
	            be inserted. The position is relative to zero, i.e. zero
sl@0
  7052
				implies that an entry is inserted at the beginning of
sl@0
  7053
				the array.
sl@0
  7054
			
sl@0
  7055
@panic USER 131, if aPos is negative, or is greater than the number of entries
sl@0
  7056
       currently in the array.
sl@0
  7057
*/
sl@0
  7058
inline void RArray<TUint>::InsertL(TUint anEntry, TInt aPos)
sl@0
  7059
	{ User::LeaveIfError(Insert(anEntry, aPos));}
sl@0
  7060
sl@0
  7061
sl@0
  7062
/**
sl@0
  7063
Finds the first unsigned integer in the array which matches the specified
sl@0
  7064
value, using a sequential search.
sl@0
  7065
sl@0
  7066
The find operation always starts at the low index end of the array. There 
sl@0
  7067
is no assumption about the order of entries in the array.
sl@0
  7068
	
sl@0
  7069
NOTE: This function is NOT AVAILABLE to code running on the kernel side.	
sl@0
  7070
	
sl@0
  7071
@param anEntry The unsigned integer to be found.
sl@0
  7072
@return The index of the first matching unsigned integer within the array.
sl@0
  7073
@leave  KErrNotFound, if no matching entry can be found.
sl@0
  7074
*/
sl@0
  7075
inline TInt RArray<TUint>::FindL(TUint anEntry) const
sl@0
  7076
	{ return User::LeaveIfError(Find(anEntry));}
sl@0
  7077
sl@0
  7078
sl@0
  7079
/**
sl@0
  7080
Finds the last unsigned integer in the array which matches the specified
sl@0
  7081
value, using a sequential search.
sl@0
  7082
sl@0
  7083
The find operation always starts at the high index end of the array. There 
sl@0
  7084
is no assumption about the order of entries in the array.
sl@0
  7085
	
sl@0
  7086
NOTE: This function is NOT AVAILABLE to code running on the kernel side.	
sl@0
  7087
	
sl@0
  7088
@param anEntry The unsigned integer to be found.
sl@0
  7089
@return The index of the last matching unsigned integer within the array.
sl@0
  7090
@leave  KErrNotFound, if no matching entry can be found.
sl@0
  7091
*/
sl@0
  7092
inline TInt RArray<TUint>::FindReverseL(TUint anEntry) const
sl@0
  7093
	{ return User::LeaveIfError(FindReverse(anEntry));}
sl@0
  7094
sl@0
  7095
sl@0
  7096
/**
sl@0
  7097
Finds the unsigned integer in the array which matches the specified value, 
sl@0
  7098
using a binary search technique.
sl@0
  7099
	
sl@0
  7100
The functions assume that existing entries within the array are in unsigned 
sl@0
  7101
integer order.
sl@0
  7102
sl@0
  7103
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  7104
	
sl@0
  7105
@param anEntry The unsigned integer to be found.
sl@0
  7106
sl@0
  7107
@return The index of the matching unsigned integer within the array;
sl@0
  7108
@leave  KErrNotFound, if no matching entry can be found.
sl@0
  7109
*/
sl@0
  7110
inline TInt RArray<TUint>::FindInOrderL(TUint anEntry) const
sl@0
  7111
	{ return User::LeaveIfError(FindInOrder(anEntry));}
sl@0
  7112
sl@0
  7113
sl@0
  7114
/**
sl@0
  7115
Finds the unsigned integer in the array which matches the specified value, 
sl@0
  7116
using a binary search technique.
sl@0
  7117
sl@0
  7118
If the index cannot be found, the function returns the index of the last
sl@0
  7119
unsigned integer within the array which logically precedes anEntry.
sl@0
  7120
The functions assume that existing entries within the array are in unsigned 
sl@0
  7121
integer order.
sl@0
  7122
	
sl@0
  7123
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  7124
	
sl@0
  7125
@param anEntry The unsigned integer to be found.
sl@0
  7126
@param anIndex A TInt supplied by the caller. On return, contains an index
sl@0
  7127
               value of the matching unsigned integer within the array. 
sl@0
  7128
               If the function leaves with KErrNotFound, this is the index of the
sl@0
  7129
               first unsigned integer within the array that is bigger than the
sl@0
  7130
               unsigned integer being searched for - if no unsigned integers within
sl@0
  7131
               the array are bigger, then the index value is the same as the
sl@0
  7132
               total number of unsigned integers within the array.
sl@0
  7133
sl@0
  7134
@leave  KErrNotFound, if no matching entry can be found.
sl@0
  7135
*/
sl@0
  7136
inline void RArray<TUint>::FindInOrderL(TUint anEntry, TInt& anIndex) const
sl@0
  7137
	{ User::LeaveIfError(FindInOrder(anEntry, anIndex));}
sl@0
  7138
sl@0
  7139
sl@0
  7140
/**
sl@0
  7141
Finds the unsigned integer in the array that matches the specified unsigned integer 
sl@0
  7142
using a binary search technique.
sl@0
  7143
sl@0
  7144
In the case that there is more than one matching element, finds the first, last or any
sl@0
  7145
match as specified.
sl@0
  7146
	
sl@0
  7147
The function assumes that the array is in unsigned integer order.
sl@0
  7148
sl@0
  7149
NOTE: This function is NOT AVAILABLE to code running on the kernel side.
sl@0
  7150
	
sl@0
  7151
@param anEntry The unsigned integer to be found.
sl@0
  7152
@param aMode   Specifies whether to find the first match, the last match or 
sl@0
  7153
               any match, as defined by one of the TArrayFindMode enum values.
sl@0
  7154
sl@0
  7155
@return The array index of a matching element - what the index refers to depends
sl@0
  7156
        on the value of aMode:
sl@0
  7157
        if this is EArrayFindMode_First, then the index refers to the first matching element;
sl@0
  7158
        if this is EArrayFindMode_Any, then the index can refer to any of the matching elements;
sl@0
  7159
        if this is EArrayFindMode_Last, then the index refers to first element that follows
sl@0
  7160
        the last matching element - if the last matching element is also the last element
sl@0
  7161
        of the array, then the index value is the same as the total number of elements in the array.
sl@0
  7162
        
sl@0
  7163
@leave KErrNotFound if no matching entry exists.
sl@0
  7164
sl@0
  7165
@see TArrayFindMode
sl@0
  7166
*/
sl@0
  7167
inline TInt RArray<TUint>::SpecificFindInOrderL(TUint anEntry, TInt aMode) const
sl@0
  7168
	{ return User::LeaveIfError(SpecificFindInOrder(anEntry, aMode));}
sl@0
  7169
sl@0
  7170
sl@0
  7171
/**
sl@0
  7172
Finds the unsigned integer in the array that matches the specified unsigned integer
sl@0
  7173
using a binary search technique.
sl@0
  7174
sl@0
  7175
Where there is more than one matching element, it finds the first, last or
sl@0
  7176
any matching element as specified by the value of aMode.
sl@0
  7177
sl@0
  7178
The function assumes that the array is in unsigned integer order.
sl@0
  7179
	
sl@0
  7180
NOTE: This function is NOT AVAILABLE to code running on the kernel side.	
sl@0
  7181
	
sl@0
  7182
@param anEntry The unsigned integer to be found.
sl@0
  7183
@param anIndex A TInt type supplied by the caller. On return, it contains an index
sl@0
  7184
               value depending on whether a match is found and on the value of aMode.
sl@0
  7185
               If there is no matching element in the array, then this is the
sl@0
  7186
               index of the first element in the array that is bigger than the element
sl@0
  7187
               being searched for - if no elements in the array are bigger, then
sl@0
  7188
               the index value is the same as the total number of elements in the array.
sl@0
  7189
               If there is a matching element, then what the index refers to depends on
sl@0
  7190
               the value of aMode:
sl@0
  7191
               if this is EArrayFindMode_First, then the index refers to the first matching element;
sl@0
  7192
               if this is EArrayFindMode_Any, then the index can refer to any of the matching elements;
sl@0
  7193
               if this is EArrayFindMode_Last, then the index refers to first element that follows
sl@0
  7194
               the last matching element - if the last matching element is also the last element of the array,
sl@0
  7195
               then the index value is the same as the total number of elements in the array.
sl@0
  7196
               
sl@0
  7197
@param	aMode  Specifies whether to find the first match, the last match or any match, as defined by
sl@0
  7198
               one of the TArrayFindMode enum values.
sl@0
  7199
@leave KErrNotFound if no matching entry exists.
sl@0
  7200
sl@0
  7201
@see TArrayFindMode
sl@0
  7202
*/
sl@0
  7203
inline void RArray<TUint>::SpecificFindInOrderL(TUint anEntry, TInt& anIndex, TInt aMode) const
sl@0
  7204
	{ User::LeaveIfError(SpecificFindInOrder(anEntry, anIndex, aMode));}
sl@0
  7205
sl@0
  7206
sl@0
  7207
/**
sl@0
  7208
Inserts an unsigned integer into the array in unsigned integer order.
sl@0
  7209
sl@0
  7210
No duplicate entries are permitted.
sl@0
  7211
sl@0
  7212
The function assumes that existing entries within the array are in unsigned 
sl@0
  7213
integer order.
sl@0
  7214
sl@0
  7215
The function leaves with one of the system wide error codes, if the operation fails.
sl@0
  7216
	
sl@0
  7217
Note that the array remains unchanged following an attempt to insert a duplicate entry.
sl@0
  7218
	
sl@0
  7219
NOTE: This function is NOT AVAILABLE to code running on the kernel side.	
sl@0
  7220
	
sl@0
  7221
@param anEntry The unsigned integer to be inserted.
sl@0
  7222
*/
sl@0
  7223
inline void RArray<TUint>::InsertInOrderL(TUint anEntry)
sl@0
  7224
	{ User::LeaveIfError(InsertInOrder(anEntry));}
sl@0
  7225
sl@0
  7226
sl@0
  7227
/**
sl@0
  7228
Inserts an unsigned integer into the array in unsigned integer order, allowing 
sl@0
  7229
duplicates.
sl@0
  7230
sl@0
  7231
If the new integer is a duplicate of an existing entry in the array, then 
sl@0
  7232
the new unsigned integer is inserted after the existing one. If more than 
sl@0
  7233
one duplicate entry already exists in the array, then any new duplicate
sl@0
  7234
unsigned integer is inserted after the last one.
sl@0
  7235
	
sl@0
  7236
The function assumes that existing entries within the array are in unsigned 
sl@0
  7237
integer order.
sl@0
  7238
sl@0
  7239
The function leaves with one of the system wide error codes, if the operation fails.
sl@0
  7240
	
sl@0
  7241
NOTE: This function is NOT AVAILABLE to code running on the kernel side.	
sl@0
  7242
	
sl@0
  7243
@param anEntry The unsigned integer to be inserted.
sl@0
  7244
*/
sl@0
  7245
inline void RArray<TUint>::InsertInOrderAllowRepeatsL(TUint anEntry)
sl@0
  7246
	{ User::LeaveIfError(InsertInOrderAllowRepeats(anEntry));}
sl@0
  7247
sl@0
  7248
sl@0
  7249
sl@0
  7250
/**
sl@0
  7251
Reserves space for the specified number of elements.
sl@0
  7252
sl@0
  7253
After a call to this function, the memory allocated to the array is sufficient 
sl@0
  7254
to hold the number of integers specified. Adding new integers to the array 
sl@0
  7255
does not result in a re-allocation of memory until the the total number of 
sl@0
  7256
integers exceeds the specified count.
sl@0
  7257
sl@0
  7258
@param	aCount	The number of integers for which space should be reserved
sl@0
  7259
@leave KErrNoMemory	If the requested amount of memory could not be allocated
sl@0
  7260
*/
sl@0
  7261
inline void RArray<TUint>::ReserveL(TInt aCount)
sl@0
  7262
	{ User::LeaveIfError(RPointerArrayBase::DoReserve(aCount)); }
sl@0
  7263
sl@0
  7264
sl@0
  7265
sl@0
  7266
// class TChunkHeapCreateInfo
sl@0
  7267
/**
sl@0
  7268
Sets single thread property of the chunk heap.
sl@0
  7269
sl@0
  7270
This overrides any previous call to TChunkHeapCreateInfo::SetSingleThread()
sl@0
  7271
for this TChunkHeapCreateInfo object.
sl@0
  7272
sl@0
  7273
@param aSingleThread	ETrue when the chunk heap is to be single threaded,
sl@0
  7274
						EFalse otherwise.
sl@0
  7275
*/
sl@0
  7276
inline void TChunkHeapCreateInfo::SetSingleThread(const TBool aSingleThread)
sl@0
  7277
	{
sl@0
  7278
	iSingleThread = aSingleThread;
sl@0
  7279
	}
sl@0
  7280
sl@0
  7281
sl@0
  7282
/**
sl@0
  7283
Sets alignment of the cells of the chunk heap to be created.
sl@0
  7284
sl@0
  7285
This overrides any previous call to TChunkHeapCreateInfo::SetAlignment()
sl@0
  7286
for this TChunkHeapCreateInfo object.
sl@0
  7287
sl@0
  7288
@param aAlignment	The alignment of the heap cells.
sl@0
  7289
*/
sl@0
  7290
inline void TChunkHeapCreateInfo::SetAlignment(TInt aAlign)
sl@0
  7291
	{
sl@0
  7292
	iAlign = aAlign;
sl@0
  7293
	}
sl@0
  7294
sl@0
  7295
sl@0
  7296
/**
sl@0
  7297
Sets the increments to the size of the host chunk.  If the supplied value is 
sl@0
  7298
less than KMinHeapGrowBy, it is discarded and the value KMinHeapGrowBy is 
sl@0
  7299
used instead.
sl@0
  7300
sl@0
  7301
This overrides any previous call to TChunkHeapCreateInfo::SetGrowBy()
sl@0
  7302
for this TChunkHeapCreateInfo object.
sl@0
  7303
sl@0
  7304
@param aGrowBy	The increment to the size of the host chunk.
sl@0
  7305
*/
sl@0
  7306
inline void TChunkHeapCreateInfo::SetGrowBy(TInt aGrowBy)
sl@0
  7307
	{
sl@0
  7308
	iGrowBy = aGrowBy;
sl@0
  7309
	}
sl@0
  7310
sl@0
  7311
sl@0
  7312
/**
sl@0
  7313
Sets the offset from the base of the host chunk to the start of the heap.
sl@0
  7314
sl@0
  7315
This overrides any previous call to TChunkHeapCreateInfo::SetOffset()
sl@0
  7316
for this TChunkHeapCreateInfo object.
sl@0
  7317
sl@0
  7318
@param aOffset	The offset in bytes.
sl@0
  7319
*/
sl@0
  7320
inline void TChunkHeapCreateInfo::SetOffset(TInt aOffset)
sl@0
  7321
	{
sl@0
  7322
	iOffset = aOffset;
sl@0
  7323
	}
sl@0
  7324
sl@0
  7325
sl@0
  7326
/**
sl@0
  7327
Sets the mode flags of the chunk heap.
sl@0
  7328
sl@0
  7329
This overrides any previous call to TChunkHeapCreateInfo::SetMode()
sl@0
  7330
for this TChunkHeapCreateInfo object.
sl@0
  7331
sl@0
  7332
@param aMode	The mode flags for the chunk heap to be created, this should be
sl@0
  7333
				one or more of the values from TChunkHeapCreateMode.
sl@0
  7334
*/
sl@0
  7335
inline void TChunkHeapCreateInfo::SetMode(TUint aMode)
sl@0
  7336
	{
sl@0
  7337
	iMode = aMode;
sl@0
  7338
	}
sl@0
  7339
sl@0
  7340
sl@0
  7341
/**
sl@0
  7342
Sets the paging attribute of the chunk heap to be created.
sl@0
  7343
sl@0
  7344
This overrides any previous call to TChunkHeapCreateInfo::SetPaging()
sl@0
  7345
for this TChunkHeapCreateInfo object.
sl@0
  7346
sl@0
  7347
@param aPaging	The paging attribute for the chunk heap to be created.
sl@0
  7348
*/
sl@0
  7349
inline void TChunkHeapCreateInfo::SetPaging(const TChunkHeapPagingAtt aPaging)
sl@0
  7350
	{
sl@0
  7351
	iPaging = aPaging;
sl@0
  7352
	}
sl@0
  7353
sl@0
  7354
sl@0
  7355
/**
sl@0
  7356
Sets the priority of the client's process.
sl@0
  7357
sl@0
  7358
@param aPriority The priority value.
sl@0
  7359
*/
sl@0
  7360
inline void RMessagePtr2::SetProcessPriorityL(TProcessPriority aPriority) const
sl@0
  7361
	{ User::LeaveIfError(SetProcessPriority(aPriority));}
sl@0
  7362
sl@0
  7363
sl@0
  7364
/**
sl@0
  7365
Opens a handle on the client thread.
sl@0
  7366
sl@0
  7367
@param aClient    On successful return, the handle to the client thread.
sl@0
  7368
@param aOwnerType An enumeration whose enumerators define the ownership of
sl@0
  7369
                  the handle. If not explicitly specified,
sl@0
  7370
                  EOwnerProcess is taken as default.
sl@0
  7371
*/
sl@0
  7372
inline void RMessagePtr2::ClientL(RThread& aClient, TOwnerType aOwnerType) const
sl@0
  7373
	{ User::LeaveIfError(Client(aClient, aOwnerType));}
sl@0
  7374
sl@0
  7375
sl@0
  7376
#ifndef __REMOVE_PLATSEC_DIAGNOSTIC_STRINGS__
sl@0
  7377
sl@0
  7378
inline TBool RMessagePtr2::HasCapability(TCapability aCapability, const char* aDiagnostic) const
sl@0
  7379
	{
sl@0
  7380
	return DoHasCapability(aCapability, aDiagnostic);
sl@0
  7381
	}
sl@0
  7382
sl@0
  7383
inline void RMessagePtr2::HasCapabilityL(TCapability aCapability, const char* aDiagnosticMessage) const
sl@0
  7384
	{
sl@0
  7385
	if (!HasCapability(aCapability, aDiagnosticMessage))
sl@0
  7386
		{
sl@0
  7387
		User::Leave(KErrPermissionDenied);
sl@0
  7388
		}
sl@0
  7389
	}
sl@0
  7390
sl@0
  7391
inline TBool RMessagePtr2::HasCapability(TCapability aCapability1, TCapability aCapability2, const char* aDiagnostic) const
sl@0
  7392
	{
sl@0
  7393
	return DoHasCapability(aCapability1, aCapability2, aDiagnostic);
sl@0
  7394
	}
sl@0
  7395
sl@0
  7396
inline void RMessagePtr2::HasCapabilityL(TCapability aCapability1, TCapability aCapability2, const char* aDiagnosticMessage) const
sl@0
  7397
	{
sl@0
  7398
	if (!HasCapability(aCapability1, aCapability2, aDiagnosticMessage))
sl@0
  7399
		{
sl@0
  7400
		User::Leave(KErrPermissionDenied);
sl@0
  7401
		}
sl@0
  7402
	}
sl@0
  7403
sl@0
  7404
#else //__REMOVE_PLATSEC_DIAGNOSTIC_STRINGS__
sl@0
  7405
sl@0
  7406
// Only available to NULL arguments
sl@0
  7407
inline TBool RMessagePtr2::HasCapability(TCapability aCapability, OnlyCreateWithNull /*aDiagnostic*/) const
sl@0
  7408
	{
sl@0
  7409
	return DoHasCapability(aCapability);
sl@0
  7410
	}
sl@0
  7411
sl@0
  7412
inline void RMessagePtr2::HasCapabilityL(TCapability aCapability, OnlyCreateWithNull /*aDiagnosticMessage*/) const
sl@0
  7413
	{
sl@0
  7414
	if (!DoHasCapability(aCapability))
sl@0
  7415
		{
sl@0
  7416
		User::Leave(KErrPermissionDenied);
sl@0
  7417
		}
sl@0
  7418
	}
sl@0
  7419
sl@0
  7420
inline TBool RMessagePtr2::HasCapability(TCapability aCapability1, TCapability aCapability2, OnlyCreateWithNull /*aDiagnostic*/) const
sl@0
  7421
	{
sl@0
  7422
	return DoHasCapability(aCapability1, aCapability2);
sl@0
  7423
	}
sl@0
  7424
sl@0
  7425
inline void RMessagePtr2::HasCapabilityL(TCapability aCapability1, TCapability aCapability2, OnlyCreateWithNull /*aDiagnosticMessage*/) const
sl@0
  7426
	{
sl@0
  7427
	if (!DoHasCapability(aCapability1, aCapability2))
sl@0
  7428
		{
sl@0
  7429
		User::Leave(KErrPermissionDenied);
sl@0
  7430
		}
sl@0
  7431
	}
sl@0
  7432
sl@0
  7433
#ifndef __REMOVE_PLATSEC_DIAGNOSTICS__
sl@0
  7434
// For things using KSuppressPlatSecDiagnostic
sl@0
  7435
inline TBool RMessagePtr2::HasCapability(TCapability aCapability, OnlyCreateWithNull /*aDiagnostic*/, OnlyCreateWithNull /*aSuppress*/) const
sl@0
  7436
	{
sl@0
  7437
	return DoHasCapability(aCapability, KSuppressPlatSecDiagnosticMagicValue);
sl@0
  7438
	}
sl@0
  7439
sl@0
  7440
inline void RMessagePtr2::HasCapabilityL(TCapability aCapability, OnlyCreateWithNull /*aDiagnostic*/, OnlyCreateWithNull /*aSuppress*/) const
sl@0
  7441
	{
sl@0
  7442
	if (!DoHasCapability(aCapability, KSuppressPlatSecDiagnosticMagicValue))
sl@0
  7443
		{
sl@0
  7444
		User::Leave(KErrPermissionDenied);
sl@0
  7445
		}
sl@0
  7446
	}
sl@0
  7447
sl@0
  7448
inline TBool RMessagePtr2::HasCapability(TCapability aCapability1, TCapability aCapability2, OnlyCreateWithNull /*aDiagnostic*/, OnlyCreateWithNull /*aSuppress*/) const
sl@0
  7449
	{
sl@0
  7450
	return DoHasCapability(aCapability1, aCapability2, KSuppressPlatSecDiagnosticMagicValue);
sl@0
  7451
	}
sl@0
  7452
sl@0
  7453
inline void RMessagePtr2::HasCapabilityL(TCapability aCapability1, TCapability aCapability2, OnlyCreateWithNull /*aDiagnostic*/, OnlyCreateWithNull /*aSuppress*/) const
sl@0
  7454
	{
sl@0
  7455
	if (!DoHasCapability(aCapability1, aCapability2, KSuppressPlatSecDiagnosticMagicValue))
sl@0
  7456
		{
sl@0
  7457
		User::Leave(KErrPermissionDenied);
sl@0
  7458
		}
sl@0
  7459
	}
sl@0
  7460
#endif // !__REMOVE_PLATSEC_DIAGNOSTICS__
sl@0
  7461
sl@0
  7462
#endif // !__REMOVE_PLATSEC_DIAGNOSTIC_STRINGS__
sl@0
  7463
sl@0
  7464
inline TInt RThread::RenameMe(const TDesC& aName)
sl@0
  7465
	{ return User::RenameThread(aName); }
sl@0
  7466
inline TInt RProcess::RenameMe(const TDesC& aName)
sl@0
  7467
	{ return User::RenameProcess(aName); }
sl@0
  7468
sl@0
  7469
sl@0
  7470
#endif // !__KERNEL_MODE__
sl@0
  7471
sl@0
  7472
#ifdef __SUPPORT_CPP_EXCEPTIONS__
sl@0
  7473
// The standard header file <exception> defines the following guard macro for EDG and CW, VC++, GCC respectively.
sl@0
  7474
// The guard below is ugly. It will surely come back and bite us unless we resolve the whole issue of standard headers
sl@0
  7475
// when we move to supporting Standard C++.
sl@0
  7476
sl@0
  7477
// The macro __SYMBIAN_STDCPP_SUPPORT__ is defined when building a StdC++ target.
sl@0
  7478
// In this case, we wish to avoid defining uncaught_exception below since it clashes with the StdC++ specification 
sl@0
  7479
#if !defined(_EXCEPTION) && !defined(_EXCEPTION_) && !defined(__EXCEPTION__) && !defined(__SYMBIAN_STDCPP_SUPPORT__)
sl@0
  7480
sl@0
  7481
#if defined(__VC32__) && !defined(_CRTIMP_PURE)
sl@0
  7482
sl@0
  7483
	// Declare MS EH runtime functions
sl@0
  7484
	bool __uncaught_exception(void);
sl@0
  7485
sl@0
  7486
#if _MSC_VER >= 1200
sl@0
  7487
	__declspec(noreturn) void terminate(void);
sl@0
  7488
	__declspec(noreturn) void unexpected(void);
sl@0
  7489
#else
sl@0
  7490
	void terminate(void);
sl@0
  7491
	void unexpected(void);
sl@0
  7492
#endif
sl@0
  7493
sl@0
  7494
	typedef void (*terminate_handler)();
sl@0
  7495
	terminate_handler set_terminate(terminate_handler h) throw();
sl@0
  7496
	typedef void (*unexpected_handler)();
sl@0
  7497
	unexpected_handler set_unexpected(unexpected_handler h) throw();
sl@0
  7498
sl@0
  7499
namespace std {
sl@0
  7500
#ifdef __MSVCDOTNET__
sl@0
  7501
	inline bool uncaught_exception(void) { return ::__uncaught_exception(); }
sl@0
  7502
#else // !__MSVCDOTNET__
sl@0
  7503
	// MS KB242192: BUG: uncaught_exception() Always Returns False
sl@0
  7504
	inline bool uncaught_exception(void) { return false; }
sl@0
  7505
#endif //__MSVCDOTNET__
sl@0
  7506
	inline void terminate(void) { ::terminate(); }
sl@0
  7507
	inline void unexpected(void) { ::unexpected(); }
sl@0
  7508
	inline terminate_handler set_terminate(terminate_handler h) throw() { return ::set_terminate(h); }
sl@0
  7509
	inline unexpected_handler set_unexpected(unexpected_handler h) throw() { return ::set_unexpected(h); }
sl@0
  7510
}
sl@0
  7511
sl@0
  7512
#endif // extract from MSVC headers
sl@0
  7513
sl@0
  7514
#ifdef __CW32__
sl@0
  7515
sl@0
  7516
	extern "C" bool __uncaught_exception(void);
sl@0
  7517
sl@0
  7518
namespace std {
sl@0
  7519
#if __MWERKS__ > 0x3200
sl@0
  7520
	inline bool uncaught_exception(void) { return ::__uncaught_exception(); }
sl@0
  7521
#else
sl@0
  7522
	// no uncaught_exception() implementation on CW 2.4.7
sl@0
  7523
	inline bool uncaught_exception(void) { return false; }
sl@0
  7524
#endif
sl@0
  7525
}
sl@0
  7526
sl@0
  7527
#endif // extract from CW headers
sl@0
  7528
sl@0
  7529
#endif // <exception> header guard
sl@0
  7530
sl@0
  7531
#endif //__SUPPORT_CPP_EXCEPTIONS__