os/kernelhwsrv/kernel/eka/include/e32panic.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1997-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\e32panic.h
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @file e32panic.h
sl@0
    20
 @publishedAll
sl@0
    21
 @released
sl@0
    22
*/
sl@0
    23
sl@0
    24
#ifndef __E32PANIC_H__
sl@0
    25
#define __E32PANIC_H__
sl@0
    26
sl@0
    27
sl@0
    28
sl@0
    29
sl@0
    30
/**
sl@0
    31
Defines a set of panic numbers associated with the USER panic category.
sl@0
    32
sl@0
    33
Some of these numbers are also associated with panics raised on
sl@0
    34
the kernel side, and may be associated with 
sl@0
    35
a number of category names, including KERN-COMMON, KERN-HEAP etc.
sl@0
    36
*/
sl@0
    37
enum TCdtPanic
sl@0
    38
	{
sl@0
    39
	
sl@0
    40
	/**
sl@0
    41
	A thread has called User::Invariant(). 
sl@0
    42
sl@0
    43
    Typically, User::Invariant() is called when a test for a class
sl@0
    44
    invariant fails, i.e. when a test which checks that the internal data
sl@0
    45
    of an object is self-consistent, fails. 
sl@0
    46
sl@0
    47
    Check the design and implementation of your class.
sl@0
    48
    
sl@0
    49
    @see User
sl@0
    50
	*/
sl@0
    51
	EInvariantFalse=0,
sl@0
    52
		
sl@0
    53
	
sl@0
    54
	/**
sl@0
    55
	Not used.
sl@0
    56
	*/
sl@0
    57
	ETDateTimeUnderflow=1,
sl@0
    58
	
sl@0
    59
		
sl@0
    60
	
sl@0
    61
	/**
sl@0
    62
    Not used.
sl@0
    63
	*/
sl@0
    64
	ETDateTimeBadDate=2,
sl@0
    65
	
sl@0
    66
	
sl@0
    67
	/**
sl@0
    68
	A TDateTime object has been constructed with an invalid date or time field.
sl@0
    69
sl@0
    70
    @see TDateTime
sl@0
    71
	*/
sl@0
    72
	ETDateTimeBadDateTime=3,
sl@0
    73
	
sl@0
    74
	
sl@0
    75
    /**
sl@0
    76
    Not used.
sl@0
    77
	*/
sl@0
    78
	ETDateTimeAddDaysRange=4,
sl@0
    79
	
sl@0
    80
	
sl@0
    81
	/**
sl@0
    82
    Not used.
sl@0
    83
	*/
sl@0
    84
	ETDateTimeAddMonthsRange=5,
sl@0
    85
sl@0
    86
sl@0
    87
	/**
sl@0
    88
    Not used.
sl@0
    89
	*/
sl@0
    90
	ETDateTimeDaySecNegative=6,
sl@0
    91
	
sl@0
    92
	
sl@0
    93
	/**
sl@0
    94
	A panic raised by the Ptr() member function of a 16-bit descriptor
sl@0
    95
	if the descriptor is invalid.
sl@0
    96
	
sl@0
    97
	@see TDesC16::Ptr()
sl@0
    98
	*/
sl@0
    99
	ETDes16BadDescriptorType=7,
sl@0
   100
	
sl@0
   101
	
sl@0
   102
	/**
sl@0
   103
	The length value passed to a 16-bit variant descriptor member
sl@0
   104
	function is invalid.
sl@0
   105
	
sl@0
   106
	This panic may be raised by some descriptor constructors and, specifically,
sl@0
   107
	by the Replace() and Set() descriptor member functions.
sl@0
   108
	
sl@0
   109
	@see TDes16
sl@0
   110
	*/
sl@0
   111
	ETDes16LengthOutOfRange=8,
sl@0
   112
	
sl@0
   113
	
sl@0
   114
	/**
sl@0
   115
	The index value passed to the 16-bit variant descriptor Operator[] is
sl@0
   116
	out of bounds.
sl@0
   117
	*/
sl@0
   118
	ETDes16IndexOutOfRange=9,
sl@0
   119
	
sl@0
   120
	
sl@0
   121
	/**
sl@0
   122
	The position value passed to a 16-bit variant descriptor member function
sl@0
   123
	is out of bounds.
sl@0
   124
sl@0
   125
	The panic can be raised by the Left(), Right(), Mid(), Insert(), Delete()
sl@0
   126
	and Replace() member functions of TDes16.
sl@0
   127
sl@0
   128
    @see TDes16
sl@0
   129
	*/
sl@0
   130
	ETDes16PosOutOfRange=10,
sl@0
   131
	
sl@0
   132
	
sl@0
   133
	/**
sl@0
   134
	An operation to move or copy data to a 16-bit variant descriptor,
sl@0
   135
	will cause the length of that descriptor to exceed its maximum length.
sl@0
   136
	
sl@0
   137
	This may be caused by any of the copying, appending or formatting member
sl@0
   138
	functions but, specifically, by the Insert(), Replace(), Fill(), Fillz(),
sl@0
   139
	and ZeroTerminate() descriptor member functions. It can also be caused by
sl@0
   140
	the SetLength() function.
sl@0
   141
sl@0
   142
    @see TDes16
sl@0
   143
	*/
sl@0
   144
	ETDes16Overflow=11,
sl@0
   145
	
sl@0
   146
	
sl@0
   147
	/**
sl@0
   148
	The format string passed to the 16-bit variant descriptor member functions
sl@0
   149
	Format() and AppendFormat() has incorrect syntax.
sl@0
   150
	
sl@0
   151
    @see TDes16
sl@0
   152
	*/
sl@0
   153
	ETDes16BadFormatDescriptor=12,
sl@0
   154
	
sl@0
   155
	
sl@0
   156
	/**
sl@0
   157
	An invalid variable list has been passed to the AppendFormatList() member
sl@0
   158
	function of the 16-bit variant descriptor TDes16, when the format is %S or %s.
sl@0
   159
	
sl@0
   160
    This panic is raised in debug builds only.
sl@0
   161
    
sl@0
   162
    @see TDes16
sl@0
   163
	*/
sl@0
   164
	ETDes16BadFormatParams=13,
sl@0
   165
	
sl@0
   166
	
sl@0
   167
	/**
sl@0
   168
	This panic is raised when expanding or contracting an HBufC16 buffer using
sl@0
   169
	the ReAlloc() or ReAllocL() descriptor member functions and the new
sl@0
   170
	specified length is too small to contain the data.
sl@0
   171
	
sl@0
   172
	@see HBufC16
sl@0
   173
	*/
sl@0
   174
	ETDes16ReAllocTooSmall=14,
sl@0
   175
	
sl@0
   176
	
sl@0
   177
	/**
sl@0
   178
	Not used.
sl@0
   179
	*/
sl@0
   180
	ETDes16RemoteBadDescriptorType=15,
sl@0
   181
	
sl@0
   182
	
sl@0
   183
    /**
sl@0
   184
	In a call to the Replace() member function of the 16-bit variant
sl@0
   185
	descriptor TDes16,the length of the source descriptor is negative
sl@0
   186
	or exceeds the maximum length of the target descriptor.
sl@0
   187
	
sl@0
   188
    @see TDes16
sl@0
   189
	*/
sl@0
   190
	ETDes16RemoteLengthOutOfRange=16,
sl@0
   191
	
sl@0
   192
	
sl@0
   193
	/**
sl@0
   194
	A 16-bit variant descriptor is being constructed with a negative
sl@0
   195
	length value.
sl@0
   196
	
sl@0
   197
	This panic may also be raised if the Set(), Repeat() and the Find() member
sl@0
   198
	functions are passed negative length values.
sl@0
   199
	*/
sl@0
   200
	ETDes16LengthNegative=17,
sl@0
   201
	
sl@0
   202
	
sl@0
   203
	/**
sl@0
   204
	A 16-bit variant descriptor is being constructed with a negative maximum 
sl@0
   205
	length value.
sl@0
   206
	*/
sl@0
   207
	ETDes16MaxLengthNegative=18,
sl@0
   208
	
sl@0
   209
	
sl@0
   210
	/**
sl@0
   211
	A panic raised by the Ptr() member function of an 8-bit descriptor
sl@0
   212
	if the descriptor is invalid.
sl@0
   213
	
sl@0
   214
	@see TDesC8::Ptr()
sl@0
   215
	*/
sl@0
   216
	ETDes8BadDescriptorType=19,
sl@0
   217
	
sl@0
   218
	
sl@0
   219
	/**
sl@0
   220
	The length value passed to an 8-bit variant descriptor member
sl@0
   221
	function is invalid.
sl@0
   222
	
sl@0
   223
	This panic may be raised by some descriptor constructors and, specifically,
sl@0
   224
	by the Replace() and Set() descriptor member functions.
sl@0
   225
	
sl@0
   226
	@see TDes8
sl@0
   227
	*/
sl@0
   228
	ETDes8LengthOutOfRange=20,
sl@0
   229
	
sl@0
   230
	
sl@0
   231
	/**
sl@0
   232
	The index value passed to the 8-bit variant descriptor Operator[] is
sl@0
   233
	out of bounds.
sl@0
   234
	*/
sl@0
   235
	ETDes8IndexOutOfRange=21,
sl@0
   236
	
sl@0
   237
	
sl@0
   238
	/**
sl@0
   239
	The position value passed to an 8-bit variant descriptor member function
sl@0
   240
	is out of bounds.
sl@0
   241
sl@0
   242
	The panic can be raised by the Left(), Right(), Mid(), Insert(), Delete()
sl@0
   243
	and Replace() member functions of TDes8
sl@0
   244
sl@0
   245
    @see TDes8
sl@0
   246
	*/
sl@0
   247
	ETDes8PosOutOfRange=22,
sl@0
   248
	
sl@0
   249
	
sl@0
   250
	/**
sl@0
   251
	An operation to move or copy data to an 8-bit variant descriptor,
sl@0
   252
	will cause the length of that descriptor to exceed its maximum length.
sl@0
   253
	
sl@0
   254
	This may be caused by any of the copying, appending or formatting member
sl@0
   255
	functions but, specifically, by the Insert(), Replace(), Fill(), Fillz(),
sl@0
   256
	and ZeroTerminate() descriptor member functions. It can also be caused by
sl@0
   257
	the SetLength() function.
sl@0
   258
sl@0
   259
    @see TDes8
sl@0
   260
	*/
sl@0
   261
    ETDes8Overflow=23,
sl@0
   262
   	
sl@0
   263
	
sl@0
   264
	/**
sl@0
   265
	The format string passed to the 8-bit variant descriptor member functions
sl@0
   266
	Format() and AppendFormat() has incorrect syntax.
sl@0
   267
	
sl@0
   268
    @see TDes8
sl@0
   269
	*/
sl@0
   270
	ETDes8BadFormatDescriptor=24,
sl@0
   271
	
sl@0
   272
	
sl@0
   273
	/**
sl@0
   274
	An invalid variable list has been passed to the AppendFormatList() member
sl@0
   275
	function of the 8-bit variant descriptor TDes8, when the format is %S or %s.
sl@0
   276
	
sl@0
   277
    This panic is raised in debug builds only.
sl@0
   278
    
sl@0
   279
    @see TDes8
sl@0
   280
	*/
sl@0
   281
	ETDes8BadFormatParams=25,
sl@0
   282
		
sl@0
   283
	
sl@0
   284
	/**
sl@0
   285
	This panic is raised when expanding or contracting an HBufC8 buffer using
sl@0
   286
	the ReAlloc() or ReAllocL() descriptor member functions and the new
sl@0
   287
	specified length is too small to contain the data.
sl@0
   288
	
sl@0
   289
	@see HBufC8
sl@0
   290
	*/
sl@0
   291
	ETDes8ReAllocTooSmall=26,
sl@0
   292
	
sl@0
   293
	
sl@0
   294
	/**
sl@0
   295
	Not used.
sl@0
   296
	*/
sl@0
   297
	ETDes8RemoteBadDescriptorType=27,
sl@0
   298
	
sl@0
   299
	
sl@0
   300
	
sl@0
   301
    /**
sl@0
   302
	In a call to the Replace() member function of the 8-bit variant
sl@0
   303
	descriptor TDes8,the length of the source descriptor is negative
sl@0
   304
	or exceeds the maximum length of the target descriptor.
sl@0
   305
	
sl@0
   306
    @see TDes8
sl@0
   307
	*/
sl@0
   308
	ETDes8RemoteLengthOutOfRange=28,
sl@0
   309
	
sl@0
   310
	
sl@0
   311
	/**
sl@0
   312
	An 8-bit variant descriptor is being constructed with a negative
sl@0
   313
	length value.
sl@0
   314
	
sl@0
   315
	This panic may also be raised if the Set(), Repeat() and the Find() member
sl@0
   316
	functions are passed negative length values.
sl@0
   317
	*/
sl@0
   318
	ETDes8LengthNegative=29,
sl@0
   319
	
sl@0
   320
	
sl@0
   321
	/**
sl@0
   322
	An 8-bit variant descriptor is being constructed with a negative maximum 
sl@0
   323
	length value.
sl@0
   324
	*/
sl@0
   325
	ETDes8MaxLengthNegative=30,
sl@0
   326
	
sl@0
   327
	
sl@0
   328
	/**
sl@0
   329
	Not used.
sl@0
   330
	*/
sl@0
   331
	ETEntLeaveWithoutEnter=31,
sl@0
   332
	
sl@0
   333
	
sl@0
   334
	/**
sl@0
   335
	It is raised by TRawEvent::Pos() when
sl@0
   336
	the event is not a mouse/pen type event.
sl@0
   337
    
sl@0
   338
    This panic is raised in debug builds only.
sl@0
   339
    */
sl@0
   340
	ETEventNotMoveType=32,
sl@0
   341
	
sl@0
   342
	
sl@0
   343
	/**
sl@0
   344
    It is raised by TRawEvent::ScanCode() when
sl@0
   345
    the event is not a key down, up or repeat event.
sl@0
   346
    
sl@0
   347
   	This panic is raised in debug builds only.
sl@0
   348
	*/
sl@0
   349
	ETEventNotKeyType=33,
sl@0
   350
	
sl@0
   351
	
sl@0
   352
	/**
sl@0
   353
    It is raised by TRawEvent::Modifiers() when
sl@0
   354
    the event is not a modifier update event.
sl@0
   355
	
sl@0
   356
   	This panic is raised in debug builds only.
sl@0
   357
	*/
sl@0
   358
    ETEventNotUpdateModifiersType=34,
sl@0
   359
    
sl@0
   360
    
sl@0
   361
    /**
sl@0
   362
    This panic is raised by the default At() virtual member function of TKey.
sl@0
   363
    
sl@0
   364
    The function is intended to be overridden by a derived class.
sl@0
   365
    
sl@0
   366
    @see TKey
sl@0
   367
    */
sl@0
   368
	ETFuncTKeyVirtualAt=35,
sl@0
   369
	
sl@0
   370
	
sl@0
   371
	/**
sl@0
   372
	This panic is raised by the default Swap() virtual member function of TSwap.
sl@0
   373
	
sl@0
   374
	The function is intended to be overridden by a derived class.
sl@0
   375
sl@0
   376
	@see TSwap
sl@0
   377
	*/
sl@0
   378
	ETFuncTSwapVirtualSwap=36,
sl@0
   379
	
sl@0
   380
	
sl@0
   381
	/**
sl@0
   382
	The index value passed to the operator[] of a TUidType is negative
sl@0
   383
	or is greater than or equal to KMaxCheckedUid.
sl@0
   384
	
sl@0
   385
	@see KMaxCheckedUid
sl@0
   386
	@see TUidType
sl@0
   387
	*/
sl@0
   388
	ETFuncUidTypeBadIndex=37,
sl@0
   389
	
sl@0
   390
	
sl@0
   391
	/**
sl@0
   392
	The length of the descriptor passed to the Set(TDesC8&) member function of TCheckedUid 
sl@0
   393
	is not equal to the size of a TCheckedUid object.
sl@0
   394
	
sl@0
   395
	@see TCheckedUid
sl@0
   396
	*/
sl@0
   397
	ETFuncCheckedUidBadSet=38,
sl@0
   398
	
sl@0
   399
	
sl@0
   400
	/**
sl@0
   401
	The size specified of a new heap is smaller than the permitted minimum;
sl@0
   402
	it must be at least the size of a RHeap object.
sl@0
   403
	
sl@0
   404
	On the user side this is associated with the USER category; on the kernel side
sl@0
   405
	this is associated with the KERN-HEAP category.
sl@0
   406
	*/
sl@0
   407
	ETHeapNewBadSize=39,
sl@0
   408
sl@0
   409
	
sl@0
   410
	/**
sl@0
   411
	Not used.
sl@0
   412
	*/
sl@0
   413
	ETHeapCreateSizeTooSmall=40,
sl@0
   414
	
sl@0
   415
	
sl@0
   416
	/**
sl@0
   417
	In a call to UserHeap::ChunkHeap(), the value defining the minimum length
sl@0
   418
	of the heap is greater than the value defining the maximum length to
sl@0
   419
	which the heap can grow.
sl@0
   420
sl@0
   421
    @see UserHeap
sl@0
   422
	*/
sl@0
   423
	ETHeapCreateMaxLessThanMin=41,
sl@0
   424
	
sl@0
   425
	
sl@0
   426
	/**
sl@0
   427
	In a call to the RHeap member functions, AllocLen(), Free(), FreeZ(),
sl@0
   428
	ReAlloc(), ReAllocL(), Adjust() and AdjustL(), a pointer passed to these
sl@0
   429
	functions does not point to a valid cell.
sl@0
   430
sl@0
   431
	On the user side this is associated with the USER category; on the kernel side
sl@0
   432
	this is associated with the KERN-HEAP category.
sl@0
   433
	*/
sl@0
   434
	ETHeapBadCellAddress=42,
sl@0
   435
	
sl@0
   436
	
sl@0
   437
	/**
sl@0
   438
	In a call to the Adjust() and AdjustL() member functions of RHeap, a heap
sl@0
   439
	cell is being shrunk and the amount by which the cell is being shrunk
sl@0
   440
	is less than the current length of the cell.
sl@0
   441
	*/
sl@0
   442
	ETHeapAdjustTooSmall=43,
sl@0
   443
	
sl@0
   444
	
sl@0
   445
	/**
sl@0
   446
	In a call to the Free() and FreeZ() member functions of RHeap,the cell
sl@0
   447
	being freed overlaps the next cell on the free list (i.e. the first cell
sl@0
   448
	on the free list with an address higher than the one being freed).
sl@0
   449
	*/
sl@0
   450
	ETHeapFreeBadNextCell=44,
sl@0
   451
	
sl@0
   452
	
sl@0
   453
	/**
sl@0
   454
	In a call to the Free() and FreeZ() member functions of RHeap, the cell
sl@0
   455
	being freed overlaps the previous cell on the free list (i.e. the last cell
sl@0
   456
	on the free list with an address lower than the one being freed).
sl@0
   457
	*/
sl@0
   458
	ETHeapFreeBadPrevCell=45,
sl@0
   459
	
sl@0
   460
	
sl@0
   461
	/**
sl@0
   462
	In a call to the ReAlloc() and ReAllocL() member functions of RHeap, the
sl@0
   463
	cell being reallocated overlaps the next cell on the free list (i.e. the
sl@0
   464
	first cell on the free list with an address higher than the one being
sl@0
   465
	reallocated).
sl@0
   466
	*/
sl@0
   467
	ETHeapReAllocBadNextCell=46,
sl@0
   468
	
sl@0
   469
	
sl@0
   470
	/**
sl@0
   471
	In a call to the Alloc(), AllocL() or AllocLC() member functions of RHeap,
sl@0
   472
	an attempt has been made to allocate a cell from a heap, using an unsigned
sl@0
   473
	size value which is greater than or equal to the value of KMaxTInt/2.
sl@0
   474
sl@0
   475
    This panic may also be raised by the heap walker when it finds a bad
sl@0
   476
    allocated heap cell size.
sl@0
   477
    
sl@0
   478
    @see User::Check()
sl@0
   479
    @see RAllocator::Check()
sl@0
   480
    @see KMaxTInt
sl@0
   481
	*/
sl@0
   482
	ETHeapBadAllocatedCellSize=47,
sl@0
   483
	
sl@0
   484
	
sl@0
   485
	/**
sl@0
   486
	This panic is raised by the heap walker when it finds a bad
sl@0
   487
	allocated heap cell address.
sl@0
   488
	*/
sl@0
   489
	ETHeapBadAllocatedCellAddress=48,
sl@0
   490
	
sl@0
   491
	
sl@0
   492
	/**
sl@0
   493
	This panic is raised by the heap walker when it finds a bad
sl@0
   494
	free heap cell address.
sl@0
   495
	*/
sl@0
   496
	ETHeapBadFreeCellAddress=49,
sl@0
   497
	
sl@0
   498
	
sl@0
   499
	/**
sl@0
   500
	Not used.
sl@0
   501
	*/
sl@0
   502
	ETHeapDebugBufferOverflow=50,
sl@0
   503
	
sl@0
   504
	
sl@0
   505
	/**
sl@0
   506
	A call has been made to the __DbgMarkEnd() member function of RHeap, when
sl@0
   507
	there has been no corresponding call to the __DbgMarkStart() member function.
sl@0
   508
	
sl@0
   509
	This panic is also raised when there are more calls to __DbgMarkEnd() than
sl@0
   510
	to __DbgMarkStart(). These functions are part of the debug assistance provided by
sl@0
   511
	the RHeap class.
sl@0
   512
sl@0
   513
    This panic is raised in debug builds only.
sl@0
   514
	*/
sl@0
   515
	ETHeapDebugUnmatchedCallToCheckHeap=51,
sl@0
   516
	
sl@0
   517
	
sl@0
   518
	/**
sl@0
   519
	In a call to the Adjust() and AdjustL() member functions of an RHeap,
sl@0
   520
	the offset from the start of the cell being stretched or shrunk is
sl@0
   521
	a negative value.
sl@0
   522
	*/
sl@0
   523
	ETHeapAdjustOffsetNegative=52,
sl@0
   524
	
sl@0
   525
	
sl@0
   526
	/**
sl@0
   527
	Not used.
sl@0
   528
	*/
sl@0
   529
	ETHeapAllocSizeNegative=53,
sl@0
   530
	
sl@0
   531
	
sl@0
   532
	/**
sl@0
   533
	In a call to the ReAlloc() and ReAllocL() member functions of an RHeap,
sl@0
   534
	the new size for the cell being reallocated is a negative value.
sl@0
   535
	*/
sl@0
   536
	ETHeapReAllocSizeNegative=54,
sl@0
   537
	
sl@0
   538
	
sl@0
   539
	/**
sl@0
   540
	This panic is caused by the UserHeap::ChunkHeap() static function when
sl@0
   541
	the value defining the minimum length of the heap is negative.
sl@0
   542
	*/
sl@0
   543
	ETHeapMinLengthNegative=55,
sl@0
   544
	
sl@0
   545
	
sl@0
   546
	/**
sl@0
   547
	This panic is caused by the UserHeap::ChunkHeap() static function when
sl@0
   548
	the value defining the maximum length to which the heap can grow,
sl@0
   549
	is negative.
sl@0
   550
	*/
sl@0
   551
	ETHeapMaxLengthNegative=56,
sl@0
   552
	
sl@0
   553
	
sl@0
   554
	/**
sl@0
   555
	This panic is raised when closing a shared heap using the Close() member
sl@0
   556
	function of RHeap and the access count is zero or negative.
sl@0
   557
	
sl@0
   558
	A zero or negative access count suggests that an attempt is being made
sl@0
   559
	to close the heap too many times.
sl@0
   560
	*/
sl@0
   561
	EAllocatorClosedTooManyTimes=57,
sl@0
   562
	
sl@0
   563
	
sl@0
   564
	/**
sl@0
   565
	This panic is raised when opening a heap for shared access using the Open()
sl@0
   566
	member function of RHeap and the heap type is not EChunkNormal.
sl@0
   567
	*/
sl@0
   568
	ETHeapOnlyChunkHeaps=58,
sl@0
   569
	
sl@0
   570
	
sl@0
   571
	/**
sl@0
   572
	This panic is raised by the UnGet() member function of the 8-bit variant
sl@0
   573
	lexical analyzer, TLex8, if the character position is already at
sl@0
   574
	the start of the string.
sl@0
   575
sl@0
   576
    @see TLex8
sl@0
   577
	*/
sl@0
   578
	ETLex8UnGetUnderflow=59,
sl@0
   579
	
sl@0
   580
	
sl@0
   581
	/**
sl@0
   582
	This panic is raised by the Inc() member function of the 8-bit variant
sl@0
   583
	lexical analyzer, TLex8, if the resulting character position lies before
sl@0
   584
	the start of the string or after the end of the string.
sl@0
   585
sl@0
   586
    @see TLex8
sl@0
   587
	*/
sl@0
   588
	ETLex8IncOutOfRange=60,
sl@0
   589
	
sl@0
   590
	
sl@0
   591
	/**
sl@0
   592
	This panic is raised by the SkipAndMark() member function of the 8-bit
sl@0
   593
	variant lexical analyzer, TLex8, if the resulting character position lies
sl@0
   594
	before the start of the string, or after the end of the string.
sl@0
   595
sl@0
   596
    @see TLex8
sl@0
   597
	*/
sl@0
   598
	ETLex8SkipOutOfRange=61,
sl@0
   599
	
sl@0
   600
	
sl@0
   601
	/**
sl@0
   602
	Not used.
sl@0
   603
	*/
sl@0
   604
	ETLex8BadFormatList=62,
sl@0
   605
	
sl@0
   606
	
sl@0
   607
	/**
sl@0
   608
	This panic is raised by the ValidateMark() member function of the 8-bit
sl@0
   609
	variant lexical analyzer, TLex8, if the position of the extraction mark
sl@0
   610
	lies before the start of the string or after the end of the string.
sl@0
   611
sl@0
   612
    @see TLex8
sl@0
   613
	*/
sl@0
   614
	ETLex8MarkOutOfRange=63,
sl@0
   615
	
sl@0
   616
	
sl@0
   617
	/**
sl@0
   618
	This panic is raised by the UnGet() member function of the 16-bit variant
sl@0
   619
	lexical analyzer, TLex16, if the character position is already at the start
sl@0
   620
	of the string.
sl@0
   621
sl@0
   622
    @see TLex16
sl@0
   623
	*/
sl@0
   624
	ETLex16UnGetUnderflow=64,
sl@0
   625
	
sl@0
   626
	
sl@0
   627
	/**
sl@0
   628
	This panic is raised by the Inc() member function of the 16-bit variant
sl@0
   629
	lexical analyzer, TLex16, if the resulting character position lies before
sl@0
   630
	the start of the string or after the end of the string.
sl@0
   631
sl@0
   632
    @see TLex16
sl@0
   633
	*/
sl@0
   634
	ETLex16IncOutOfRange=65,
sl@0
   635
	
sl@0
   636
	
sl@0
   637
	/**
sl@0
   638
	This panic is raised by the SkipAndMark() member function of the 16-bit
sl@0
   639
	variant lexical analyzer, TLex16, if the resulting character position lies
sl@0
   640
	before the start of the string or after the end of the string.
sl@0
   641
sl@0
   642
    @see TLex16
sl@0
   643
	*/
sl@0
   644
	ETLex16SkipOutOfRange=66,
sl@0
   645
	
sl@0
   646
	
sl@0
   647
	/**
sl@0
   648
	Not used.
sl@0
   649
	*/
sl@0
   650
	ETLex16BadFormatList=67,
sl@0
   651
	
sl@0
   652
	
sl@0
   653
	/**
sl@0
   654
	This panic is raised by the ValidateMark() member function of the 16-bit
sl@0
   655
	variant lexical analyzer, TLex16, if the position of the extraction mark
sl@0
   656
	lies before the start of the string or after the end of the string.
sl@0
   657
sl@0
   658
    @see TLex16
sl@0
   659
	*/
sl@0
   660
	ETLex16MarkOutOfRange=68,
sl@0
   661
	
sl@0
   662
	
sl@0
   663
	/**
sl@0
   664
	This panic is raised by the TDateSuffix constructor or its Set() member
sl@0
   665
	function when the suffix index specified is negative or is greater than or
sl@0
   666
	equal to the value KMaxSuffixes.
sl@0
   667
	
sl@0
   668
	The index is used to access a locale dependent table of suffix characters,
sl@0
   669
	which can be appended to the dates of the month (e.g. the characters "st" 
sl@0
   670
	for 1st, "nd" for 2nd, "st" for 31st).
sl@0
   671
	
sl@0
   672
	@see TDateSuffix
sl@0
   673
	@see KMaxSuffixes
sl@0
   674
	*/
sl@0
   675
	ETLoclSuffixOutOfRange=69,
sl@0
   676
	
sl@0
   677
	
sl@0
   678
	/**
sl@0
   679
	This panic is raised when attempting to complete a client/server request
sl@0
   680
	and the RMessagePtr is null.
sl@0
   681
	*/
sl@0
   682
	ETMesCompletion=70,
sl@0
   683
	
sl@0
   684
	
sl@0
   685
	/**
sl@0
   686
	Not used.
sl@0
   687
	*/
sl@0
   688
	EMesBadRetryCount=71,
sl@0
   689
	
sl@0
   690
	
sl@0
   691
	/**
sl@0
   692
	This panic is raised by the Send() and SendReceive() member functions
sl@0
   693
	of RSessionBase, the client interface for communication with a server,
sl@0
   694
	when the specified operation code identifying the required service is
sl@0
   695
	either negative or a value greater than KMaxTint.
sl@0
   696
	
sl@0
   697
	@see RSessionBase
sl@0
   698
	@see KMaxTint
sl@0
   699
	*/
sl@0
   700
	ETMesBadFunctionNumber=72,
sl@0
   701
	
sl@0
   702
	
sl@0
   703
	/**
sl@0
   704
	This panic is raised by the Receive() member function of RServer,
sl@0
   705
	the handle to the server, when the attempt to receive a message
sl@0
   706
	for the server, synchronously, fails.
sl@0
   707
sl@0
   708
    @see RServer
sl@0
   709
	*/
sl@0
   710
	ETMesReceiveFailed=73,
sl@0
   711
	
sl@0
   712
	
sl@0
   713
	/**
sl@0
   714
	Not used.
sl@0
   715
	*/
sl@0
   716
	ESQueOffsetNegative=74,
sl@0
   717
	
sl@0
   718
	
sl@0
   719
	/**
sl@0
   720
	This panic is raised by the constructor of a singly linked list header,
sl@0
   721
	a TSglQue or by the SetOffset() member function when the specified offset
sl@0
   722
	is not 4 byte aligned, i.e. when it is not divisible by 4.
sl@0
   723
sl@0
   724
    @see TSglQue
sl@0
   725
	*/
sl@0
   726
	ESQueOffsetNotAligned=75,
sl@0
   727
	
sl@0
   728
	
sl@0
   729
	/**
sl@0
   730
	This panic is raised when attempting to remove an object from a singly
sl@0
   731
	linked list, using the Remove() member function of TSglQue, when
sl@0
   732
	that object is not in the list.
sl@0
   733
sl@0
   734
    @see TSglQue
sl@0
   735
	*/
sl@0
   736
	ESQueLinkNotQueued=76,
sl@0
   737
	
sl@0
   738
	
sl@0
   739
	/**
sl@0
   740
	Not used.
sl@0
   741
	*/
sl@0
   742
	ETQueOffsetNegative=77,
sl@0
   743
sl@0
   744
	
sl@0
   745
	/**
sl@0
   746
	This panic is raised by the constructor of a doubly linked list header,
sl@0
   747
	a TDblQue or by the SetOffset() member function, when the specified
sl@0
   748
	offset is not 4 byte aligned, i.e. when it is not divisible by 4.
sl@0
   749
sl@0
   750
    @see TDblQue
sl@0
   751
	*/
sl@0
   752
	ETQueOffsetNotAligned=78,
sl@0
   753
	
sl@0
   754
	
sl@0
   755
	/**
sl@0
   756
	This panic is raised by a call to either the First() or the Last() member
sl@0
   757
	functions of a doubly linked list, a TDblQue, which return pointers
sl@0
   758
	to the first and last element in the list respectively; the panic
sl@0
   759
	occurs when the list is empty.
sl@0
   760
sl@0
   761
    This panic is raised in debug builds only.
sl@0
   762
sl@0
   763
    @see TDblQue
sl@0
   764
	*/
sl@0
   765
	ETQueQueueEmpty=79,
sl@0
   766
	
sl@0
   767
	
sl@0
   768
	/**
sl@0
   769
    This panic is raised by the post increment operator, operator++, the post
sl@0
   770
    decrement operator, operator- and the return current element
sl@0
   771
    operator, operator T*, of the doubly linked list iterator, a TDblQueIter;
sl@0
   772
    the panic occurs when the element returned by these operators is not in
sl@0
   773
    the list.
sl@0
   774
    
sl@0
   775
    Typically, this is caused by the removal of the element from the list prior
sl@0
   776
    to calling these operators.
sl@0
   777
	
sl@0
   778
    This panic is raised in debug builds only.
sl@0
   779
    
sl@0
   780
    @see TDblQueIter
sl@0
   781
	*/
sl@0
   782
	ETQueLinkHasBeenRemoved=80,
sl@0
   783
	
sl@0
   784
	
sl@0
   785
	/**
sl@0
   786
	This panic is raised by the get rectangle operator, operator[], of
sl@0
   787
	a clipping region, derived from the abstract base class TRegion.
sl@0
   788
	
sl@0
   789
	The panic occurs when the index, which refers to the specific rectangle
sl@0
   790
	within the region, is greater than or equal to the number of rectangles
sl@0
   791
	contained within the region (as returned by the Count() member function).
sl@0
   792
sl@0
   793
    The index must be strictly less than the number of contained rectangles.
sl@0
   794
sl@0
   795
    @see TRegion
sl@0
   796
	*/
sl@0
   797
	ETRegionOutOfRange=81,
sl@0
   798
	
sl@0
   799
	
sl@0
   800
	/**
sl@0
   801
	This panic is raised when sorting the rectangles within a clipping region,
sl@0
   802
	derived from the abstract base class TRegion, using the Sort() member
sl@0
   803
	function of TRegion.
sl@0
   804
	
sl@0
   805
	The panic occurs when the region is invalid.
sl@0
   806
sl@0
   807
    This panic is raised in debug builds only.
sl@0
   808
sl@0
   809
    @see TRegion
sl@0
   810
	*/
sl@0
   811
	ETRegionInvalidRegionInSort=82,
sl@0
   812
	
sl@0
   813
	
sl@0
   814
	/**
sl@0
   815
	This panic occurs when the Kernel sends a message to the Kernel server
sl@0
   816
	and this completes with an error, i.e. an error code which is not KErrNone.
sl@0
   817
	*/
sl@0
   818
	ETUtlKernelServerSend=83,
sl@0
   819
	
sl@0
   820
	
sl@0
   821
	/**
sl@0
   822
	This panic is raised by the Panic() member function of RTest, the test class.
sl@0
   823
	*/
sl@0
   824
	ERTestFailed=84,
sl@0
   825
	
sl@0
   826
	
sl@0
   827
	/**
sl@0
   828
	This panic is raised by the CheckConsoleCreated() member functions of
sl@0
   829
	RTest and RTestJ, the test classes, when the creation of a console, 
sl@0
   830
	as derived from a CConsoleBase, fails.
sl@0
   831
	*/
sl@0
   832
	ERTestCreateConsole=85,
sl@0
   833
	
sl@0
   834
	
sl@0
   835
	/**
sl@0
   836
	This panic is raised by the static function User::After() when
sl@0
   837
	the specified time interval is negative.
sl@0
   838
	*/
sl@0
   839
	EExecAfterTimeNegative=86,
sl@0
   840
	
sl@0
   841
	
sl@0
   842
	/**
sl@0
   843
	This panic is raised when the time interval passed to the After() member
sl@0
   844
	function of RTimer is negative.
sl@0
   845
sl@0
   846
    @see RTimer
sl@0
   847
	*/
sl@0
   848
	ERTimerAfterTimeNegative=87,
sl@0
   849
	
sl@0
   850
	
sl@0
   851
	/**
sl@0
   852
	This panic is raised by Mem::Compare(), Mem::CompareC() and Mem::CompareF()
sl@0
   853
	when the length of the area of memory designated as the left hand area,
sl@0
   854
	is negative.
sl@0
   855
	
sl@0
   856
	This panic is raised in debug builds only.
sl@0
   857
sl@0
   858
	On the user side this is associated with the USER category; on the kernel side
sl@0
   859
	this is associated with the KERN-COMMON category.
sl@0
   860
sl@0
   861
	@see Mem
sl@0
   862
	*/
sl@0
   863
	EMemLeftNegative=88,
sl@0
   864
	
sl@0
   865
	
sl@0
   866
	/**
sl@0
   867
	This panic is raised by Mem::Compare(), Mem::CompareC() and Mem::CompareF()
sl@0
   868
	when the length of the area of memory designated as the right hand area,
sl@0
   869
	is negative.
sl@0
   870
	
sl@0
   871
	This panic is raised in debug builds only.
sl@0
   872
sl@0
   873
	On the user side this is associated with the USER category; on the kernel side
sl@0
   874
	this is associated with the KERN-COMMON category.
sl@0
   875
sl@0
   876
	@see Mem
sl@0
   877
	*/
sl@0
   878
	EMemRightNegative=89,
sl@0
   879
	
sl@0
   880
	
sl@0
   881
	/**
sl@0
   882
	This panic is raised by Mem::Copy() when the length of the area of memory
sl@0
   883
	to be copied is negative.
sl@0
   884
sl@0
   885
	This panic is raised in debug builds only.
sl@0
   886
sl@0
   887
	On the user side this is associated with the USER category; on the kernel side
sl@0
   888
	this is associated with the KERN-COMMON category.
sl@0
   889
sl@0
   890
	@see Mem
sl@0
   891
	*/
sl@0
   892
	EMemCopyLengthNegative=90,
sl@0
   893
	
sl@0
   894
	
sl@0
   895
	/**
sl@0
   896
	This panic is raised by Mem::Move() when the length of the area of memory
sl@0
   897
	to be moved is not a multiple of 4.
sl@0
   898
sl@0
   899
	This panic is raised in debug builds only.
sl@0
   900
sl@0
   901
	On the user side this is associated with the USER category; on the kernel side
sl@0
   902
	this is associated with the KERN-COMMON category.
sl@0
   903
sl@0
   904
	@see Mem
sl@0
   905
	*/
sl@0
   906
	EWordMoveLengthNotMultipleOf4=91,
sl@0
   907
	
sl@0
   908
	
sl@0
   909
	/**
sl@0
   910
	This panic is raised by Mem::Move() when the address of the source for
sl@0
   911
	the move operation is not aligned on a 4 byte boundary.
sl@0
   912
sl@0
   913
	This panic is raised in debug builds only.
sl@0
   914
sl@0
   915
	On the user side this is associated with the USER category; on the kernel side
sl@0
   916
	this is associated with the KERN-COMMON category.
sl@0
   917
sl@0
   918
	@see Mem
sl@0
   919
	*/
sl@0
   920
	EWordMoveSourceNotAligned=92,
sl@0
   921
	
sl@0
   922
	
sl@0
   923
	/**
sl@0
   924
	This panic is raised by Mem::Move() when the address of the target for
sl@0
   925
	the move operation is not aligned on a 4 byte boundary.
sl@0
   926
sl@0
   927
	This panic is raised in debug builds only.
sl@0
   928
sl@0
   929
	On the user side this is associated with the USER category; on the kernel side
sl@0
   930
	this is associated with the KERN-COMMON category.
sl@0
   931
sl@0
   932
	@see Mem
sl@0
   933
	*/
sl@0
   934
	EWordMoveTargetNotAligned=93,
sl@0
   935
	
sl@0
   936
	
sl@0
   937
	/**
sl@0
   938
	This panic is raised by Mem::Swap() when the length of the area of
sl@0
   939
	memory to be swapped is negative.
sl@0
   940
sl@0
   941
	This panic is raised in debug builds only.
sl@0
   942
sl@0
   943
	On the user side this is associated with the USER category; on the kernel side
sl@0
   944
	this is associated with the KERN-COMMON category.
sl@0
   945
sl@0
   946
	@see Mem
sl@0
   947
	*/
sl@0
   948
	EMemSwapLengthNegative=94,
sl@0
   949
	
sl@0
   950
	
sl@0
   951
	/**
sl@0
   952
	This panic is raised by Mem::Fill() and Mem::FillZ() when the length of
sl@0
   953
	the area of memory to be filled is negative.
sl@0
   954
sl@0
   955
	This panic is raised in debug builds only.
sl@0
   956
sl@0
   957
	On the user side this is associated with the USER category; on the kernel side
sl@0
   958
	this is associated with the KERN-COMMON category.
sl@0
   959
sl@0
   960
	@see Mem
sl@0
   961
	*/
sl@0
   962
	EMemFillLengthNegative=95,
sl@0
   963
	
sl@0
   964
	
sl@0
   965
	/**
sl@0
   966
	The value for the number of records to be sorted passed
sl@0
   967
	to User::QuickSort() is negative.
sl@0
   968
sl@0
   969
    @see User
sl@0
   970
	*/
sl@0
   971
	ESortCountNegative=96,
sl@0
   972
	
sl@0
   973
	
sl@0
   974
	/**
sl@0
   975
	The value for the number of records taking part in the search passed
sl@0
   976
	to User::BinarySearch() is negative.
sl@0
   977
	
sl@0
   978
	@see User
sl@0
   979
	*/
sl@0
   980
	EBinarySearchCountNegative=97,
sl@0
   981
	
sl@0
   982
	
sl@0
   983
	/**
sl@0
   984
	This panic is raised by the constructor of the base key class, TKey.
sl@0
   985
	
sl@0
   986
	It occurs when the offset value passed to the constructor is negative.
sl@0
   987
	As TKey is an abstract class, i.e. objects of type TKey are not intended
sl@0
   988
	to be explicitly constructed, look at the offset value passed to
sl@0
   989
	the constructors of derived classes such as TKeyArrayFix, TKeyArrayVar,
sl@0
   990
	and TKeyArrayPak for the cause of the panic.
sl@0
   991
sl@0
   992
    @see TKey
sl@0
   993
    @see TKeyArrayFix
sl@0
   994
    @see TKeyArrayVar
sl@0
   995
	@see TKeyArrayPak
sl@0
   996
	*/
sl@0
   997
	EKeyOffsetNegative=98,
sl@0
   998
	
sl@0
   999
	
sl@0
  1000
	/**
sl@0
  1001
	This panic is raised when a local or global chunk is created using
sl@0
  1002
	the RChunk member functions: CreateLocal(), CreateGlobal(),
sl@0
  1003
	CreateDoubleEndedLocal() and CreateDoubleEndedGlobal().
sl@0
  1004
	
sl@0
  1005
	It occurs when the value for the maximum size to which this chunk can
sl@0
  1006
	be adjusted, is negative.
sl@0
  1007
	
sl@0
  1008
	@see RChunk
sl@0
  1009
	*/
sl@0
  1010
	EChkCreateMaxSizeNegative=99,
sl@0
  1011
	
sl@0
  1012
	
sl@0
  1013
	/**
sl@0
  1014
	This panic is raised when a local or global chunk is created using
sl@0
  1015
	the RChunk member functions: CreateLocal() and CreateGlobal().
sl@0
  1016
	
sl@0
  1017
	It occurs when the value for the number of bytes to be committed to 
sl@0
  1018
	this chunk on creation, is negative.
sl@0
  1019
sl@0
  1020
	@see RChunk
sl@0
  1021
	*/
sl@0
  1022
	EChkCreateSizeNotPositive=100,
sl@0
  1023
	
sl@0
  1024
	
sl@0
  1025
	/**
sl@0
  1026
	This panic is raised when a local or global chunk is created using
sl@0
  1027
	the RChunk member functions: CreateLocal() and CreateGlobal().
sl@0
  1028
	
sl@0
  1029
	It occurs when the value for the number of bytes to be committed to
sl@0
  1030
	this chunk on creation is greater than the value for the maximum size
sl@0
  1031
	to which this chunk can be adjusted.
sl@0
  1032
sl@0
  1033
	@see RChunk
sl@0
  1034
	*/
sl@0
  1035
	EChkCreateMaxLessThanMin=101,
sl@0
  1036
	
sl@0
  1037
	
sl@0
  1038
	/**
sl@0
  1039
	This panic is raised when changing the number of bytes committed to a chunk
sl@0
  1040
	by calling the Adjust() member function of RChunk.
sl@0
  1041
	
sl@0
  1042
	The panic occurs when the value passed to the function is negative.
sl@0
  1043
	
sl@0
  1044
	@see RChunk
sl@0
  1045
	*/
sl@0
  1046
	EChkAdjustNewSizeNegative=102,
sl@0
  1047
	
sl@0
  1048
	
sl@0
  1049
	/**
sl@0
  1050
	Not used.
sl@0
  1051
	*/
sl@0
  1052
	ESesDelayTimeNegative=103,
sl@0
  1053
	
sl@0
  1054
	
sl@0
  1055
	/**
sl@0
  1056
	Not used.
sl@0
  1057
	*/
sl@0
  1058
	ESesRetryCountNegative=104,
sl@0
  1059
	
sl@0
  1060
	
sl@0
  1061
	/**
sl@0
  1062
	This panic is raised when a local or global semaphore is created using
sl@0
  1063
	the RSemaphore member functions: CreateLocal() and CreateGlobal(), and
sl@0
  1064
	the value for the initial semaphore count is negative.
sl@0
  1065
	
sl@0
  1066
	@see RSemaphore
sl@0
  1067
	*/
sl@0
  1068
	ESemCreateCountNegative=105,
sl@0
  1069
	
sl@0
  1070
	
sl@0
  1071
	/**
sl@0
  1072
	This panic is raised when a semaphore is signaled using
sl@0
  1073
	the Signal(TInt aCount) member function and the count value is negative.
sl@0
  1074
sl@0
  1075
    @see RSemaphore
sl@0
  1076
	*/
sl@0
  1077
	ESemSignalCountNegative=106,
sl@0
  1078
	
sl@0
  1079
	
sl@0
  1080
	/**
sl@0
  1081
	This panic is raised when a critical section is signalled using
sl@0
  1082
	the Signal() member function and the call to Signal() is not matched
sl@0
  1083
	by an earlier call to Wait(), which suggests that this is a stray signal.
sl@0
  1084
sl@0
  1085
    @see RCriticalSection
sl@0
  1086
	*/
sl@0
  1087
	ECriticalSectionStraySignal=107,
sl@0
  1088
	
sl@0
  1089
	
sl@0
  1090
	/**
sl@0
  1091
	Not used.
sl@0
  1092
	*/
sl@0
  1093
	EThrdHeapNotChunkType=108,
sl@0
  1094
	
sl@0
  1095
	
sl@0
  1096
	/**
sl@0
  1097
	This panic is raised when creating a thread using the Create() member
sl@0
  1098
	functions of RThread.
sl@0
  1099
	
sl@0
  1100
	The panic occurs when the value of the stack size passed to
sl@0
  1101
	these functions is negative.
sl@0
  1102
	
sl@0
  1103
    @see RThread
sl@0
  1104
	*/
sl@0
  1105
	EThrdStackSizeNegative=109,
sl@0
  1106
	
sl@0
  1107
	
sl@0
  1108
	/**
sl@0
  1109
	This panic is raised when creating a thread using the Create() member
sl@0
  1110
	functions of RThread.
sl@0
  1111
	
sl@0
  1112
	The panic is only raised by those variants of Create() that create a new
sl@0
  1113
	heap for the new thread. The panic occurs if the minimum heap size
sl@0
  1114
	specified is less than KMinHeapSize.
sl@0
  1115
sl@0
  1116
    @see RThread
sl@0
  1117
    @see KMinHeapSize
sl@0
  1118
	*/
sl@0
  1119
	EThrdHeapMinTooSmall=110,
sl@0
  1120
	
sl@0
  1121
	
sl@0
  1122
	/**
sl@0
  1123
	This panic is raised when creating a thread using the Create() member
sl@0
  1124
	functions of RThread.
sl@0
  1125
	
sl@0
  1126
	The panic is only raised by those variants of Create() which create a new
sl@0
  1127
	heap for the new thread. The panic occurs if the minimum heap size
sl@0
  1128
	specified is greater than the maximum size to which the heap can grow.
sl@0
  1129
	
sl@0
  1130
    @see RThread
sl@0
  1131
	*/
sl@0
  1132
	EThrdHeapMaxLessThanMin=111,
sl@0
  1133
	
sl@0
  1134
	
sl@0
  1135
	/**
sl@0
  1136
	This panic is raised by the Alloc() and AllocL() member functions of class
sl@0
  1137
	RRef when the size value passed is negative.
sl@0
  1138
	*/
sl@0
  1139
	ERefAllocSizeNegative=112,
sl@0
  1140
	
sl@0
  1141
	
sl@0
  1142
	/**
sl@0
  1143
	This panic is raised by:
sl@0
  1144
sl@0
  1145
    1. the constructor of a time representation object, a TTime, which takes
sl@0
  1146
       a text string, when the format of that text string is incorrect
sl@0
  1147
       or represents an invalid date/time.
sl@0
  1148
       
sl@0
  1149
    2. the Parse() member function of a time representation object, a TTime,
sl@0
  1150
       if the century offset value is either negative or is greater than
sl@0
  1151
       or equal to 100.
sl@0
  1152
       
sl@0
  1153
    3. the Time::DaysInMonth() function, if an invalid month value is passed.
sl@0
  1154
sl@0
  1155
    @see TTime
sl@0
  1156
    @see Time
sl@0
  1157
	*/
sl@0
  1158
	ETTimeValueOutOfRange=113,
sl@0
  1159
	
sl@0
  1160
	
sl@0
  1161
	/**
sl@0
  1162
    This panic is raised by member functions of TBusLocalDrive when no
sl@0
  1163
    connection has been made to a local drive.
sl@0
  1164
    
sl@0
  1165
	This panic is raised in debug builds only.
sl@0
  1166
	
sl@0
  1167
	@see TBusLocalDrive
sl@0
  1168
	*/
sl@0
  1169
	EDriveNotConnected=114,
sl@0
  1170
	
sl@0
  1171
	
sl@0
  1172
	/**
sl@0
  1173
	This panic is raised when attempting to connect to a local drive
sl@0
  1174
	using the Connect() member function of TBusLocalDrive, and
sl@0
  1175
	the specified drive number is out of range, i.e. the drive number
sl@0
  1176
	is negative or is greater than or equal to KMaxLocalDrives.
sl@0
  1177
	
sl@0
  1178
	@see TBusLocalDrive
sl@0
  1179
	@see KMaxLocalDrives
sl@0
  1180
	*/
sl@0
  1181
	EDriveOutOfRange=115,
sl@0
  1182
	
sl@0
  1183
	
sl@0
  1184
	/**
sl@0
  1185
	This panic is raised by the Lookup() member function of RLibrary when
sl@0
  1186
	the ordinal number of the required DLL function, is zero or negative.
sl@0
  1187
    
sl@0
  1188
    @see RLibrary
sl@0
  1189
	*/
sl@0
  1190
	EBadLookupOrdinal=116,
sl@0
  1191
	
sl@0
  1192
	
sl@0
  1193
	/**
sl@0
  1194
	Not used.
sl@0
  1195
	*/
sl@0
  1196
	EChunkHeapBadOffset=117,
sl@0
  1197
	
sl@0
  1198
	
sl@0
  1199
	/**
sl@0
  1200
	Not used.
sl@0
  1201
	*/
sl@0
  1202
	ETQueLinkAlreadyInUse=118,
sl@0
  1203
	
sl@0
  1204
	
sl@0
  1205
	/**
sl@0
  1206
	This panic is raised when setting a new currency symbol using
sl@0
  1207
	the User::SetCurrencySymbol() function.
sl@0
  1208
	
sl@0
  1209
	The panic occurs when the length of the descriptor containing
sl@0
  1210
	the new symbol is greater than KMaxCurrencySymbol.
sl@0
  1211
 	
sl@0
  1212
 	@see User
sl@0
  1213
 	@see KMaxCurrencySymbol
sl@0
  1214
	*/
sl@0
  1215
	ECurrencySymbolOverflow=119,
sl@0
  1216
	
sl@0
  1217
	
sl@0
  1218
	/**
sl@0
  1219
	This panic is raised by the CreateDoubleEndedLocal()
sl@0
  1220
	and CreateDoubleEndedGlobal() member functions of RChunk when the lower
sl@0
  1221
	address of the committed region is negative.
sl@0
  1222
	
sl@0
  1223
	@see RChunk
sl@0
  1224
	*/
sl@0
  1225
	EChkCreateBottomNegative=120,
sl@0
  1226
	
sl@0
  1227
	
sl@0
  1228
	/**
sl@0
  1229
	This panic is raised by the CreateDoubleEndedLocal()
sl@0
  1230
	and CreateDoubleEndedGlobal() member functions of RChunk when the upper
sl@0
  1231
	address of the committed region is negative.
sl@0
  1232
	
sl@0
  1233
	@see RChunk
sl@0
  1234
	*/
sl@0
  1235
	EChkCreateTopNegative=121,
sl@0
  1236
	
sl@0
  1237
	
sl@0
  1238
	/**
sl@0
  1239
	This panic is raised by the CreateDoubleEndedLocal()
sl@0
  1240
	and CreateDoubleEndedGlobal() member functions of RChunk when the upper
sl@0
  1241
	address of the committed region is lower than the lower address of
sl@0
  1242
	the committed region.
sl@0
  1243
sl@0
  1244
	@see RChunk
sl@0
  1245
	*/
sl@0
  1246
	EChkCreateTopLessThanBottom=122,
sl@0
  1247
	
sl@0
  1248
	
sl@0
  1249
	/**
sl@0
  1250
	This panic is raised by the CreateDoubleEndedLocal()
sl@0
  1251
	and CreateDoubleEndedGlobal() member functions of RChunk when the upper
sl@0
  1252
	address of the committed region is lower than the maximum size to which
sl@0
  1253
	this chunk can be adjusted.
sl@0
  1254
sl@0
  1255
	@see RChunk
sl@0
  1256
	*/
sl@0
  1257
	EChkCreateTopBiggerThanMax=123,
sl@0
  1258
	
sl@0
  1259
	
sl@0
  1260
	/**
sl@0
  1261
	This panic is raised by RChunk::AdjustDoubleEnded() when the lower address
sl@0
  1262
	of the committed region is negative.
sl@0
  1263
	
sl@0
  1264
    @see RChunk
sl@0
  1265
	*/
sl@0
  1266
	EChkAdjustBottomNegative=124,
sl@0
  1267
	
sl@0
  1268
	
sl@0
  1269
	/**
sl@0
  1270
	This panic is raised by RChunk::AdjustDoubleEnded() when the upper address
sl@0
  1271
	of the committed region is negative.
sl@0
  1272
	
sl@0
  1273
    @see RChunk
sl@0
  1274
	*/
sl@0
  1275
	EChkAdjustTopNegative=125,
sl@0
  1276
	
sl@0
  1277
	
sl@0
  1278
	/**
sl@0
  1279
	This panic is raised by RChunk::AdjustDoubleEnded() when the upper address
sl@0
  1280
	of the committed region is lower than the lower address of the committed
sl@0
  1281
	region.
sl@0
  1282
	
sl@0
  1283
    @see RChunk
sl@0
  1284
	*/
sl@0
  1285
	EChkAdjustTopLessThanBottom=126,
sl@0
  1286
	
sl@0
  1287
	
sl@0
  1288
	/**
sl@0
  1289
	This panic is raised when constructing an array of pointers,
sl@0
  1290
	an RPointerArray, and specifying a granularity value which is
sl@0
  1291
	one of the following:
sl@0
  1292
sl@0
  1293
    1. zero
sl@0
  1294
sl@0
  1295
    2. negative
sl@0
  1296
sl@0
  1297
    3. greater than 0x10000000.
sl@0
  1298
    
sl@0
  1299
    @see RPointerArray
sl@0
  1300
	*/
sl@0
  1301
	EBadArrayGranularity=127,
sl@0
  1302
	
sl@0
  1303
	
sl@0
  1304
	/**
sl@0
  1305
	This panic is raised when constructing an array of fixed length objects,
sl@0
  1306
	an RArray, and specifying a key offset value which is one of the following:
sl@0
  1307
sl@0
  1308
    1. negative
sl@0
  1309
sl@0
  1310
    2. not a multiple of 4
sl@0
  1311
sl@0
  1312
    3. greater than or equal to the size of the array elements.
sl@0
  1313
    
sl@0
  1314
    @see RArray
sl@0
  1315
	*/
sl@0
  1316
	EBadArrayKeyOffset=128,
sl@0
  1317
	
sl@0
  1318
	
sl@0
  1319
	/**
sl@0
  1320
	This panic is raised when constructing an array of fixed length objects,
sl@0
  1321
	an RArray, and the length of the array elements is one of the following:
sl@0
  1322
sl@0
  1323
    1. zero
sl@0
  1324
sl@0
  1325
    2. negative
sl@0
  1326
sl@0
  1327
    3. greater than 640.
sl@0
  1328
    
sl@0
  1329
    @see RArray
sl@0
  1330
	*/
sl@0
  1331
	EBadArrayEntrySize=129,
sl@0
  1332
	
sl@0
  1333
	
sl@0
  1334
	/**
sl@0
  1335
	This panic is raised when an index value passed to a member function
sl@0
  1336
	of RArray or RPointerArray identifying an array element, is out of bounds.
sl@0
  1337
sl@0
  1338
    @see RArray
sl@0
  1339
    @see RPointerArray
sl@0
  1340
	*/
sl@0
  1341
	EBadArrayIndex=130,
sl@0
  1342
	
sl@0
  1343
	
sl@0
  1344
	/**
sl@0
  1345
	This panic is raised when the value identifying the insertion position
sl@0
  1346
	in a call to RArray::Insert() or RPointerArray::Insert(), is either
sl@0
  1347
	negative or greater than the number of elements in the array.
sl@0
  1348
sl@0
  1349
    @see RArray
sl@0
  1350
    @see RPointerArray
sl@0
  1351
	*/
sl@0
  1352
	EBadArrayPosition=131,
sl@0
  1353
	
sl@0
  1354
	
sl@0
  1355
	/**
sl@0
  1356
	This panic is raised when an index value passed to
sl@0
  1357
	Mem::CollationMethodByIndex() or Mem::CollationMethodId() is out of bounds.
sl@0
  1358
sl@0
  1359
    @see Mem
sl@0
  1360
	*/
sl@0
  1361
	EBadCollationRulesIndex=132,
sl@0
  1362
	
sl@0
  1363
	
sl@0
  1364
	/**
sl@0
  1365
	This panic is raised when an index value passed to TFixedArray::At()
sl@0
  1366
    or TFixedArray::operator[] is out of bounds.
sl@0
  1367
sl@0
  1368
    @see TFixedArray
sl@0
  1369
	*/
sl@0
  1370
	EBadFixedArrayIndex=133,
sl@0
  1371
	
sl@0
  1372
	
sl@0
  1373
	/**
sl@0
  1374
	Not used.
sl@0
  1375
	*/
sl@0
  1376
	ERawEventFlipTypeNotImplemented=134,
sl@0
  1377
	
sl@0
  1378
	
sl@0
  1379
	/**
sl@0
  1380
	Not used.
sl@0
  1381
	*/
sl@0
  1382
	ENumberOfParametersExceedsMaximum=136,
sl@0
  1383
	
sl@0
  1384
	
sl@0
  1385
	/**
sl@0
  1386
	This panic is raised internally by the descriptor formatting functions during the handling
sl@0
  1387
	of the variable parameter lists when the parameter is too big.
sl@0
  1388
	*/
sl@0
  1389
	ESizeOfParameterTooBig=137,
sl@0
  1390
	
sl@0
  1391
	
sl@0
  1392
	/**
sl@0
  1393
	This panic is raised internally by the descriptor formatting functions
sl@0
  1394
	during the handling of the variable parameter lists when an index value
sl@0
  1395
	for the parameters is outside its permitted range.
sl@0
  1396
	*/
sl@0
  1397
	EParameterIndexOutOfRange1=138,
sl@0
  1398
	
sl@0
  1399
	
sl@0
  1400
	/**
sl@0
  1401
	This panic is raised internally by the descriptor formatting functions
sl@0
  1402
	during the handling of the variable parameter lists when an index value
sl@0
  1403
	for the parameters is outside its permitted range.
sl@0
  1404
	
sl@0
  1405
	This panic is raised in debug mode only.
sl@0
  1406
	*/
sl@0
  1407
	EParameterIndexOutOfRange2=139,
sl@0
  1408
	
sl@0
  1409
	
sl@0
  1410
	/**
sl@0
  1411
	This panic is raised internally by the descriptor formatting functions
sl@0
  1412
	during the handling of the variable parameter lists.
sl@0
  1413
	*/
sl@0
  1414
	EFormatDirectiveAlreadySet1=140,
sl@0
  1415
	
sl@0
  1416
	
sl@0
  1417
	/**
sl@0
  1418
	This panic is raised internally by the descriptor formatting functions
sl@0
  1419
	during the handling of the variable parameter lists.
sl@0
  1420
	*/
sl@0
  1421
	EFormatDirectiveAlreadySet2=141,
sl@0
  1422
	
sl@0
  1423
	
sl@0
  1424
	/**
sl@0
  1425
	This panic is raised internally by the descriptor formatting functions
sl@0
  1426
	during the handling of the variable parameter lists.
sl@0
  1427
	*/
sl@0
  1428
	ENumberOfFormatDirectivesExceedsMaximum=142,
sl@0
  1429
	
sl@0
  1430
	
sl@0
  1431
	/**
sl@0
  1432
	This panic is raised internally by the descriptor formatting functions
sl@0
  1433
	during the handling of the variable parameter lists.
sl@0
  1434
	*/
sl@0
  1435
	ENoParametersInFormatDirective=143,
sl@0
  1436
	
sl@0
  1437
	
sl@0
  1438
	/**
sl@0
  1439
	This panic is raised internally by the descriptor formatting functions
sl@0
  1440
	during the handling of the variable parameter lists.
sl@0
  1441
	*/
sl@0
  1442
	EFormatDirectiveNotYetSet=144,
sl@0
  1443
	
sl@0
  1444
	
sl@0
  1445
	/**
sl@0
  1446
	This panic is raised internally by the descriptor formatting functions
sl@0
  1447
	during the handling of the variable parameter lists.
sl@0
  1448
	*/
sl@0
  1449
	EBadFormatDirectiveDataPointer=145,
sl@0
  1450
	
sl@0
  1451
	
sl@0
  1452
	/**
sl@0
  1453
	This panic is raised internally by the descriptor formatting functions
sl@0
  1454
	during the handling of the variable parameter lists.
sl@0
  1455
	*/
sl@0
  1456
	EFormatDirectiveIndexOutOfRange=146,
sl@0
  1457
	
sl@0
  1458
	
sl@0
  1459
	/**
sl@0
  1460
	This panic is raised internally by the descriptor formatting functions
sl@0
  1461
	during the handling of the variable parameter lists.
sl@0
  1462
	*/
sl@0
  1463
	ENotOnFirstPassOfFormatDescriptor1=147,
sl@0
  1464
	
sl@0
  1465
	
sl@0
  1466
	/**
sl@0
  1467
	This panic is raised internally by the descriptor formatting functions
sl@0
  1468
	during the handling of the variable parameter lists.
sl@0
  1469
	*/
sl@0
  1470
	ENotOnFirstPassOfFormatDescriptor2=148,
sl@0
  1471
	
sl@0
  1472
	
sl@0
  1473
	/**
sl@0
  1474
	This panic is raised internally by the descriptor formatting functions
sl@0
  1475
	during the handling of the variable parameter lists.
sl@0
  1476
	*/
sl@0
  1477
	EInconsistentSizeOfParameter=149,
sl@0
  1478
	
sl@0
  1479
	
sl@0
  1480
	/**
sl@0
  1481
	This panic is raised internally by the descriptor formatting functions
sl@0
  1482
	during the handling of the variable parameter lists.
sl@0
  1483
	*/
sl@0
  1484
	ENullTargetPointer=150,
sl@0
  1485
	
sl@0
  1486
	
sl@0
  1487
	/**
sl@0
  1488
	This panic is raised internally by the descriptor formatting functions
sl@0
  1489
	during the handling of the variable parameter lists.
sl@0
  1490
	*/
sl@0
  1491
	ENegativeSizeOfParameter=151,
sl@0
  1492
	
sl@0
  1493
	
sl@0
  1494
	/**
sl@0
  1495
	This panic is raised internally by the descriptor formatting functions
sl@0
  1496
	during the handling of the variable parameter lists.
sl@0
  1497
	*/
sl@0
  1498
	EErrorOnSecondPassOfFormatDescriptor=152,
sl@0
  1499
	
sl@0
  1500
	
sl@0
  1501
	/**
sl@0
  1502
	This panic is raised internally by the descriptor formatting functions
sl@0
  1503
	during the handling of the variable parameter lists.
sl@0
  1504
	*/
sl@0
  1505
	EUnexpectedError1=153,
sl@0
  1506
	
sl@0
  1507
	
sl@0
  1508
	/**
sl@0
  1509
	This panic is raised internally by the descriptor formatting functions
sl@0
  1510
	during the handling of the variable parameter lists.
sl@0
  1511
	*/
sl@0
  1512
	EUnexpectedError2=154,
sl@0
  1513
	
sl@0
  1514
	
sl@0
  1515
	/**
sl@0
  1516
	Not used.
sl@0
  1517
	*/
sl@0
  1518
	ECreateTransferBufferSizeNotPositive=155,
sl@0
  1519
	
sl@0
  1520
	
sl@0
  1521
	/**
sl@0
  1522
	This panic occurs in the construction of an RPointerArray object from
sl@0
  1523
	an existing pointer array object, when the number defining the number
sl@0
  1524
	of entries in the existing array is not positive.
sl@0
  1525
	
sl@0
  1526
	@see RPointerArray
sl@0
  1527
	*/
sl@0
  1528
	EBadArrayCount=156,
sl@0
  1529
	
sl@0
  1530
	
sl@0
  1531
	/**
sl@0
  1532
	This panic is raised by RChunk::Commit() when the value of the offset of
sl@0
  1533
	the committed region is negative.
sl@0
  1534
	
sl@0
  1535
	@see RChunk
sl@0
  1536
	*/
sl@0
  1537
	EChkCommitOffsetNegative=157,
sl@0
  1538
	
sl@0
  1539
	
sl@0
  1540
	/**
sl@0
  1541
	This panic is raised by RChunk::Commit() when the size of the
sl@0
  1542
	the committed region is negative.
sl@0
  1543
	
sl@0
  1544
	@see RChunk
sl@0
  1545
	*/
sl@0
  1546
	EChkCommitSizeNegative=158,
sl@0
  1547
	
sl@0
  1548
	
sl@0
  1549
	/**
sl@0
  1550
	This panic is raised by RChunk::Allocate() when the size of the
sl@0
  1551
	the committed region is negative.
sl@0
  1552
	
sl@0
  1553
	@see RChunk
sl@0
  1554
	*/
sl@0
  1555
	EChkAllocateSizeNegative=159,
sl@0
  1556
	
sl@0
  1557
	
sl@0
  1558
	/**
sl@0
  1559
	This panic is raised by RChunk::Decommit() when the value of the offset of
sl@0
  1560
	the committed region is negative.
sl@0
  1561
	
sl@0
  1562
	@see RChunk
sl@0
  1563
	*/
sl@0
  1564
	EChkDecommitOffsetNegative=160,
sl@0
  1565
	
sl@0
  1566
	
sl@0
  1567
	/**
sl@0
  1568
	This panic is raised by RChunk::Decommit() when the size of the
sl@0
  1569
	the committed region is negative.
sl@0
  1570
	
sl@0
  1571
	@see RChunk
sl@0
  1572
	*/
sl@0
  1573
	EChkDecommitSizeNegative=161,
sl@0
  1574
	
sl@0
  1575
	
sl@0
  1576
	/**
sl@0
  1577
	This panic is raised when an invalid chunk type has been passed to
sl@0
  1578
	the internal member RChunk::Create()
sl@0
  1579
	
sl@0
  1580
	@see RChunk
sl@0
  1581
	*/
sl@0
  1582
	EChkCreateInvalidType=162,
sl@0
  1583
	
sl@0
  1584
	
sl@0
  1585
	/**
sl@0
  1586
	This panic is raised when a global chunk is being created and
sl@0
  1587
	no name has been specified.
sl@0
  1588
	
sl@0
  1589
	@see RChunk
sl@0
  1590
	*/
sl@0
  1591
	EChkCreateInvalidName=163,
sl@0
  1592
	
sl@0
  1593
	
sl@0
  1594
	/**
sl@0
  1595
	This panic is raised when creating a 'normal' chunk and the offset of the bottom of the new committed region 
sl@0
  1596
    from the base of the chunk's reserved region is not zero.
sl@0
  1597
sl@0
  1598
    @see RChunk
sl@0
  1599
	*/
sl@0
  1600
	EChkCreateInvalidBottom=164,
sl@0
  1601
	
sl@0
  1602
	
sl@0
  1603
	/**
sl@0
  1604
	This panic is raised by the internal function RLibrary::Init() when the function that 
sl@0
  1605
	constructs static data following a DLL load, leaves.
sl@0
  1606
	*/
sl@0
  1607
	EDllStaticConstructorLeave=165,
sl@0
  1608
	
sl@0
  1609
	
sl@0
  1610
	/**
sl@0
  1611
	This panic is raised internally, if a call to the static data destructors
sl@0
  1612
	following a library handle close, leaves.
sl@0
  1613
	*/
sl@0
  1614
	EDllStaticDestructorLeave=166,
sl@0
  1615
	
sl@0
  1616
	
sl@0
  1617
	/**
sl@0
  1618
	This panic is raised in a call to RAllocator::Close() when the number of
sl@0
  1619
	handles is greater than	the maximum allowed, RAllocator::EMaxHandles.
sl@0
  1620
	
sl@0
  1621
	@see RAllocator
sl@0
  1622
	*/
sl@0
  1623
	EAllocatorBadHandleCount=167,
sl@0
  1624
	
sl@0
  1625
	
sl@0
  1626
	/**
sl@0
  1627
	This panic is raised by the internal RHeap constructor when the offset value is invalid.
sl@0
  1628
	*/
sl@0
  1629
	ETHeapNewBadOffset=168,
sl@0
  1630
	
sl@0
  1631
	
sl@0
  1632
	/**
sl@0
  1633
	This panic is raised by the Symbian internal function RHeap::Reduce() on failure.
sl@0
  1634
	*/
sl@0
  1635
	ETHeapReduceFailed=169,
sl@0
  1636
	
sl@0
  1637
	
sl@0
  1638
	/**
sl@0
  1639
	This panic is raised by the Symbian internal function RHeap::Reset() on failure.
sl@0
  1640
	*/
sl@0
  1641
	ETHeapResetFailed=170,
sl@0
  1642
	
sl@0
  1643
	
sl@0
  1644
	/**
sl@0
  1645
    This panic is raised by the Symbian internal function RHeap::WalkCheckCell() on a 
sl@0
  1646
    bad free cell size.
sl@0
  1647
	*/
sl@0
  1648
	ETHeapBadFreeCellSize=171,
sl@0
  1649
	
sl@0
  1650
	
sl@0
  1651
	/**
sl@0
  1652
    This panic is raised by the Symbian internal function RHeap::Initialise() on a
sl@0
  1653
    bad alignment value.
sl@0
  1654
	*/
sl@0
  1655
	ETHeapNewBadAlignment=172,
sl@0
  1656
	
sl@0
  1657
	
sl@0
  1658
	/**
sl@0
  1659
	Not used.
sl@0
  1660
	*/
sl@0
  1661
	ETHeapBadDebugOp=173,
sl@0
  1662
	
sl@0
  1663
	
sl@0
  1664
	/**
sl@0
  1665
	This panic is raised when an unimplemented pure virtual function is called.
sl@0
  1666
	*/
sl@0
  1667
	EPureVirtualCalled=174,
sl@0
  1668
	
sl@0
  1669
	
sl@0
  1670
	/**
sl@0
  1671
	This panic is raised when a User::Leave() is called and there
sl@0
  1672
	is no TRAP frame.
sl@0
  1673
	*/
sl@0
  1674
	EUserLeaveWithoutTrap=175,
sl@0
  1675
	
sl@0
  1676
	
sl@0
  1677
	/**
sl@0
  1678
	This panic is raised when a mathematical function fails with an
sl@0
  1679
	unrecognized exception, i.e. one that is none of: KErrArgument,
sl@0
  1680
	KErrDivideByZero, KErrOverflow or KErrUnderflow.
sl@0
  1681
	*/
sl@0
  1682
	EMathUnknownError=176,
sl@0
  1683
	
sl@0
  1684
	
sl@0
  1685
	/**
sl@0
  1686
	This panic is raised by the Symbian internal function RHeap::WalkCheckCell() on a 
sl@0
  1687
    bad cell type.
sl@0
  1688
	*/
sl@0
  1689
	ETHeapWalkBadCellType=177,
sl@0
  1690
	
sl@0
  1691
	
sl@0
  1692
	/**
sl@0
  1693
	This panic is raised when descriptors convert integers into text, and
sl@0
  1694
	an invalid radix is passed, i.e. a value that is not one 
sl@0
  1695
	of the TRadix enum values.
sl@0
  1696
	*/
sl@0
  1697
	EInvalidRadix=178,
sl@0
  1698
	
sl@0
  1699
	
sl@0
  1700
	/**
sl@0
  1701
	This panic is raised when converting and appending numbers in descriptors,
sl@0
  1702
	and buffers are not aligned on even addresses.
sl@0
  1703
	
sl@0
  1704
    This panic is raised in debug builds only.	
sl@0
  1705
	*/
sl@0
  1706
	EDes16PadAppendBadAlign=179,
sl@0
  1707
	
sl@0
  1708
	
sl@0
  1709
	/**
sl@0
  1710
	Not used.
sl@0
  1711
	*/
sl@0
  1712
	EMsgQueueSizeInvalid=180,
sl@0
  1713
	
sl@0
  1714
	
sl@0
  1715
    /**
sl@0
  1716
	@internalComponent
sl@0
  1717
	*/
sl@0
  1718
	EHuffmanTooManyCodes=181,
sl@0
  1719
	
sl@0
  1720
	
sl@0
  1721
	/**
sl@0
  1722
	@internalComponent
sl@0
  1723
	*/
sl@0
  1724
	EHuffmanInvalidCoding=182,
sl@0
  1725
	
sl@0
  1726
	
sl@0
  1727
	/**
sl@0
  1728
	@internalComponent
sl@0
  1729
	*/
sl@0
  1730
	EBadArrayFindMode=183,
sl@0
  1731
	
sl@0
  1732
	
sl@0
  1733
	/**
sl@0
  1734
	In a call to RNotifier::Notify(), the length of one or more of
sl@0
  1735
	the descriptors containing the displayable text is bigger than
sl@0
  1736
	the maximum TUint16 value.
sl@0
  1737
	*/
sl@0
  1738
	ENotifierTextTooLong=184,
sl@0
  1739
	
sl@0
  1740
	
sl@0
  1741
	/**
sl@0
  1742
	In a call to one of the functions:
sl@0
  1743
	TMonthName::Set()
sl@0
  1744
	TMonthNameAbb::Set()
sl@0
  1745
	TDayName::Set()
sl@0
  1746
	TDayNameAbb::Set()
sl@0
  1747
	
sl@0
  1748
	the month or day value is outside the permitted range of values.
sl@0
  1749
sl@0
  1750
    @see TMonthName
sl@0
  1751
    @see TMonthNameAbb
sl@0
  1752
    @see TDayName
sl@0
  1753
    @see TDayNameAbb
sl@0
  1754
	*/
sl@0
  1755
	EBadLocaleParameter=185,
sl@0
  1756
	
sl@0
  1757
	
sl@0
  1758
	/**
sl@0
  1759
	This panic is raised internally by the descriptor formatting functions
sl@0
  1760
	during the handling of the variable parameter lists.
sl@0
  1761
	*/
sl@0
  1762
	EUnexpectedError3=186,
sl@0
  1763
	
sl@0
  1764
	
sl@0
  1765
	/**
sl@0
  1766
	In a call to TDes8::Expand(), either the length, or the maximum length,
sl@0
  1767
	or the pointer to the data is not an even number.
sl@0
  1768
	
sl@0
  1769
	@see TDes8
sl@0
  1770
	*/
sl@0
  1771
	EDes8ExpandOdd=187,
sl@0
  1772
	
sl@0
  1773
	
sl@0
  1774
	/**
sl@0
  1775
	In a call to TDes8::Collapse(), either the length, or the maximum length,
sl@0
  1776
	or the pointer to the data is not an even number.
sl@0
  1777
	
sl@0
  1778
	@see TDes8
sl@0
  1779
	*/
sl@0
  1780
	EDes8CollapseOdd=188,
sl@0
  1781
sl@0
  1782
sl@0
  1783
	/**
sl@0
  1784
	In a call to one of the TSecurityPolicy constructors, the specified
sl@0
  1785
	capability was found to be inavlid.
sl@0
  1786
sl@0
  1787
	@see TCapability
sl@0
  1788
	*/
sl@0
  1789
	ECapabilityInvalid=189,
sl@0
  1790
sl@0
  1791
sl@0
  1792
	/**
sl@0
  1793
	In a call to TSecurityPolicy::CheckPolicy, the security policy was found to
sl@0
  1794
	be corrupt.
sl@0
  1795
sl@0
  1796
	@see TSecurityPolicy
sl@0
  1797
	*/
sl@0
  1798
	ESecurityPolicyCorrupt=190,
sl@0
  1799
sl@0
  1800
	
sl@0
  1801
	/**
sl@0
  1802
	In a call to TSecurityPolicy::TSecurityPolicy(TSecPolicyType aType), aType
sl@0
  1803
	was not one of ETypePass or ETypeFail.
sl@0
  1804
sl@0
  1805
	@see TSecurityPolicy
sl@0
  1806
	*/
sl@0
  1807
	ETSecPolicyTypeInvalid=191,
sl@0
  1808
sl@0
  1809
	/**
sl@0
  1810
	This panic is raised when constructing an RPointerArray or RArray if the
sl@0
  1811
	specified minimum growth step is less than or equal to zero or is greater
sl@0
  1812
	than 65535.
sl@0
  1813
    
sl@0
  1814
    @see RPointerArray
sl@0
  1815
    @see RArray
sl@0
  1816
	*/
sl@0
  1817
	EBadArrayMinGrowBy=192,
sl@0
  1818
	
sl@0
  1819
	
sl@0
  1820
	/**
sl@0
  1821
	This panic is raised when constructing an RPointerArray or RArray if the
sl@0
  1822
	specified exponential growth factor is less than or equal to 1 or is
sl@0
  1823
	greater than or equal to 128.
sl@0
  1824
    
sl@0
  1825
    @see RPointerArray
sl@0
  1826
    @see RArray
sl@0
  1827
	*/
sl@0
  1828
	EBadArrayFactor=193,
sl@0
  1829
	
sl@0
  1830
	
sl@0
  1831
	/**
sl@0
  1832
	This panic is raised if code inside an __ASSERT_*_NO_LEAVE harness leaves.
sl@0
  1833
    
sl@0
  1834
    @see RPointerArray
sl@0
  1835
    @see RArray
sl@0
  1836
	*/
sl@0
  1837
	EUnexpectedLeave=194,
sl@0
  1838
	
sl@0
  1839
	
sl@0
  1840
	/**
sl@0
  1841
	A function was used to grow a cell on the heap, but it did not grow as expected.
sl@0
  1842
	*/		
sl@0
  1843
	ETHeapCellDidntGrow=195,
sl@0
  1844
	
sl@0
  1845
	
sl@0
  1846
	/**
sl@0
  1847
	An attempt was made to install a Win32 SE handler not on the stack.
sl@0
  1848
sl@0
  1849
	@see TWin32SEHTrap
sl@0
  1850
	*/
sl@0
  1851
	EWin32SEHandlerNotOnStack=196,
sl@0
  1852
	
sl@0
  1853
	/**
sl@0
  1854
	This panic is raised when the caller of an API doesn't have the right capabilities to
sl@0
  1855
	call the specific API that raises this panic. Please consult the documentation for the
sl@0
  1856
	API in question to learn what capabilities you need to call it.
sl@0
  1857
	*/
sl@0
  1858
	EPlatformSecurityViolation=197,
sl@0
  1859
sl@0
  1860
	/**
sl@0
  1861
	This panic is raised if a NULL function pointer is passed in as the hash function
sl@0
  1862
	when constructing a hash table class.
sl@0
  1863
	*/
sl@0
  1864
	EHashTableNoHashFunc=198,
sl@0
  1865
sl@0
  1866
	/**
sl@0
  1867
	This panic is raised if a NULL function pointer is passed in as the identity
sl@0
  1868
	relation when constructing a hash table class.
sl@0
  1869
	*/
sl@0
  1870
	EHashTableNoIdentityRelation=199,
sl@0
  1871
sl@0
  1872
	/**
sl@0
  1873
	This panic is raised if a negative element size is specified when constructing
sl@0
  1874
	a hash table class.
sl@0
  1875
	*/
sl@0
  1876
	EHashTableBadElementSize=200,
sl@0
  1877
sl@0
  1878
	/**
sl@0
  1879
	This panic is raised if, when constructing a hash table class, the specified
sl@0
  1880
	key offset is inconsistent with the specified element size.
sl@0
  1881
	*/
sl@0
  1882
	EHashTableBadKeyOffset=201,
sl@0
  1883
sl@0
  1884
	/**
sl@0
  1885
	This panic is raised in debug builds only if a deleted entry still remains after
sl@0
  1886
	a hash table reform. It should never occur, since it signifies an error in the
sl@0
  1887
	hash table implementation.
sl@0
  1888
	*/
sl@0
  1889
	EHashTableDeletedEntryAfterReform=202,
sl@0
  1890
sl@0
  1891
	/**
sl@0
  1892
	This panic should never occur since it signifies an error in the hash table
sl@0
  1893
	implementation.
sl@0
  1894
	*/
sl@0
  1895
	EHashTableBadGeneration=203,
sl@0
  1896
sl@0
  1897
	/**
sl@0
  1898
	This panic should never occur since it signifies an error in the hash table
sl@0
  1899
	implementation.
sl@0
  1900
	*/
sl@0
  1901
	EHashTableBadHash=204,
sl@0
  1902
sl@0
  1903
	/**
sl@0
  1904
	This panic should never occur since it signifies an error in the hash table
sl@0
  1905
	implementation.
sl@0
  1906
	*/
sl@0
  1907
	EHashTableEntryLost=205,
sl@0
  1908
sl@0
  1909
	/**
sl@0
  1910
	This panic should never occur since it signifies an error in the hash table
sl@0
  1911
	implementation.
sl@0
  1912
	*/
sl@0
  1913
	EHashTableCountWrong=206,
sl@0
  1914
sl@0
  1915
	/**
sl@0
  1916
	This panic should never occur since it signifies an error in the hash table
sl@0
  1917
	implementation.
sl@0
  1918
	*/
sl@0
  1919
	EHashTableEmptyCountWrong=207,
sl@0
  1920
sl@0
  1921
	/**
sl@0
  1922
	This panic is raised if, while attempting to step a hash table iterator to
sl@0
  1923
	the next entry, the iterator is found to point to an invalid table entry.
sl@0
  1924
	This will typically occur if elements have been removed from the hash table
sl@0
  1925
	without resetting the iterator.
sl@0
  1926
	*/
sl@0
  1927
	EHashTableIterNextBadIndex=208,
sl@0
  1928
sl@0
  1929
	/**
sl@0
  1930
	This panic is raised if, while interrogating the current position of a
sl@0
  1931
	hash table iterator, the iterator is found to point to an invalid table entry.
sl@0
  1932
	This will typically occur if elements have been added to or removed from
sl@0
  1933
	the hash table without resetting the iterator.
sl@0
  1934
	*/
sl@0
  1935
	EHashTableIterCurrentBadIndex=209,
sl@0
  1936
sl@0
  1937
	/**
sl@0
  1938
	This panic is raised if an invalid argument is passed to the Reserve() function
sl@0
  1939
	on any of the hash table classes.
sl@0
  1940
	*/
sl@0
  1941
	EHashTableBadReserveCount=210,
sl@0
  1942
sl@0
  1943
	/**
sl@0
  1944
	The Win32 SE handler chain has been corrupted.
sl@0
  1945
sl@0
  1946
	@see TWin32SEHTrap
sl@0
  1947
	*/
sl@0
  1948
	EWin32SEHChainCorrupt=211,
sl@0
  1949
sl@0
  1950
	
sl@0
  1951
	/**
sl@0
  1952
	This panic is raised if an invalid argument is passed to the Reserve() function
sl@0
  1953
	on the RArray<T> or RPointerArray<T> classes.
sl@0
  1954
	*/
sl@0
  1955
	EArrayBadReserveCount=212,
sl@0
  1956
sl@0
  1957
	/**
sl@0
  1958
	This panic is raised when attempting to set a new debug failure mode on 
sl@0
  1959
	a heap with an invalid argument.  For example, if aBurst > KMaxTUint6
sl@0
  1960
	when invoking __UHEAP_BURSTFAILNEXT when a RHeap object is used for
sl@0
  1961
	the user heap.
sl@0
  1962
sl@0
  1963
	On the user side this is associated with the USER category; on the kernel side
sl@0
  1964
	this is associated with the KERN-HEAP category.
sl@0
  1965
sl@0
  1966
	@see RAllocator::TAllocFail
sl@0
  1967
	*/
sl@0
  1968
	ETHeapBadDebugFailParameter = 213,
sl@0
  1969
	
sl@0
  1970
	
sl@0
  1971
	/**
sl@0
  1972
	This panic is raised when an invalid chunk attribute has been passed to
sl@0
  1973
	the method RChunk::Create().
sl@0
  1974
	
sl@0
  1975
	@see RChunk
sl@0
  1976
	*/
sl@0
  1977
	EChkCreateInvalidAttribute = 214,
sl@0
  1978
sl@0
  1979
	
sl@0
  1980
	/**
sl@0
  1981
	This panic is raised when a TChunkCreateInfo object with an invalid version 
sl@0
  1982
	number has been passed to the method RChunk::Create().
sl@0
  1983
sl@0
  1984
	@see RChunk
sl@0
  1985
	@see TChunkCreateInfo
sl@0
  1986
	*/
sl@0
  1987
	EChkCreateInvalidVersion = 215,
sl@0
  1988
sl@0
  1989
	
sl@0
  1990
	/**
sl@0
  1991
	This panic is raised when an invalid flag is set in the aMode parameter
sl@0
  1992
	to UserHeap::ChunkHeap().
sl@0
  1993
sl@0
  1994
	@see TChunkHeapCreateMode
sl@0
  1995
	*/
sl@0
  1996
	EHeapCreateInvalidMode = 216,
sl@0
  1997
sl@0
  1998
sl@0
  1999
	/**
sl@0
  2000
	This panic is raised when a RReadWriteLock is created with an invalid
sl@0
  2001
	priority.
sl@0
  2002
sl@0
  2003
	@see RReadWriteLock
sl@0
  2004
	*/
sl@0
  2005
	EReadWriteLockInvalidPriority = 217,
sl@0
  2006
sl@0
  2007
sl@0
  2008
	/**
sl@0
  2009
	This panic is raised when a RReadWriteLock is closed with readers/writers
sl@0
  2010
	still pending.
sl@0
  2011
sl@0
  2012
	@see RReadWriteLock
sl@0
  2013
	*/
sl@0
  2014
	EReadWriteLockStillPending = 218,
sl@0
  2015
sl@0
  2016
sl@0
  2017
	/**
sl@0
  2018
	This panic is raised when a RReadWriteLock is requested with too many
sl@0
  2019
	readers or pending readers/writers.
sl@0
  2020
sl@0
  2021
	@see RReadWriteLock
sl@0
  2022
	*/
sl@0
  2023
	EReadWriteLockTooManyClients = 219,
sl@0
  2024
sl@0
  2025
sl@0
  2026
	/**
sl@0
  2027
	This panic is raised when a RReadWriteLock is unlocked but the lock flags
sl@0
  2028
	are inconsistent, eg read and write lock held or no lock held.
sl@0
  2029
sl@0
  2030
	@see RReadWriteLock
sl@0
  2031
	*/
sl@0
  2032
	EReadWriteLockBadLockState = 220,
sl@0
  2033
sl@0
  2034
sl@0
  2035
	/**
sl@0
  2036
	This debug-only panic is raised if the lock has been given to a reader
sl@0
  2037
	more than a thousand times in a row, while there is a pending writer.
sl@0
  2038
	It is intended to give a debug indication that writer starvation might be
sl@0
  2039
	happening.
sl@0
  2040
sl@0
  2041
	@see RReadWriteLock
sl@0
  2042
	*/
sl@0
  2043
	EReadWriteLockWriterStarvation = 221,
sl@0
  2044
sl@0
  2045
	/**
sl@0
  2046
    It is raised by TRawEvent::Repeats() when
sl@0
  2047
    the event is not a key repeat event.
sl@0
  2048
    
sl@0
  2049
   	This panic is raised in debug builds only.
sl@0
  2050
	*/
sl@0
  2051
	ETEventNotKeyRepeatType=222,
sl@0
  2052
sl@0
  2053
	/**
sl@0
  2054
	This panic is raised when a corrupt surrogate is found in a descriptor.
sl@0
  2055
	*/
sl@0
  2056
	ECorruptSurrogateFound = 223,
sl@0
  2057
	};
sl@0
  2058
sl@0
  2059
sl@0
  2060
sl@0
  2061
sl@0
  2062
/**
sl@0
  2063
Defines a set of panic numbers associated with the E32USER-CBASE panic category.
sl@0
  2064
sl@0
  2065
Panics with this category are raised in user side code by member functions of
sl@0
  2066
CBase derived classes that reside in euser.dll. Typically, they are caused by
sl@0
  2067
passing bad or contradictory values to class constructors or member functions.
sl@0
  2068
*/
sl@0
  2069
enum TBasePanic
sl@0
  2070
    {
sl@0
  2071
    
sl@0
  2072
    /**
sl@0
  2073
    This panic is raised by the Set() member function of CAsyncCallBack,
sl@0
  2074
    if this active object is already active when the function is called.
sl@0
  2075
    
sl@0
  2076
    @see CAsyncCallBack
sl@0
  2077
    */
sl@0
  2078
	ECAsyncCBIsActive=1,
sl@0
  2079
	
sl@0
  2080
	
sl@0
  2081
	/**
sl@0
  2082
	This panic is raised by the Call() member function of CAsyncOneShot,
sl@0
  2083
	if the active object has not already been added to the active scheduler.
sl@0
  2084
	
sl@0
  2085
	This panic is raised in debug builds only.
sl@0
  2086
	
sl@0
  2087
	@see CAsyncOneShot
sl@0
  2088
	*/
sl@0
  2089
	ECAsyncOneShotNotAdded=2,
sl@0
  2090
	
sl@0
  2091
	
sl@0
  2092
	/**
sl@0
  2093
	This panic is raised during construction of a dynamic buffer,
sl@0
  2094
	a CBufFlat or a CBufSeg object, when the value of the granularity passed
sl@0
  2095
	to the constructors is negative.
sl@0
  2096
	
sl@0
  2097
	@see CBufFlat
sl@0
  2098
	@see CBufSeg
sl@0
  2099
	*/
sl@0
  2100
	EBufExpandSizeNegative=3,
sl@0
  2101
	
sl@0
  2102
	
sl@0
  2103
	/**
sl@0
  2104
	This panic is raised when reading from a dynamic buffer,
sl@0
  2105
	a CBufFlat or a CBufSeg, using the Read() member function.
sl@0
  2106
	
sl@0
  2107
	It is caused by attempting to read beyond the end of the buffer.
sl@0
  2108
sl@0
  2109
	@see CBufFlat
sl@0
  2110
	@see CBufSeg
sl@0
  2111
	*/
sl@0
  2112
	EBufReadBeyondEnd=4,
sl@0
  2113
	
sl@0
  2114
	
sl@0
  2115
	/**
sl@0
  2116
	This panic is raised when writing to a dynamic buffer,
sl@0
  2117
	a CBufFlat or a CBufSeg, using the Write() member function.
sl@0
  2118
	
sl@0
  2119
	It is caused by attempting to write beyond the end of the buffer.
sl@0
  2120
sl@0
  2121
	@see CBufFlat
sl@0
  2122
	@see CBufSeg
sl@0
  2123
	*/
sl@0
  2124
	EBufWriteBeyondEnd=5,
sl@0
  2125
	
sl@0
  2126
	
sl@0
  2127
	/** 
sl@0
  2128
	This panic is raised when reading from a dynamic buffer,
sl@0
  2129
	a CBufFlat or a CBufSeg, using the Read() member function.
sl@0
  2130
	
sl@0
  2131
	It is caused by specifying a negative length for the amount of data
sl@0
  2132
	to be read.
sl@0
  2133
sl@0
  2134
	@see CBufFlat
sl@0
  2135
	@see CBufSeg
sl@0
  2136
	*/
sl@0
  2137
	EBufReadLengthNegative=6,
sl@0
  2138
	
sl@0
  2139
	
sl@0
  2140
	/**
sl@0
  2141
	This panic is raised when writing to a dynamic buffer,
sl@0
  2142
	a CBufFlat or a CBufSeg, using the Write() member function.
sl@0
  2143
	
sl@0
  2144
	It is caused by specifying a negative length for the amount of data
sl@0
  2145
	to be written.
sl@0
  2146
sl@0
  2147
	@see CBufFlat
sl@0
  2148
	@see CBufSeg
sl@0
  2149
	*/
sl@0
  2150
	EBufWriteLengthNegative=7,
sl@0
  2151
sl@0
  2152
sl@0
  2153
    /**
sl@0
  2154
    This panic is raised when inserting data into a dynamic buffer,
sl@0
  2155
    a CBufFlat or a CBufSeg, using the InsertL() member function or when
sl@0
  2156
    inserting an uninitialized region into the dynamic buffer using
sl@0
  2157
    the ExpandL() member function.
sl@0
  2158
    
sl@0
  2159
    It is caused by passing a negative length value to these functions.
sl@0
  2160
sl@0
  2161
	@see CBufFlat
sl@0
  2162
	@see CBufSeg
sl@0
  2163
    */
sl@0
  2164
	EBufInsertLengthNegative=8,
sl@0
  2165
	
sl@0
  2166
	
sl@0
  2167
	/**
sl@0
  2168
	This panic is raised when inserting data into a dynamic buffer,
sl@0
  2169
	a CBufFlat or a CBufSeg, using the InsertL() member function.
sl@0
  2170
	
sl@0
  2171
	It is caused when the variant of InsertL(), which takes a pointer to TAny
sl@0
  2172
	is passed a NULL pointer value.
sl@0
  2173
sl@0
  2174
	@see CBufFlat
sl@0
  2175
	@see CBufSeg
sl@0
  2176
	*/
sl@0
  2177
	EBufInsertBadPtr=9,
sl@0
  2178
	
sl@0
  2179
	
sl@0
  2180
	/**
sl@0
  2181
	This panic is raised when specifying the minimum amount of space
sl@0
  2182
	that a flat dynamic buffer, a CBufFlat, should occupy using
sl@0
  2183
	the SetReserveL() member function.
sl@0
  2184
	
sl@0
  2185
	It is caused when the size value passed to the function is negative.
sl@0
  2186
sl@0
  2187
	@see CBufFlat
sl@0
  2188
	*/
sl@0
  2189
	EBufFlatReserveNegative=10,
sl@0
  2190
sl@0
  2191
sl@0
  2192
	/**
sl@0
  2193
	This panic is raised when specifying the minimum amount of space
sl@0
  2194
	that a flat dynamic buffer, a CBufFlat, should occupy using
sl@0
  2195
	the SetReserveL() member function.
sl@0
  2196
	
sl@0
  2197
	It is caused when the size value passed to the function is less than
sl@0
  2198
	the current size of the buffer.
sl@0
  2199
sl@0
  2200
	@see CBufFlat
sl@0
  2201
	*/
sl@0
  2202
	EBufFlatReserveSetTooSmall=11,
sl@0
  2203
	
sl@0
  2204
	
sl@0
  2205
	/**
sl@0
  2206
	This panic is raised by the Delete(), Ptr(), BackPtr() member functions
sl@0
  2207
	of a flat dynamic buffer, a CBufFlat; the panic can also be raised by
sl@0
  2208
	InsertL() and ExpandL().
sl@0
  2209
	
sl@0
  2210
	It is caused when the position value passed to these functions is either
sl@0
  2211
	negative or represents a position beyond the end of the current buffer.
sl@0
  2212
	
sl@0
  2213
	@see CBufFlat
sl@0
  2214
	*/
sl@0
  2215
	EBufFlatPosOutOfRange=12,
sl@0
  2216
	
sl@0
  2217
	
sl@0
  2218
	/**
sl@0
  2219
	This panic is raised by the Delete() member function of
sl@0
  2220
	a flat dynamic buffer, a CBufFlat.
sl@0
  2221
	
sl@0
  2222
	It is caused when the combination of position and length values passed
sl@0
  2223
	to the function implies an attempt to delete data beyond the end of
sl@0
  2224
	the flat buffer.
sl@0
  2225
sl@0
  2226
   	@see CBufFlat
sl@0
  2227
	*/
sl@0
  2228
	EBufFlatDeleteBeyondEnd=13,
sl@0
  2229
	
sl@0
  2230
	
sl@0
  2231
	/**
sl@0
  2232
	This panic is raised by the Delete(), Ptr(), BackPtr() member functions
sl@0
  2233
	of a segmented dynamic buffer, a CBufSeg); the panic can also be raised
sl@0
  2234
	by InsertL() and ExpandL().
sl@0
  2235
	
sl@0
  2236
	It is caused when the position value passed to these functions is either
sl@0
  2237
	negative or represents a position beyond the end of the current buffer.
sl@0
  2238
sl@0
  2239
   	@see CBufSeg
sl@0
  2240
	*/
sl@0
  2241
	EBufSegPosOutOfRange=14,
sl@0
  2242
	
sl@0
  2243
	
sl@0
  2244
	/**
sl@0
  2245
	This panic is raised by the Delete() member function of a segmented dynamic
sl@0
  2246
	buffer, a CBufSeg.
sl@0
  2247
	
sl@0
  2248
	It is caused when the combination of position and length values passed to
sl@0
  2249
	the function implies an attempt to delete data beyond the end of
sl@0
  2250
	the segmented buffer.
sl@0
  2251
sl@0
  2252
   	@see CBufSeg
sl@0
  2253
	*/
sl@0
  2254
	EBufSegDeleteBeyondEnd=15,
sl@0
  2255
	
sl@0
  2256
	
sl@0
  2257
	/**
sl@0
  2258
	This panic is raised by the InsertL(), Delete(), Ptr() and BackPtr() member
sl@0
  2259
	functions as implemented for segmented buffers, CBufSeg, when
sl@0
  2260
	the offset within a segment, where data is to be inserted or removed,
sl@0
  2261
	is greater than the buffer granularity.
sl@0
  2262
sl@0
  2263
    This panic is raised in debug builds only.
sl@0
  2264
    
sl@0
  2265
  	@see CBufSeg
sl@0
  2266
	*/
sl@0
  2267
	EBufSegSetSBO=16,
sl@0
  2268
	
sl@0
  2269
	
sl@0
  2270
	/**
sl@0
  2271
	This panic is raised by the constructors of arrays of fixed length objects
sl@0
  2272
	as represented, for example, by the classes CArrayFixFlat, CArrayFixSeg,
sl@0
  2273
	and CArrayFixFlat<TAny>.
sl@0
  2274
	
sl@0
  2275
	It is caused when the record length is either negative or zero. The record
sl@0
  2276
	length is either explicitly specified, as in the case of
sl@0
  2277
	the CArrayFixFlat<TAny> class, or is implied by the length of the template
sl@0
  2278
	class as in the case of the CArrayFixFlat class.
sl@0
  2279
	
sl@0
  2280
	@see CArrayFixFlat
sl@0
  2281
	@see CArrayFixSeg
sl@0
  2282
	*/
sl@0
  2283
	EArrayFixInvalidLength=17,
sl@0
  2284
	
sl@0
  2285
	
sl@0
  2286
	/**
sl@0
  2287
	This panic is raised by the constructors of arrays of fixed length objects
sl@0
  2288
	as represented, for example, by the classes: CArrayFixFlat and CArrayFixSeg.
sl@0
  2289
	
sl@0
  2290
	It is caused when the granularity passed to the constructors is
sl@0
  2291
	either negative or zero.
sl@0
  2292
sl@0
  2293
	@see CArrayFixFlat
sl@0
  2294
	@see CArrayFixSeg
sl@0
  2295
	*/
sl@0
  2296
	EArrayFixInvalidGranularity=18,
sl@0
  2297
	
sl@0
  2298
	
sl@0
  2299
	/**
sl@0
  2300
	This panic is raised by the constructors of arrays of variable length
sl@0
  2301
	objects as represented, for example, by the classes: CArrayVarFlat
sl@0
  2302
	and CArrayVarSeg.
sl@0
  2303
	
sl@0
  2304
	It is caused when the granularity passed to the constructors is either
sl@0
  2305
	negative or zero.
sl@0
  2306
sl@0
  2307
	@see CArrayFixFlat
sl@0
  2308
	@see CArrayFixSeg
sl@0
  2309
	*/
sl@0
  2310
	EArrayVarInvalidGranularity=19,
sl@0
  2311
	
sl@0
  2312
	
sl@0
  2313
	/**
sl@0
  2314
	This panic is raised by the constructors of packed arrays as represented,
sl@0
  2315
	for example, by the class CArrayPakFlat.
sl@0
  2316
	
sl@0
  2317
	It is caused when the granularity passed to the constructors is either
sl@0
  2318
	negative or zero.
sl@0
  2319
sl@0
  2320
	@see CArrayPakFlat
sl@0
  2321
	*/
sl@0
  2322
	EArrayPakInvalidGranularity=20,
sl@0
  2323
	
sl@0
  2324
	
sl@0
  2325
	/**
sl@0
  2326
	This panic is raised by any operation which accesses an element of an array
sl@0
  2327
	by explicit reference to an index number, for example, the Delete(),
sl@0
  2328
	InsertL() and At() member functions or the operator Operator[].
sl@0
  2329
	
sl@0
  2330
	It is caused by specifying an index value which is either negative,
sl@0
  2331
	or is greater than or equal to the number of objects currently within the array.
sl@0
  2332
	*/
sl@0
  2333
	EArrayIndexOutOfRange=21,
sl@0
  2334
	
sl@0
  2335
	
sl@0
  2336
	/**
sl@0
  2337
	This panic is raised when deleting contiguous elements from an array of
sl@0
  2338
	fixed length objects (derived from CArrayFixBase) using the Delete()
sl@0
  2339
	member function.
sl@0
  2340
	
sl@0
  2341
	It is caused by specifying the number of contiguous elements as
sl@0
  2342
	a zero or negative value.
sl@0
  2343
	*/
sl@0
  2344
	EArrayCountNegative=22,
sl@0
  2345
	
sl@0
  2346
	
sl@0
  2347
	/**
sl@0
  2348
	This panic is raised when inserting contiguous elements into an array
sl@0
  2349
	of fixed length objects (derived from CArrayFixBase) using the
sl@0
  2350
	InsertL() member function.
sl@0
  2351
	
sl@0
  2352
	It is caused by specifying the number of contiguous elements as
sl@0
  2353
	a zero or negative value.
sl@0
  2354
	*/
sl@0
  2355
	EArrayCountNegative2=23,
sl@0
  2356
	
sl@0
  2357
	
sl@0
  2358
	/**
sl@0
  2359
	This panic is raised when resizing an array of fixed length objects
sl@0
  2360
	(derived from CArrayFixBase) using the ResizeL() member function.
sl@0
  2361
	
sl@0
  2362
	It is caused by specifying the number of contiguous elements as a zero
sl@0
  2363
	or negative value.
sl@0
  2364
	*/
sl@0
  2365
	EArrayCountNegative3=24,
sl@0
  2366
	
sl@0
  2367
	
sl@0
  2368
	/**
sl@0
  2369
	This panic is raised when deleting contiguous elements from an array of
sl@0
  2370
	variable length objects (derived from CArrayVarBase) using the Delete()
sl@0
  2371
	member function.
sl@0
  2372
	
sl@0
  2373
	It is caused by specifying the number of contiguous elements as a zero
sl@0
  2374
	or negative value.
sl@0
  2375
	*/
sl@0
  2376
	EArrayCountNegative4=25,
sl@0
  2377
	
sl@0
  2378
	
sl@0
  2379
	/**
sl@0
  2380
	This panic is raised when deleting contiguous elements from
sl@0
  2381
	a packed array (derived from CArrayPakBase) using the Delete()
sl@0
  2382
	member function.
sl@0
  2383
	
sl@0
  2384
	It is caused by specifying the number of contiguous elements as
sl@0
  2385
	a zero or negative value.
sl@0
  2386
	*/
sl@0
  2387
	EArrayCountNegative5=26,
sl@0
  2388
	
sl@0
  2389
	
sl@0
  2390
	/**
sl@0
  2391
	This panic is raised when reserving space in flat arrays of
sl@0
  2392
	fixed length objects, the CArrayFixFlat,CArrayFixFlat<TAny>
sl@0
  2393
	and CArrayPtrFlat classes, using the SetReserveL() member function.
sl@0
  2394
	
sl@0
  2395
	It is caused by specifying the number of elements, for which space is to be
sl@0
  2396
	reserved, as less than the current number of elements in the array.
sl@0
  2397
	*/
sl@0
  2398
    EArrayReserveTooSmall=27,
sl@0
  2399
    
sl@0
  2400
    
sl@0
  2401
	/**
sl@0
  2402
	This panic is raised when inserting or appending replicated 
sl@0
  2403
	elements to the arrays of fixed length objects CArrayFixFlat and
sl@0
  2404
	CArrayFixSeg using the InsertL() or AppendL() functions.
sl@0
  2405
	
sl@0
  2406
	It is caused by specifying the number of replicas as negative or zero.
sl@0
  2407
    */
sl@0
  2408
	EArrayReplicasNegative=28,
sl@0
  2409
	
sl@0
  2410
	
sl@0
  2411
	/**
sl@0
  2412
	This panic is raised when deleting elements from a fixed length, variable
sl@0
  2413
	length or packed array (derived from CArrayFixBase, CArrayVarBase
sl@0
  2414
	and CArrayPakBase) using the Delete() function.
sl@0
  2415
	
sl@0
  2416
	It is caused when the specification of the position of the first element
sl@0
  2417
	to be deleted and the number of contiguous elements to be deleted refers
sl@0
  2418
	to elements which are outside the bounds of the array.
sl@0
  2419
	*/
sl@0
  2420
	EArrayCountTooBig=29,
sl@0
  2421
	
sl@0
  2422
	
sl@0
  2423
	/**
sl@0
  2424
	This panic is raised when inserting into, appending onto, expanding or
sl@0
  2425
	extending a variable length array or a packed array (i.e. arrays derived
sl@0
  2426
	from CArrayVar or CArrayPak) using the InsertL(), AppendL(), ExpandL()
sl@0
  2427
	or ExtendL() functions respectively.
sl@0
  2428
	
sl@0
  2429
	It is caused by specifying the length of the element as a negative value.
sl@0
  2430
	*/
sl@0
  2431
	EArrayLengthNegative=30,
sl@0
  2432
sl@0
  2433
sl@0
  2434
	/**
sl@0
  2435
	Not used.
sl@0
  2436
	*/
sl@0
  2437
	EArrayReaderCountVirtual=31,
sl@0
  2438
	
sl@0
  2439
	
sl@0
  2440
	/**
sl@0
  2441
	Not used.
sl@0
  2442
	*/
sl@0
  2443
	EArrayReaderAtVirtual=32,
sl@0
  2444
	
sl@0
  2445
	
sl@0
  2446
	/**
sl@0
  2447
	This panic is raised by the destructor of a CObject.
sl@0
  2448
	
sl@0
  2449
	It is caused when an attempt is made to delete the CObject
sl@0
  2450
	when the reference count is not zero.
sl@0
  2451
sl@0
  2452
    @see CObject
sl@0
  2453
	*/
sl@0
  2454
	EObjObjectStillReferenced=33,
sl@0
  2455
sl@0
  2456
sl@0
  2457
	/**
sl@0
  2458
	This panic is raised by the Close() member function of a CObject.
sl@0
  2459
	
sl@0
  2460
	It is caused when the reference count is negative.
sl@0
  2461
	*/
sl@0
  2462
	EObjNegativeAccessCount=34,
sl@0
  2463
sl@0
  2464
sl@0
  2465
	/**
sl@0
  2466
	This panic is raised by the Remove() member function of an object
sl@0
  2467
	container, a CObjectCon.
sl@0
  2468
	
sl@0
  2469
	It is caused when the CObject to be removed from the container is
sl@0
  2470
	not contained by the container.
sl@0
  2471
	
sl@0
  2472
    @see CObject
sl@0
  2473
	*/
sl@0
  2474
	EObjRemoveObjectNotFound=35,
sl@0
  2475
	
sl@0
  2476
	
sl@0
  2477
	/**
sl@0
  2478
	This panic is raised by the Remove() member function of a container
sl@0
  2479
	index, a CObjectConIx.
sl@0
  2480
	
sl@0
  2481
	It is caused when the object container, a CObjectCon, to be removed from
sl@0
  2482
	the index is not contained by the index.
sl@0
  2483
	*/
sl@0
  2484
	EObjRemoveContainerNotFound=36,
sl@0
  2485
	
sl@0
  2486
	
sl@0
  2487
	/**
sl@0
  2488
	This panic is raised by the Remove() member function of an object index,
sl@0
  2489
	a CObjectIx.
sl@0
  2490
	
sl@0
  2491
	It is caused when the handle passed to the Remove() function does not
sl@0
  2492
	represent a CObject known to the object index.
sl@0
  2493
	*/
sl@0
  2494
	EObjRemoveBadHandle=37,
sl@0
  2495
	
sl@0
  2496
	
sl@0
  2497
	/**
sl@0
  2498
	This panic is raised by the At(), FindByName() and FindByFullName() member
sl@0
  2499
	functions of an object container, a CObjectCon.
sl@0
  2500
	
sl@0
  2501
	It is caused when the unique ID as derived from the handle is not the same 
sl@0
  2502
	as the unique ID held by the object container.
sl@0
  2503
	*/
sl@0
  2504
	EObjFindBadHandle=38,
sl@0
  2505
	
sl@0
  2506
	
sl@0
  2507
	/**
sl@0
  2508
	This panic is raised by the At() member function of an object container,
sl@0
  2509
	a CObjectCon.
sl@0
  2510
	
sl@0
  2511
	It is caused when the index represented by the handle is outside
sl@0
  2512
	the permitted range. In effect, the handle is bad.
sl@0
  2513
	*/
sl@0
  2514
	EObjFindIndexOutOfRange=39,
sl@0
  2515
sl@0
  2516
sl@0
  2517
	/**
sl@0
  2518
	This panic is raised by the destructor of an active object, a CActive.
sl@0
  2519
	
sl@0
  2520
	It is caused by an attempt to delete the active object while it still
sl@0
  2521
	has a request outstanding.
sl@0
  2522
	*/
sl@0
  2523
	EReqStillActiveOnDestruct=40,
sl@0
  2524
sl@0
  2525
sl@0
  2526
	/**
sl@0
  2527
	This panic is raised by the Add() member function of an active scheduler,
sl@0
  2528
	a CActiveScheduler.
sl@0
  2529
	
sl@0
  2530
	It is caused by an attempt to add an active object to the active scheduler
sl@0
  2531
	when it has already been added to the active scheduler
sl@0
  2532
	*/
sl@0
  2533
	EReqAlreadyAdded=41,
sl@0
  2534
	
sl@0
  2535
	
sl@0
  2536
	/**
sl@0
  2537
	This panic is raised by the SetActive() member function of an active
sl@0
  2538
	object, a CActive.
sl@0
  2539
	
sl@0
  2540
	It is caused by an attempt to flag the active object
sl@0
  2541
	as active when it is already active, i.e. a request is still outstanding.
sl@0
  2542
	*/
sl@0
  2543
	EReqAlreadyActive=42,
sl@0
  2544
	
sl@0
  2545
	
sl@0
  2546
	/**
sl@0
  2547
	This panic is raised by the Install() member function of an active
sl@0
  2548
	scheduler, a CActiveScheduler.
sl@0
  2549
	
sl@0
  2550
	It is caused by attempting to install this active scheduler as the current
sl@0
  2551
	active scheduler when there is already a current active scheduler;
sl@0
  2552
	i.e. an active scheduler has already been installed.
sl@0
  2553
	*/
sl@0
  2554
	EReqManagerAlreadyExists=43,
sl@0
  2555
sl@0
  2556
sl@0
  2557
	/**
sl@0
  2558
	This panic is raised by the Start(), Stop() and Add() member functions
sl@0
  2559
	of an active scheduler, a CActiveScheduler.
sl@0
  2560
	
sl@0
  2561
	It is caused by attempting to start or stop an active scheduler or by
sl@0
  2562
	attempting to add an active object, a CActive, to the active scheduler.
sl@0
  2563
	*/
sl@0
  2564
	EReqManagerDoesNotExist=44,
sl@0
  2565
sl@0
  2566
sl@0
  2567
	/**
sl@0
  2568
	This panic is raised by the Stop() member function of an active scheduler,
sl@0
  2569
	a CActiveScheduler.
sl@0
  2570
sl@0
  2571
	Calling Stop() terminates the wait loop started by the most recent
sl@0
  2572
	call to Start(). The panic is caused by a call to Stop() which is not
sl@0
  2573
	matched by a corresponding call to Start().
sl@0
  2574
	*/
sl@0
  2575
	EReqTooManyStops=45,
sl@0
  2576
sl@0
  2577
sl@0
  2578
	/**
sl@0
  2579
	This panic is raised by an active scheduler, a CActiveScheduler.
sl@0
  2580
	
sl@0
  2581
	It is caused by a stray signal.
sl@0
  2582
	*/
sl@0
  2583
	EReqStrayEvent=46,
sl@0
  2584
	
sl@0
  2585
	
sl@0
  2586
	/**
sl@0
  2587
	This panic is raised by the Error() virtual member function of an active
sl@0
  2588
	scheduler, a CActiveScheduler.
sl@0
  2589
	
sl@0
  2590
	This function is called when an active object’s RunL() function leaves.
sl@0
  2591
	Applications always replace the Error() function in a class derived from
sl@0
  2592
	CActiveScheduler; the default behaviour provided by CActiveScheduler raises
sl@0
  2593
	this panic.
sl@0
  2594
	*/
sl@0
  2595
	EReqActiveObjectLeave=47,
sl@0
  2596
	
sl@0
  2597
	
sl@0
  2598
	/**
sl@0
  2599
	This panic is raised by the Add() member function of an active scheduler,
sl@0
  2600
	a CActiveScheduler, when a NULL pointer is passed to the function.
sl@0
  2601
	*/
sl@0
  2602
	EReqNull=48,
sl@0
  2603
sl@0
  2604
sl@0
  2605
	/**
sl@0
  2606
	This panic is raised by the SetActive() and Deque() member functions of
sl@0
  2607
	an active object, a CActive.
sl@0
  2608
	
sl@0
  2609
	It is raised if the active object has not been added to the active scheduler.
sl@0
  2610
	*/
sl@0
  2611
	EActiveNotAdded=49,
sl@0
  2612
sl@0
  2613
sl@0
  2614
	/**
sl@0
  2615
	This panic is raised by the SetPriority() member function of an active
sl@0
  2616
	object, a CActive.
sl@0
  2617
	
sl@0
  2618
	It is caused by an attempt to change the priority of the active object 
sl@0
  2619
	while it is active, i.e. while a request is outstanding).
sl@0
  2620
	*/
sl@0
  2621
	ESetPriorityActive=50,
sl@0
  2622
sl@0
  2623
sl@0
  2624
	/**
sl@0
  2625
	This panic is raised by the At(), After() and Lock() member functions of
sl@0
  2626
	the CTimer active object.
sl@0
  2627
	
sl@0
  2628
	It is caused by an attempt to request a timer event when the CTimer active
sl@0
  2629
	object has not been added to the active scheduler.
sl@0
  2630
	*/
sl@0
  2631
	ETimNotAdded=51,
sl@0
  2632
sl@0
  2633
sl@0
  2634
	/**
sl@0
  2635
	This panic is raised by the Start() member function of the periodic timer
sl@0
  2636
    active object, a CPeriodic, when a negative time interval is passed to
sl@0
  2637
    the function.
sl@0
  2638
	*/
sl@0
  2639
	ETimIntervalNegativeOrZero=52,
sl@0
  2640
	
sl@0
  2641
	
sl@0
  2642
	/**
sl@0
  2643
	This panic is raised by the Start() member function of the periodic 
sl@0
  2644
	timer active object, a CPeriodic, when a negative delay time interval
sl@0
  2645
	is passed to the function.
sl@0
  2646
	*/
sl@0
  2647
	ETimDelayNegative=53,
sl@0
  2648
	
sl@0
  2649
	
sl@0
  2650
	/**
sl@0
  2651
	Not used.
sl@0
  2652
	*/
sl@0
  2653
	EUnusedBasePanic1=54,  // Unused
sl@0
  2654
sl@0
  2655
sl@0
  2656
	/**
sl@0
  2657
	Not used.
sl@0
  2658
	*/
sl@0
  2659
	ESvrNoServerName=55,
sl@0
  2660
	
sl@0
  2661
	
sl@0
  2662
	/**
sl@0
  2663
	This panic is raised by the New() and NewL() member functions of
sl@0
  2664
	CBitMapAllocator when a negative or zero size is passed to them.
sl@0
  2665
	*/
sl@0
  2666
	EBmaSizeLessOrEqualToZero=56,
sl@0
  2667
	
sl@0
  2668
	
sl@0
  2669
	/**
sl@0
  2670
	This panic is raised by the Free(TInt aPos) member function of
sl@0
  2671
	CBitMapAllocator when a position value is passed which is out of bounds.
sl@0
  2672
	*/
sl@0
  2673
	EBmaFreeOutOfRange=57,
sl@0
  2674
sl@0
  2675
sl@0
  2676
	/**
sl@0
  2677
	This panic is raised by the IsFree(TInt aPos) member function of
sl@0
  2678
	CBitMapAllocator when a position value is passed which is out of bounds.
sl@0
  2679
	*/
sl@0
  2680
	EBmaAllocOutOfRange=58,
sl@0
  2681
	
sl@0
  2682
	
sl@0
  2683
	/**
sl@0
  2684
	This panic is raised by the AllocFromTopFrom(TInt aPos) member function 
sl@0
  2685
	of CBitMapAllocator when a position value is passed which is out of bounds.
sl@0
  2686
	*/
sl@0
  2687
	EBmaAllocFromTopFromOutOfRange=59,
sl@0
  2688
sl@0
  2689
sl@0
  2690
	/**
sl@0
  2691
	Not used.
sl@0
  2692
	*/
sl@0
  2693
	EBmaFreeTooMany=60,
sl@0
  2694
	
sl@0
  2695
	
sl@0
  2696
	/**
sl@0
  2697
	Not used.
sl@0
  2698
	*/
sl@0
  2699
	EBmaFreeNotAllocated=61,
sl@0
  2700
	
sl@0
  2701
	
sl@0
  2702
	/**
sl@0
  2703
	This panic is raised by the AllocAt() member function of CBitMapAllocator
sl@0
  2704
	when the implied position has already been allocated.
sl@0
  2705
	*/
sl@0
  2706
	EBmaAllocAtAlreadyAllocated=62,
sl@0
  2707
	
sl@0
  2708
	
sl@0
  2709
	/**
sl@0
  2710
	This panic is raised as a result of a call to the Pop() and PopAndDestroy()
sl@0
  2711
	static member functions of the CleanupStack class.
sl@0
  2712
	
sl@0
  2713
	The panic occurs when TRAPs have been nested and an attempt is made to pop too
sl@0
  2714
	many items from the cleanup stack for the current nest level.
sl@0
  2715
	*/
sl@0
  2716
	EClnPopAcrossLevels=63,
sl@0
  2717
sl@0
  2718
sl@0
  2719
	/**
sl@0
  2720
	This panic is raised as a result of a call to the Pop() and PopAndDestroy()
sl@0
  2721
	static member functions of the CleanupStack class.
sl@0
  2722
	
sl@0
  2723
	The panic occurs when attempt is made to pop more items from the cleanup
sl@0
  2724
	stack than are on the cleanup stack.
sl@0
  2725
	*/
sl@0
  2726
	EClnPopUnderflow=64,
sl@0
  2727
	
sl@0
  2728
	
sl@0
  2729
	/**
sl@0
  2730
	The panic is raised as a result of a call to the Pop() and PopAndDestroy()
sl@0
  2731
	static member functions of the CleanupStack class.
sl@0
  2732
	
sl@0
  2733
	The panic occurs when an attempt is made to pop more items from the cleanup
sl@0
  2734
	stack than are on the cleanup stack.
sl@0
  2735
	*/
sl@0
  2736
	EClnLevelUnderflow=65,
sl@0
  2737
sl@0
  2738
sl@0
  2739
	/**
sl@0
  2740
	This panic is raised if an attempt is being made to insert a cleanup item
sl@0
  2741
	into a position on the cleanup stack reserved for marking the current TRAP
sl@0
  2742
	nest level.
sl@0
  2743
	
sl@0
  2744
	In practice this error occurs if the call to CleanupStack::PushL() happens
sl@0
  2745
	when there has been no call to TRAP().
sl@0
  2746
	*/
sl@0
  2747
	EClnPushAtLevelZero=66,
sl@0
  2748
	
sl@0
  2749
	
sl@0
  2750
	/**
sl@0
  2751
	This panic is raised when building a TCleanupStackItem which is to be added
sl@0
  2752
	to the cleanup stack.
sl@0
  2753
	
sl@0
  2754
	The building of the TCleanupStackItem needs a TCleanupItem and this has
sl@0
  2755
	been constructed with a NULL cleanup operation (a TCleanupOperation).
sl@0
  2756
	*/
sl@0
  2757
	EClnNoCleanupOperation=67,
sl@0
  2758
sl@0
  2759
sl@0
  2760
	/**
sl@0
  2761
	This panic is raised if there are no free slots available on the cleanup
sl@0
  2762
	stack to insert a cleanup item.
sl@0
  2763
	*/
sl@0
  2764
	EClnNoFreeSlotItem=68,
sl@0
  2765
	
sl@0
  2766
	
sl@0
  2767
	/**
sl@0
  2768
	This panic is raised if no trap handler has been installed.
sl@0
  2769
	
sl@0
  2770
	In practice, this occurs if CTrapCleanup::New() has not been called
sl@0
  2771
	before using the cleanup stack.
sl@0
  2772
	*/
sl@0
  2773
	EClnNoTrapHandlerInstalled=69,
sl@0
  2774
	
sl@0
  2775
	
sl@0
  2776
	/**
sl@0
  2777
	This panic is raised as a result of a call to the versions of the
sl@0
  2778
	Pop() and PopAndDestroy() static member functions of the CleanupStack class
sl@0
  2779
	which take an explicit count of the items to be popped.
sl@0
  2780
	
sl@0
  2781
	The panic is caused by passing a negative value for the number of items
sl@0
  2782
	to be popped.
sl@0
  2783
	*/
sl@0
  2784
	EClnPopCountNegative=70,
sl@0
  2785
	
sl@0
  2786
	
sl@0
  2787
	/**
sl@0
  2788
	This panic is raised when TRAPs have been nested and an attempt is made to
sl@0
  2789
	exit from a TRAP nest level before all the cleanup items belonging to that
sl@0
  2790
	level have been popped off the cleanup stack.
sl@0
  2791
	*/
sl@0
  2792
	EClnLevelNotEmpty=71,
sl@0
  2793
sl@0
  2794
sl@0
  2795
	/**
sl@0
  2796
	This panic is raised by the constructor of the circular buffer base class,
sl@0
  2797
	a CCirBufBase, when the size value passed is zero or negative.
sl@0
  2798
	*/
sl@0
  2799
	ECircItemSizeNegativeOrZero=72,
sl@0
  2800
sl@0
  2801
sl@0
  2802
	/**
sl@0
  2803
	This panic is raised by a call to the SetLengthL() member function of 
sl@0
  2804
	the circular buffer base class, a CCirBufBase, by passing a length
sl@0
  2805
	value which is zero or negative.
sl@0
  2806
	*/
sl@0
  2807
	ECircSetLengthNegativeOrZero=73,
sl@0
  2808
	
sl@0
  2809
	
sl@0
  2810
	/**
sl@0
  2811
	This panic is raised by a call to the Add() member function of a 
sl@0
  2812
	circular buffer, a CCirBuf when the pointer to the item
sl@0
  2813
	to be added is NULL.
sl@0
  2814
	*/
sl@0
  2815
	ECircNoBufferAllocated=74,
sl@0
  2816
	
sl@0
  2817
	
sl@0
  2818
	/**
sl@0
  2819
	This panic is raised by a call to the Add() member function of a
sl@0
  2820
	circular buffer, a CCirBuf when the number of items to be added
sl@0
  2821
	is zero or negative.
sl@0
  2822
	*/
sl@0
  2823
	ECircAddCountNegative=75,
sl@0
  2824
sl@0
  2825
sl@0
  2826
	/**
sl@0
  2827
	This panic is raised by a call to the Remove() member function of
sl@0
  2828
	a circular buffer, a CCirBuf when the number of items to be removed is zero
sl@0
  2829
	or negative.
sl@0
  2830
	*/
sl@0
  2831
	ECircRemoveCountNegative=76,
sl@0
  2832
sl@0
  2833
sl@0
  2834
	/**
sl@0
  2835
	This panic is raise by CConsoleBase::Getch() when the asynchronous request
sl@0
  2836
	that fetches the character completes with a completion code that
sl@0
  2837
	is not KErrNone.
sl@0
  2838
	*/
sl@0
  2839
	EConsGetchFailed=77,
sl@0
  2840
	
sl@0
  2841
	
sl@0
  2842
	/**
sl@0
  2843
	Not used.
sl@0
  2844
	*/
sl@0
  2845
	ESecurityData=78,
sl@0
  2846
	
sl@0
  2847
	
sl@0
  2848
	/**
sl@0
  2849
	This panic is raised by the Alloc() member function 
sl@0
  2850
	of CBitMapAllocator if the object is in an inconsistnt state.
sl@0
  2851
	*/
sl@0
  2852
	EBmaInconsistentState=79,
sl@0
  2853
sl@0
  2854
sl@0
  2855
	/**
sl@0
  2856
	This panic is raised by the AllocFrom() member function 
sl@0
  2857
	of CBitMapAllocator if the position passed into it is outside its valid
sl@0
  2858
	range, i.e. is negative or is greater than or equal to the size.
sl@0
  2859
	*/
sl@0
  2860
	EBmaAllocFromOutOfRange=80,
sl@0
  2861
sl@0
  2862
sl@0
  2863
	/**
sl@0
  2864
	This panic is raised by the Alloc() member function 
sl@0
  2865
	of CBitMapAllocator if the count value passed into it
sl@0
  2866
	is not positive.
sl@0
  2867
	*/
sl@0
  2868
	EBmaAllocCountNegative=81,
sl@0
  2869
	
sl@0
  2870
	
sl@0
  2871
	/**
sl@0
  2872
	This panic is raised by the AllocAligned() member function 
sl@0
  2873
	of CBitMapAllocator if the alignment value passed into it
sl@0
  2874
	is negative or greater than or equal to 32.
sl@0
  2875
	*/
sl@0
  2876
	EBmaAllAlgnOutOfRange=82,
sl@0
  2877
sl@0
  2878
sl@0
  2879
	/**
sl@0
  2880
	This panic is raised by the AllocAlignedBlock() member function 
sl@0
  2881
	of CBitMapAllocator if the alignment value passed into it
sl@0
  2882
	is negative or greater than or equal to 32.
sl@0
  2883
	*/
sl@0
  2884
	EBmaAllAlgnBOutOfRange=83,
sl@0
  2885
	
sl@0
  2886
	
sl@0
  2887
	/**
sl@0
  2888
	This panic is raised by the AllocAt() member function 
sl@0
  2889
	of CBitMapAllocator if the position value passed into it
sl@0
  2890
	is outside the permitted range.
sl@0
  2891
	*/
sl@0
  2892
	EBmaAllocBlkOutOfRange=84,
sl@0
  2893
sl@0
  2894
sl@0
  2895
	/**
sl@0
  2896
	This panic is raised by the IsFree() member function 
sl@0
  2897
	of CBitMapAllocator if the position value passed into it
sl@0
  2898
	is outside the permitted range.
sl@0
  2899
	*/
sl@0
  2900
	EBmaChkBlkOutOfRange=85,
sl@0
  2901
sl@0
  2902
sl@0
  2903
	/**
sl@0
  2904
	This panic is raised by the Free() member function 
sl@0
  2905
	of CBitMapAllocator if the position value passed into it
sl@0
  2906
	is outside the permitted range.
sl@0
  2907
	*/
sl@0
  2908
	EBmaFreeBlkOutOfRange=86,
sl@0
  2909
sl@0
  2910
sl@0
  2911
	/**
sl@0
  2912
	This panic is raised by the Free() member function 
sl@0
  2913
	of CBitMapAllocator if attempting to free a block that is not allocated.
sl@0
  2914
	*/
sl@0
  2915
	EBmaFreeBlkNotAllocated=87,
sl@0
  2916
sl@0
  2917
sl@0
  2918
	/**
sl@0
  2919
	This panic is raised by the Free() member function 
sl@0
  2920
	of CBitMapAllocator if attempting to allocate a block that is not free.
sl@0
  2921
	*/
sl@0
  2922
	EBmaAllocBlkNotFree=88,
sl@0
  2923
sl@0
  2924
sl@0
  2925
	/**
sl@0
  2926
	This panic is raised by call to the Replace() member function of 
sl@0
  2927
	CActiveScheduler when the replacement active scheduler is the same as
sl@0
  2928
	the existing active scheduler.
sl@0
  2929
	*/
sl@0
  2930
	EActiveSchedulerReplacingSelf=89,
sl@0
  2931
	
sl@0
  2932
	
sl@0
  2933
	/**
sl@0
  2934
	The panic is raised as a result of a call to the Pop() and PopAndDestroy()
sl@0
  2935
	static member functions of the CleanupStack class.
sl@0
  2936
	
sl@0
  2937
	The panic occurs when an the item to be popped is not the expected item.
sl@0
  2938
	*/
sl@0
  2939
	EClnCheckFailed=90,
sl@0
  2940
	
sl@0
  2941
	
sl@0
  2942
	/**
sl@0
  2943
	This panic is raised by CActiveSchedulerWait::Start()
sl@0
  2944
    when the CActiveSchedulerWait has already been started.
sl@0
  2945
    
sl@0
  2946
    @see CActiveSchedulerWait
sl@0
  2947
	*/
sl@0
  2948
	EActiveSchedulerWaitAlreadyStarted=91,
sl@0
  2949
	
sl@0
  2950
	
sl@0
  2951
	/** 
sl@0
  2952
	This panic is raised by CActiveSchedulerWait::AsyncStop() and
sl@0
  2953
	CActiveSchedulerWait::CanStopNow()
sl@0
  2954
	when the CActiveSchedulerWait has not been started.
sl@0
  2955
	*/
sl@0
  2956
	EActiveSchedulerWaitNotStarted=92,
sl@0
  2957
sl@0
  2958
sl@0
  2959
	/**
sl@0
  2960
	This panic is raised during construction of a CAsyncOneShot if the attempt
sl@0
  2961
	to open a handle to the current thread fails.
sl@0
  2962
	*/
sl@0
  2963
	EAsyncOneShotSetupFailed=93,
sl@0
  2964
	
sl@0
  2965
	
sl@0
  2966
	/**
sl@0
  2967
	Not used.
sl@0
  2968
	*/
sl@0
  2969
	ESvrBadSecurityPolicy=94,
sl@0
  2970
sl@0
  2971
sl@0
  2972
	/**
sl@0
  2973
	This panic is raised if CPolicyServer::CustomSecurityCheckL(),
sl@0
  2974
	or CPolicyServer::CustomFailureActionL() are called.
sl@0
  2975
	
sl@0
  2976
	Odds are that you forgot to implement one of these two functions in your
sl@0
  2977
	CPolicyServer derived Server.
sl@0
  2978
	*/
sl@0
  2979
	EPolSvrCallingBaseImplementation=95,
sl@0
  2980
sl@0
  2981
sl@0
  2982
	/**
sl@0
  2983
	This panic is raised in debug builds by the CPolicyServer constructor if
sl@0
  2984
	TPolicy::iRanges[0] does not have a value of 0.
sl@0
  2985
	*/
sl@0
  2986
	EPolSvr1stRangeNotZero=96,
sl@0
  2987
sl@0
  2988
sl@0
  2989
	/**
sl@0
  2990
	This panic is raised in debug builds by the CPolicyServer constructor if
sl@0
  2991
	each element of TPolicy::iRanges is not greater than the previous.
sl@0
  2992
	*/
sl@0
  2993
	EPolSvrRangesNotIncreasing=97,
sl@0
  2994
sl@0
  2995
sl@0
  2996
	/**
sl@0
  2997
	This panic is raised in debug builds by the CPolicyServer constructor
sl@0
  2998
	unless every element in TPolicy::iElementsIndex is valid.  Every element,
sl@0
  2999
	x, must not be one of (ESpecialCaseHardLimit <= x <= ESpecialCaseLimit) in
sl@0
  3000
	order to be valid.  See CPolicyServer::TSpecialCase for more information.
sl@0
  3001
	*/
sl@0
  3002
	EPolSvrElementsIndexValueInvalid=98,
sl@0
  3003
sl@0
  3004
sl@0
  3005
	/**
sl@0
  3006
	This panic is raised in debug builds by the CPolicyServer constructor if
sl@0
  3007
	TPolicy::iOnConnect has an invalid value. iOnConnect must not be one of
sl@0
  3008
	(ESpecialCaseHardLimit <= x <= ESpecialCaseLimit) in order to be valid.
sl@0
  3009
	See CPolicyServer::TSpecialCase for more information.
sl@0
  3010
	*/
sl@0
  3011
	EPolSvrIOnConnectValueInvalid=99,
sl@0
  3012
	
sl@0
  3013
sl@0
  3014
	/**
sl@0
  3015
	This panic is raised if CPolicyServer::iPolicy is found to be invalid for
sl@0
  3016
	an unkown reason.  There is a good chance that your policy would cause the
sl@0
  3017
	server to panic with one of the above specific policy panic codes if you
sl@0
  3018
	run it in debug mode.  See the policy server documentation for a
sl@0
  3019
	description of a valid policy.
sl@0
  3020
	*/
sl@0
  3021
	EPolSvrPolicyInvalid=100,
sl@0
  3022
sl@0
  3023
sl@0
  3024
	/**
sl@0
  3025
	The value returned from CustomSecurityCheckL or CustomFailureActionL was
sl@0
  3026
	invalid.  See CPolicyServer::TCustomResult for a list of valid results.
sl@0
  3027
	*/
sl@0
  3028
	EPolSvrInvalidCustomResult=101,
sl@0
  3029
sl@0
  3030
sl@0
  3031
	/**
sl@0
  3032
	This panic is raised in debug builds by the CPolicyServer constructor if
sl@0
  3033
	TPolicy.iRangeCount is not greater than 0.  All policies given to the
sl@0
  3034
	policy server must contain at least 1 policy. 
sl@0
  3035
	*/
sl@0
  3036
	EPolSvrIRangeCountInvalid=102,
sl@0
  3037
sl@0
  3038
sl@0
  3039
	/**
sl@0
  3040
	This panic is raised by the policy server framework if a message fails a
sl@0
  3041
	policy check (custom or not) and the associated action is EPanicClient.
sl@0
  3042
	*/
sl@0
  3043
	EPolSvrActionPanicClient=103,
sl@0
  3044
sl@0
  3045
	/**
sl@0
  3046
	This panic is raised by CObjectIx class methods if inconsistent data condition occurs
sl@0
  3047
	It can appear in debug build only.
sl@0
  3048
	*/
sl@0
  3049
	EObjInconsistent=104,
sl@0
  3050
	
sl@0
  3051
	/**
sl@0
  3052
	This panic is raised as a result of a call to the Pop() and PopAndDestroy()
sl@0
  3053
	static member functions of the CleanupStack class.
sl@0
  3054
	
sl@0
  3055
	The panic occurs when the cleanup operation of a popped item modifies the 
sl@0
  3056
	cleanup stack. In such a case, the function cannot guarantee that the correct 
sl@0
  3057
	items will be popped.
sl@0
  3058
	*/
sl@0
  3059
	EClnStackModified=105,
sl@0
  3060
sl@0
  3061
	/**
sl@0
  3062
	This panic is raised as a result of a call to CServer2::SetPinClientDescriptors() after
sl@0
  3063
	CServer2::Start() has been invoked on a CServer2 object.
sl@0
  3064
	*/
sl@0
  3065
	ECServer2InvalidSetPin = 106,
sl@0
  3066
    };
sl@0
  3067
sl@0
  3068
#endif