Update contrib.
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // e32\include\e32panic.h
24 #ifndef __E32PANIC_H__
25 #define __E32PANIC_H__
31 Defines a set of panic numbers associated with the USER panic category.
33 Some of these numbers are also associated with panics raised on
34 the kernel side, and may be associated with
35 a number of category names, including KERN-COMMON, KERN-HEAP etc.
41 A thread has called User::Invariant().
43 Typically, User::Invariant() is called when a test for a class
44 invariant fails, i.e. when a test which checks that the internal data
45 of an object is self-consistent, fails.
47 Check the design and implementation of your class.
57 ETDateTimeUnderflow=1,
68 A TDateTime object has been constructed with an invalid date or time field.
72 ETDateTimeBadDateTime=3,
78 ETDateTimeAddDaysRange=4,
84 ETDateTimeAddMonthsRange=5,
90 ETDateTimeDaySecNegative=6,
94 A panic raised by the Ptr() member function of a 16-bit descriptor
95 if the descriptor is invalid.
99 ETDes16BadDescriptorType=7,
103 The length value passed to a 16-bit variant descriptor member
106 This panic may be raised by some descriptor constructors and, specifically,
107 by the Replace() and Set() descriptor member functions.
111 ETDes16LengthOutOfRange=8,
115 The index value passed to the 16-bit variant descriptor Operator[] is
118 ETDes16IndexOutOfRange=9,
122 The position value passed to a 16-bit variant descriptor member function
125 The panic can be raised by the Left(), Right(), Mid(), Insert(), Delete()
126 and Replace() member functions of TDes16.
130 ETDes16PosOutOfRange=10,
134 An operation to move or copy data to a 16-bit variant descriptor,
135 will cause the length of that descriptor to exceed its maximum length.
137 This may be caused by any of the copying, appending or formatting member
138 functions but, specifically, by the Insert(), Replace(), Fill(), Fillz(),
139 and ZeroTerminate() descriptor member functions. It can also be caused by
140 the SetLength() function.
148 The format string passed to the 16-bit variant descriptor member functions
149 Format() and AppendFormat() has incorrect syntax.
153 ETDes16BadFormatDescriptor=12,
157 An invalid variable list has been passed to the AppendFormatList() member
158 function of the 16-bit variant descriptor TDes16, when the format is %S or %s.
160 This panic is raised in debug builds only.
164 ETDes16BadFormatParams=13,
168 This panic is raised when expanding or contracting an HBufC16 buffer using
169 the ReAlloc() or ReAllocL() descriptor member functions and the new
170 specified length is too small to contain the data.
174 ETDes16ReAllocTooSmall=14,
180 ETDes16RemoteBadDescriptorType=15,
184 In a call to the Replace() member function of the 16-bit variant
185 descriptor TDes16,the length of the source descriptor is negative
186 or exceeds the maximum length of the target descriptor.
190 ETDes16RemoteLengthOutOfRange=16,
194 A 16-bit variant descriptor is being constructed with a negative
197 This panic may also be raised if the Set(), Repeat() and the Find() member
198 functions are passed negative length values.
200 ETDes16LengthNegative=17,
204 A 16-bit variant descriptor is being constructed with a negative maximum
207 ETDes16MaxLengthNegative=18,
211 A panic raised by the Ptr() member function of an 8-bit descriptor
212 if the descriptor is invalid.
216 ETDes8BadDescriptorType=19,
220 The length value passed to an 8-bit variant descriptor member
223 This panic may be raised by some descriptor constructors and, specifically,
224 by the Replace() and Set() descriptor member functions.
228 ETDes8LengthOutOfRange=20,
232 The index value passed to the 8-bit variant descriptor Operator[] is
235 ETDes8IndexOutOfRange=21,
239 The position value passed to an 8-bit variant descriptor member function
242 The panic can be raised by the Left(), Right(), Mid(), Insert(), Delete()
243 and Replace() member functions of TDes8
247 ETDes8PosOutOfRange=22,
251 An operation to move or copy data to an 8-bit variant descriptor,
252 will cause the length of that descriptor to exceed its maximum length.
254 This may be caused by any of the copying, appending or formatting member
255 functions but, specifically, by the Insert(), Replace(), Fill(), Fillz(),
256 and ZeroTerminate() descriptor member functions. It can also be caused by
257 the SetLength() function.
265 The format string passed to the 8-bit variant descriptor member functions
266 Format() and AppendFormat() has incorrect syntax.
270 ETDes8BadFormatDescriptor=24,
274 An invalid variable list has been passed to the AppendFormatList() member
275 function of the 8-bit variant descriptor TDes8, when the format is %S or %s.
277 This panic is raised in debug builds only.
281 ETDes8BadFormatParams=25,
285 This panic is raised when expanding or contracting an HBufC8 buffer using
286 the ReAlloc() or ReAllocL() descriptor member functions and the new
287 specified length is too small to contain the data.
291 ETDes8ReAllocTooSmall=26,
297 ETDes8RemoteBadDescriptorType=27,
302 In a call to the Replace() member function of the 8-bit variant
303 descriptor TDes8,the length of the source descriptor is negative
304 or exceeds the maximum length of the target descriptor.
308 ETDes8RemoteLengthOutOfRange=28,
312 An 8-bit variant descriptor is being constructed with a negative
315 This panic may also be raised if the Set(), Repeat() and the Find() member
316 functions are passed negative length values.
318 ETDes8LengthNegative=29,
322 An 8-bit variant descriptor is being constructed with a negative maximum
325 ETDes8MaxLengthNegative=30,
331 ETEntLeaveWithoutEnter=31,
335 It is raised by TRawEvent::Pos() when
336 the event is not a mouse/pen type event.
338 This panic is raised in debug builds only.
340 ETEventNotMoveType=32,
344 It is raised by TRawEvent::ScanCode() when
345 the event is not a key down, up or repeat event.
347 This panic is raised in debug builds only.
349 ETEventNotKeyType=33,
353 It is raised by TRawEvent::Modifiers() when
354 the event is not a modifier update event.
356 This panic is raised in debug builds only.
358 ETEventNotUpdateModifiersType=34,
362 This panic is raised by the default At() virtual member function of TKey.
364 The function is intended to be overridden by a derived class.
368 ETFuncTKeyVirtualAt=35,
372 This panic is raised by the default Swap() virtual member function of TSwap.
374 The function is intended to be overridden by a derived class.
378 ETFuncTSwapVirtualSwap=36,
382 The index value passed to the operator[] of a TUidType is negative
383 or is greater than or equal to KMaxCheckedUid.
388 ETFuncUidTypeBadIndex=37,
392 The length of the descriptor passed to the Set(TDesC8&) member function of TCheckedUid
393 is not equal to the size of a TCheckedUid object.
397 ETFuncCheckedUidBadSet=38,
401 The size specified of a new heap is smaller than the permitted minimum;
402 it must be at least the size of a RHeap object.
404 On the user side this is associated with the USER category; on the kernel side
405 this is associated with the KERN-HEAP category.
413 ETHeapCreateSizeTooSmall=40,
417 In a call to UserHeap::ChunkHeap(), the value defining the minimum length
418 of the heap is greater than the value defining the maximum length to
419 which the heap can grow.
423 ETHeapCreateMaxLessThanMin=41,
427 In a call to the RHeap member functions, AllocLen(), Free(), FreeZ(),
428 ReAlloc(), ReAllocL(), Adjust() and AdjustL(), a pointer passed to these
429 functions does not point to a valid cell.
431 On the user side this is associated with the USER category; on the kernel side
432 this is associated with the KERN-HEAP category.
434 ETHeapBadCellAddress=42,
438 In a call to the Adjust() and AdjustL() member functions of RHeap, a heap
439 cell is being shrunk and the amount by which the cell is being shrunk
440 is less than the current length of the cell.
442 ETHeapAdjustTooSmall=43,
446 In a call to the Free() and FreeZ() member functions of RHeap,the cell
447 being freed overlaps the next cell on the free list (i.e. the first cell
448 on the free list with an address higher than the one being freed).
450 ETHeapFreeBadNextCell=44,
454 In a call to the Free() and FreeZ() member functions of RHeap, the cell
455 being freed overlaps the previous cell on the free list (i.e. the last cell
456 on the free list with an address lower than the one being freed).
458 ETHeapFreeBadPrevCell=45,
462 In a call to the ReAlloc() and ReAllocL() member functions of RHeap, the
463 cell being reallocated overlaps the next cell on the free list (i.e. the
464 first cell on the free list with an address higher than the one being
467 ETHeapReAllocBadNextCell=46,
471 In a call to the Alloc(), AllocL() or AllocLC() member functions of RHeap,
472 an attempt has been made to allocate a cell from a heap, using an unsigned
473 size value which is greater than or equal to the value of KMaxTInt/2.
475 This panic may also be raised by the heap walker when it finds a bad
476 allocated heap cell size.
479 @see RAllocator::Check()
482 ETHeapBadAllocatedCellSize=47,
486 This panic is raised by the heap walker when it finds a bad
487 allocated heap cell address.
489 ETHeapBadAllocatedCellAddress=48,
493 This panic is raised by the heap walker when it finds a bad
494 free heap cell address.
496 ETHeapBadFreeCellAddress=49,
502 ETHeapDebugBufferOverflow=50,
506 A call has been made to the __DbgMarkEnd() member function of RHeap, when
507 there has been no corresponding call to the __DbgMarkStart() member function.
509 This panic is also raised when there are more calls to __DbgMarkEnd() than
510 to __DbgMarkStart(). These functions are part of the debug assistance provided by
513 This panic is raised in debug builds only.
515 ETHeapDebugUnmatchedCallToCheckHeap=51,
519 In a call to the Adjust() and AdjustL() member functions of an RHeap,
520 the offset from the start of the cell being stretched or shrunk is
523 ETHeapAdjustOffsetNegative=52,
529 ETHeapAllocSizeNegative=53,
533 In a call to the ReAlloc() and ReAllocL() member functions of an RHeap,
534 the new size for the cell being reallocated is a negative value.
536 ETHeapReAllocSizeNegative=54,
540 This panic is caused by the UserHeap::ChunkHeap() static function when
541 the value defining the minimum length of the heap is negative.
543 ETHeapMinLengthNegative=55,
547 This panic is caused by the UserHeap::ChunkHeap() static function when
548 the value defining the maximum length to which the heap can grow,
551 ETHeapMaxLengthNegative=56,
555 This panic is raised when closing a shared heap using the Close() member
556 function of RHeap and the access count is zero or negative.
558 A zero or negative access count suggests that an attempt is being made
559 to close the heap too many times.
561 EAllocatorClosedTooManyTimes=57,
565 This panic is raised when opening a heap for shared access using the Open()
566 member function of RHeap and the heap type is not EChunkNormal.
568 ETHeapOnlyChunkHeaps=58,
572 This panic is raised by the UnGet() member function of the 8-bit variant
573 lexical analyzer, TLex8, if the character position is already at
574 the start of the string.
578 ETLex8UnGetUnderflow=59,
582 This panic is raised by the Inc() member function of the 8-bit variant
583 lexical analyzer, TLex8, if the resulting character position lies before
584 the start of the string or after the end of the string.
588 ETLex8IncOutOfRange=60,
592 This panic is raised by the SkipAndMark() member function of the 8-bit
593 variant lexical analyzer, TLex8, if the resulting character position lies
594 before the start of the string, or after the end of the string.
598 ETLex8SkipOutOfRange=61,
604 ETLex8BadFormatList=62,
608 This panic is raised by the ValidateMark() member function of the 8-bit
609 variant lexical analyzer, TLex8, if the position of the extraction mark
610 lies before the start of the string or after the end of the string.
614 ETLex8MarkOutOfRange=63,
618 This panic is raised by the UnGet() member function of the 16-bit variant
619 lexical analyzer, TLex16, if the character position is already at the start
624 ETLex16UnGetUnderflow=64,
628 This panic is raised by the Inc() member function of the 16-bit variant
629 lexical analyzer, TLex16, if the resulting character position lies before
630 the start of the string or after the end of the string.
634 ETLex16IncOutOfRange=65,
638 This panic is raised by the SkipAndMark() member function of the 16-bit
639 variant lexical analyzer, TLex16, if the resulting character position lies
640 before the start of the string or after the end of the string.
644 ETLex16SkipOutOfRange=66,
650 ETLex16BadFormatList=67,
654 This panic is raised by the ValidateMark() member function of the 16-bit
655 variant lexical analyzer, TLex16, if the position of the extraction mark
656 lies before the start of the string or after the end of the string.
660 ETLex16MarkOutOfRange=68,
664 This panic is raised by the TDateSuffix constructor or its Set() member
665 function when the suffix index specified is negative or is greater than or
666 equal to the value KMaxSuffixes.
668 The index is used to access a locale dependent table of suffix characters,
669 which can be appended to the dates of the month (e.g. the characters "st"
670 for 1st, "nd" for 2nd, "st" for 31st).
675 ETLoclSuffixOutOfRange=69,
679 This panic is raised when attempting to complete a client/server request
680 and the RMessagePtr is null.
688 EMesBadRetryCount=71,
692 This panic is raised by the Send() and SendReceive() member functions
693 of RSessionBase, the client interface for communication with a server,
694 when the specified operation code identifying the required service is
695 either negative or a value greater than KMaxTint.
700 ETMesBadFunctionNumber=72,
704 This panic is raised by the Receive() member function of RServer,
705 the handle to the server, when the attempt to receive a message
706 for the server, synchronously, fails.
710 ETMesReceiveFailed=73,
716 ESQueOffsetNegative=74,
720 This panic is raised by the constructor of a singly linked list header,
721 a TSglQue or by the SetOffset() member function when the specified offset
722 is not 4 byte aligned, i.e. when it is not divisible by 4.
726 ESQueOffsetNotAligned=75,
730 This panic is raised when attempting to remove an object from a singly
731 linked list, using the Remove() member function of TSglQue, when
732 that object is not in the list.
736 ESQueLinkNotQueued=76,
742 ETQueOffsetNegative=77,
746 This panic is raised by the constructor of a doubly linked list header,
747 a TDblQue or by the SetOffset() member function, when the specified
748 offset is not 4 byte aligned, i.e. when it is not divisible by 4.
752 ETQueOffsetNotAligned=78,
756 This panic is raised by a call to either the First() or the Last() member
757 functions of a doubly linked list, a TDblQue, which return pointers
758 to the first and last element in the list respectively; the panic
759 occurs when the list is empty.
761 This panic is raised in debug builds only.
769 This panic is raised by the post increment operator, operator++, the post
770 decrement operator, operator- and the return current element
771 operator, operator T*, of the doubly linked list iterator, a TDblQueIter;
772 the panic occurs when the element returned by these operators is not in
775 Typically, this is caused by the removal of the element from the list prior
776 to calling these operators.
778 This panic is raised in debug builds only.
782 ETQueLinkHasBeenRemoved=80,
786 This panic is raised by the get rectangle operator, operator[], of
787 a clipping region, derived from the abstract base class TRegion.
789 The panic occurs when the index, which refers to the specific rectangle
790 within the region, is greater than or equal to the number of rectangles
791 contained within the region (as returned by the Count() member function).
793 The index must be strictly less than the number of contained rectangles.
797 ETRegionOutOfRange=81,
801 This panic is raised when sorting the rectangles within a clipping region,
802 derived from the abstract base class TRegion, using the Sort() member
805 The panic occurs when the region is invalid.
807 This panic is raised in debug builds only.
811 ETRegionInvalidRegionInSort=82,
815 This panic occurs when the Kernel sends a message to the Kernel server
816 and this completes with an error, i.e. an error code which is not KErrNone.
818 ETUtlKernelServerSend=83,
822 This panic is raised by the Panic() member function of RTest, the test class.
828 This panic is raised by the CheckConsoleCreated() member functions of
829 RTest and RTestJ, the test classes, when the creation of a console,
830 as derived from a CConsoleBase, fails.
832 ERTestCreateConsole=85,
836 This panic is raised by the static function User::After() when
837 the specified time interval is negative.
839 EExecAfterTimeNegative=86,
843 This panic is raised when the time interval passed to the After() member
844 function of RTimer is negative.
848 ERTimerAfterTimeNegative=87,
852 This panic is raised by Mem::Compare(), Mem::CompareC() and Mem::CompareF()
853 when the length of the area of memory designated as the left hand area,
856 This panic is raised in debug builds only.
858 On the user side this is associated with the USER category; on the kernel side
859 this is associated with the KERN-COMMON category.
867 This panic is raised by Mem::Compare(), Mem::CompareC() and Mem::CompareF()
868 when the length of the area of memory designated as the right hand area,
871 This panic is raised in debug builds only.
873 On the user side this is associated with the USER category; on the kernel side
874 this is associated with the KERN-COMMON category.
878 EMemRightNegative=89,
882 This panic is raised by Mem::Copy() when the length of the area of memory
883 to be copied is negative.
885 This panic is raised in debug builds only.
887 On the user side this is associated with the USER category; on the kernel side
888 this is associated with the KERN-COMMON category.
892 EMemCopyLengthNegative=90,
896 This panic is raised by Mem::Move() when the length of the area of memory
897 to be moved is not a multiple of 4.
899 This panic is raised in debug builds only.
901 On the user side this is associated with the USER category; on the kernel side
902 this is associated with the KERN-COMMON category.
906 EWordMoveLengthNotMultipleOf4=91,
910 This panic is raised by Mem::Move() when the address of the source for
911 the move operation is not aligned on a 4 byte boundary.
913 This panic is raised in debug builds only.
915 On the user side this is associated with the USER category; on the kernel side
916 this is associated with the KERN-COMMON category.
920 EWordMoveSourceNotAligned=92,
924 This panic is raised by Mem::Move() when the address of the target for
925 the move operation is not aligned on a 4 byte boundary.
927 This panic is raised in debug builds only.
929 On the user side this is associated with the USER category; on the kernel side
930 this is associated with the KERN-COMMON category.
934 EWordMoveTargetNotAligned=93,
938 This panic is raised by Mem::Swap() when the length of the area of
939 memory to be swapped is negative.
941 This panic is raised in debug builds only.
943 On the user side this is associated with the USER category; on the kernel side
944 this is associated with the KERN-COMMON category.
948 EMemSwapLengthNegative=94,
952 This panic is raised by Mem::Fill() and Mem::FillZ() when the length of
953 the area of memory to be filled is negative.
955 This panic is raised in debug builds only.
957 On the user side this is associated with the USER category; on the kernel side
958 this is associated with the KERN-COMMON category.
962 EMemFillLengthNegative=95,
966 The value for the number of records to be sorted passed
967 to User::QuickSort() is negative.
971 ESortCountNegative=96,
975 The value for the number of records taking part in the search passed
976 to User::BinarySearch() is negative.
980 EBinarySearchCountNegative=97,
984 This panic is raised by the constructor of the base key class, TKey.
986 It occurs when the offset value passed to the constructor is negative.
987 As TKey is an abstract class, i.e. objects of type TKey are not intended
988 to be explicitly constructed, look at the offset value passed to
989 the constructors of derived classes such as TKeyArrayFix, TKeyArrayVar,
990 and TKeyArrayPak for the cause of the panic.
997 EKeyOffsetNegative=98,
1001 This panic is raised when a local or global chunk is created using
1002 the RChunk member functions: CreateLocal(), CreateGlobal(),
1003 CreateDoubleEndedLocal() and CreateDoubleEndedGlobal().
1005 It occurs when the value for the maximum size to which this chunk can
1006 be adjusted, is negative.
1010 EChkCreateMaxSizeNegative=99,
1014 This panic is raised when a local or global chunk is created using
1015 the RChunk member functions: CreateLocal() and CreateGlobal().
1017 It occurs when the value for the number of bytes to be committed to
1018 this chunk on creation, is negative.
1022 EChkCreateSizeNotPositive=100,
1026 This panic is raised when a local or global chunk is created using
1027 the RChunk member functions: CreateLocal() and CreateGlobal().
1029 It occurs when the value for the number of bytes to be committed to
1030 this chunk on creation is greater than the value for the maximum size
1031 to which this chunk can be adjusted.
1035 EChkCreateMaxLessThanMin=101,
1039 This panic is raised when changing the number of bytes committed to a chunk
1040 by calling the Adjust() member function of RChunk.
1042 The panic occurs when the value passed to the function is negative.
1046 EChkAdjustNewSizeNegative=102,
1052 ESesDelayTimeNegative=103,
1058 ESesRetryCountNegative=104,
1062 This panic is raised when a local or global semaphore is created using
1063 the RSemaphore member functions: CreateLocal() and CreateGlobal(), and
1064 the value for the initial semaphore count is negative.
1068 ESemCreateCountNegative=105,
1072 This panic is raised when a semaphore is signaled using
1073 the Signal(TInt aCount) member function and the count value is negative.
1077 ESemSignalCountNegative=106,
1081 This panic is raised when a critical section is signalled using
1082 the Signal() member function and the call to Signal() is not matched
1083 by an earlier call to Wait(), which suggests that this is a stray signal.
1085 @see RCriticalSection
1087 ECriticalSectionStraySignal=107,
1093 EThrdHeapNotChunkType=108,
1097 This panic is raised when creating a thread using the Create() member
1098 functions of RThread.
1100 The panic occurs when the value of the stack size passed to
1101 these functions is negative.
1105 EThrdStackSizeNegative=109,
1109 This panic is raised when creating a thread using the Create() member
1110 functions of RThread.
1112 The panic is only raised by those variants of Create() that create a new
1113 heap for the new thread. The panic occurs if the minimum heap size
1114 specified is less than KMinHeapSize.
1119 EThrdHeapMinTooSmall=110,
1123 This panic is raised when creating a thread using the Create() member
1124 functions of RThread.
1126 The panic is only raised by those variants of Create() which create a new
1127 heap for the new thread. The panic occurs if the minimum heap size
1128 specified is greater than the maximum size to which the heap can grow.
1132 EThrdHeapMaxLessThanMin=111,
1136 This panic is raised by the Alloc() and AllocL() member functions of class
1137 RRef when the size value passed is negative.
1139 ERefAllocSizeNegative=112,
1143 This panic is raised by:
1145 1. the constructor of a time representation object, a TTime, which takes
1146 a text string, when the format of that text string is incorrect
1147 or represents an invalid date/time.
1149 2. the Parse() member function of a time representation object, a TTime,
1150 if the century offset value is either negative or is greater than
1153 3. the Time::DaysInMonth() function, if an invalid month value is passed.
1158 ETTimeValueOutOfRange=113,
1162 This panic is raised by member functions of TBusLocalDrive when no
1163 connection has been made to a local drive.
1165 This panic is raised in debug builds only.
1169 EDriveNotConnected=114,
1173 This panic is raised when attempting to connect to a local drive
1174 using the Connect() member function of TBusLocalDrive, and
1175 the specified drive number is out of range, i.e. the drive number
1176 is negative or is greater than or equal to KMaxLocalDrives.
1179 @see KMaxLocalDrives
1181 EDriveOutOfRange=115,
1185 This panic is raised by the Lookup() member function of RLibrary when
1186 the ordinal number of the required DLL function, is zero or negative.
1190 EBadLookupOrdinal=116,
1196 EChunkHeapBadOffset=117,
1202 ETQueLinkAlreadyInUse=118,
1206 This panic is raised when setting a new currency symbol using
1207 the User::SetCurrencySymbol() function.
1209 The panic occurs when the length of the descriptor containing
1210 the new symbol is greater than KMaxCurrencySymbol.
1213 @see KMaxCurrencySymbol
1215 ECurrencySymbolOverflow=119,
1219 This panic is raised by the CreateDoubleEndedLocal()
1220 and CreateDoubleEndedGlobal() member functions of RChunk when the lower
1221 address of the committed region is negative.
1225 EChkCreateBottomNegative=120,
1229 This panic is raised by the CreateDoubleEndedLocal()
1230 and CreateDoubleEndedGlobal() member functions of RChunk when the upper
1231 address of the committed region is negative.
1235 EChkCreateTopNegative=121,
1239 This panic is raised by the CreateDoubleEndedLocal()
1240 and CreateDoubleEndedGlobal() member functions of RChunk when the upper
1241 address of the committed region is lower than the lower address of
1242 the committed region.
1246 EChkCreateTopLessThanBottom=122,
1250 This panic is raised by the CreateDoubleEndedLocal()
1251 and CreateDoubleEndedGlobal() member functions of RChunk when the upper
1252 address of the committed region is lower than the maximum size to which
1253 this chunk can be adjusted.
1257 EChkCreateTopBiggerThanMax=123,
1261 This panic is raised by RChunk::AdjustDoubleEnded() when the lower address
1262 of the committed region is negative.
1266 EChkAdjustBottomNegative=124,
1270 This panic is raised by RChunk::AdjustDoubleEnded() when the upper address
1271 of the committed region is negative.
1275 EChkAdjustTopNegative=125,
1279 This panic is raised by RChunk::AdjustDoubleEnded() when the upper address
1280 of the committed region is lower than the lower address of the committed
1285 EChkAdjustTopLessThanBottom=126,
1289 This panic is raised when constructing an array of pointers,
1290 an RPointerArray, and specifying a granularity value which is
1291 one of the following:
1297 3. greater than 0x10000000.
1301 EBadArrayGranularity=127,
1305 This panic is raised when constructing an array of fixed length objects,
1306 an RArray, and specifying a key offset value which is one of the following:
1310 2. not a multiple of 4
1312 3. greater than or equal to the size of the array elements.
1316 EBadArrayKeyOffset=128,
1320 This panic is raised when constructing an array of fixed length objects,
1321 an RArray, and the length of the array elements is one of the following:
1327 3. greater than 640.
1331 EBadArrayEntrySize=129,
1335 This panic is raised when an index value passed to a member function
1336 of RArray or RPointerArray identifying an array element, is out of bounds.
1345 This panic is raised when the value identifying the insertion position
1346 in a call to RArray::Insert() or RPointerArray::Insert(), is either
1347 negative or greater than the number of elements in the array.
1352 EBadArrayPosition=131,
1356 This panic is raised when an index value passed to
1357 Mem::CollationMethodByIndex() or Mem::CollationMethodId() is out of bounds.
1361 EBadCollationRulesIndex=132,
1365 This panic is raised when an index value passed to TFixedArray::At()
1366 or TFixedArray::operator[] is out of bounds.
1370 EBadFixedArrayIndex=133,
1376 ERawEventFlipTypeNotImplemented=134,
1382 ENumberOfParametersExceedsMaximum=136,
1386 This panic is raised internally by the descriptor formatting functions during the handling
1387 of the variable parameter lists when the parameter is too big.
1389 ESizeOfParameterTooBig=137,
1393 This panic is raised internally by the descriptor formatting functions
1394 during the handling of the variable parameter lists when an index value
1395 for the parameters is outside its permitted range.
1397 EParameterIndexOutOfRange1=138,
1401 This panic is raised internally by the descriptor formatting functions
1402 during the handling of the variable parameter lists when an index value
1403 for the parameters is outside its permitted range.
1405 This panic is raised in debug mode only.
1407 EParameterIndexOutOfRange2=139,
1411 This panic is raised internally by the descriptor formatting functions
1412 during the handling of the variable parameter lists.
1414 EFormatDirectiveAlreadySet1=140,
1418 This panic is raised internally by the descriptor formatting functions
1419 during the handling of the variable parameter lists.
1421 EFormatDirectiveAlreadySet2=141,
1425 This panic is raised internally by the descriptor formatting functions
1426 during the handling of the variable parameter lists.
1428 ENumberOfFormatDirectivesExceedsMaximum=142,
1432 This panic is raised internally by the descriptor formatting functions
1433 during the handling of the variable parameter lists.
1435 ENoParametersInFormatDirective=143,
1439 This panic is raised internally by the descriptor formatting functions
1440 during the handling of the variable parameter lists.
1442 EFormatDirectiveNotYetSet=144,
1446 This panic is raised internally by the descriptor formatting functions
1447 during the handling of the variable parameter lists.
1449 EBadFormatDirectiveDataPointer=145,
1453 This panic is raised internally by the descriptor formatting functions
1454 during the handling of the variable parameter lists.
1456 EFormatDirectiveIndexOutOfRange=146,
1460 This panic is raised internally by the descriptor formatting functions
1461 during the handling of the variable parameter lists.
1463 ENotOnFirstPassOfFormatDescriptor1=147,
1467 This panic is raised internally by the descriptor formatting functions
1468 during the handling of the variable parameter lists.
1470 ENotOnFirstPassOfFormatDescriptor2=148,
1474 This panic is raised internally by the descriptor formatting functions
1475 during the handling of the variable parameter lists.
1477 EInconsistentSizeOfParameter=149,
1481 This panic is raised internally by the descriptor formatting functions
1482 during the handling of the variable parameter lists.
1484 ENullTargetPointer=150,
1488 This panic is raised internally by the descriptor formatting functions
1489 during the handling of the variable parameter lists.
1491 ENegativeSizeOfParameter=151,
1495 This panic is raised internally by the descriptor formatting functions
1496 during the handling of the variable parameter lists.
1498 EErrorOnSecondPassOfFormatDescriptor=152,
1502 This panic is raised internally by the descriptor formatting functions
1503 during the handling of the variable parameter lists.
1505 EUnexpectedError1=153,
1509 This panic is raised internally by the descriptor formatting functions
1510 during the handling of the variable parameter lists.
1512 EUnexpectedError2=154,
1518 ECreateTransferBufferSizeNotPositive=155,
1522 This panic occurs in the construction of an RPointerArray object from
1523 an existing pointer array object, when the number defining the number
1524 of entries in the existing array is not positive.
1532 This panic is raised by RChunk::Commit() when the value of the offset of
1533 the committed region is negative.
1537 EChkCommitOffsetNegative=157,
1541 This panic is raised by RChunk::Commit() when the size of the
1542 the committed region is negative.
1546 EChkCommitSizeNegative=158,
1550 This panic is raised by RChunk::Allocate() when the size of the
1551 the committed region is negative.
1555 EChkAllocateSizeNegative=159,
1559 This panic is raised by RChunk::Decommit() when the value of the offset of
1560 the committed region is negative.
1564 EChkDecommitOffsetNegative=160,
1568 This panic is raised by RChunk::Decommit() when the size of the
1569 the committed region is negative.
1573 EChkDecommitSizeNegative=161,
1577 This panic is raised when an invalid chunk type has been passed to
1578 the internal member RChunk::Create()
1582 EChkCreateInvalidType=162,
1586 This panic is raised when a global chunk is being created and
1587 no name has been specified.
1591 EChkCreateInvalidName=163,
1595 This panic is raised when creating a 'normal' chunk and the offset of the bottom of the new committed region
1596 from the base of the chunk's reserved region is not zero.
1600 EChkCreateInvalidBottom=164,
1604 This panic is raised by the internal function RLibrary::Init() when the function that
1605 constructs static data following a DLL load, leaves.
1607 EDllStaticConstructorLeave=165,
1611 This panic is raised internally, if a call to the static data destructors
1612 following a library handle close, leaves.
1614 EDllStaticDestructorLeave=166,
1618 This panic is raised in a call to RAllocator::Close() when the number of
1619 handles is greater than the maximum allowed, RAllocator::EMaxHandles.
1623 EAllocatorBadHandleCount=167,
1627 This panic is raised by the internal RHeap constructor when the offset value is invalid.
1629 ETHeapNewBadOffset=168,
1633 This panic is raised by the Symbian internal function RHeap::Reduce() on failure.
1635 ETHeapReduceFailed=169,
1639 This panic is raised by the Symbian internal function RHeap::Reset() on failure.
1641 ETHeapResetFailed=170,
1645 This panic is raised by the Symbian internal function RHeap::WalkCheckCell() on a
1648 ETHeapBadFreeCellSize=171,
1652 This panic is raised by the Symbian internal function RHeap::Initialise() on a
1653 bad alignment value.
1655 ETHeapNewBadAlignment=172,
1661 ETHeapBadDebugOp=173,
1665 This panic is raised when an unimplemented pure virtual function is called.
1667 EPureVirtualCalled=174,
1671 This panic is raised when a User::Leave() is called and there
1674 EUserLeaveWithoutTrap=175,
1678 This panic is raised when a mathematical function fails with an
1679 unrecognized exception, i.e. one that is none of: KErrArgument,
1680 KErrDivideByZero, KErrOverflow or KErrUnderflow.
1682 EMathUnknownError=176,
1686 This panic is raised by the Symbian internal function RHeap::WalkCheckCell() on a
1689 ETHeapWalkBadCellType=177,
1693 This panic is raised when descriptors convert integers into text, and
1694 an invalid radix is passed, i.e. a value that is not one
1695 of the TRadix enum values.
1701 This panic is raised when converting and appending numbers in descriptors,
1702 and buffers are not aligned on even addresses.
1704 This panic is raised in debug builds only.
1706 EDes16PadAppendBadAlign=179,
1712 EMsgQueueSizeInvalid=180,
1718 EHuffmanTooManyCodes=181,
1724 EHuffmanInvalidCoding=182,
1730 EBadArrayFindMode=183,
1734 In a call to RNotifier::Notify(), the length of one or more of
1735 the descriptors containing the displayable text is bigger than
1736 the maximum TUint16 value.
1738 ENotifierTextTooLong=184,
1742 In a call to one of the functions:
1744 TMonthNameAbb::Set()
1748 the month or day value is outside the permitted range of values.
1755 EBadLocaleParameter=185,
1759 This panic is raised internally by the descriptor formatting functions
1760 during the handling of the variable parameter lists.
1762 EUnexpectedError3=186,
1766 In a call to TDes8::Expand(), either the length, or the maximum length,
1767 or the pointer to the data is not an even number.
1775 In a call to TDes8::Collapse(), either the length, or the maximum length,
1776 or the pointer to the data is not an even number.
1780 EDes8CollapseOdd=188,
1784 In a call to one of the TSecurityPolicy constructors, the specified
1785 capability was found to be inavlid.
1789 ECapabilityInvalid=189,
1793 In a call to TSecurityPolicy::CheckPolicy, the security policy was found to
1796 @see TSecurityPolicy
1798 ESecurityPolicyCorrupt=190,
1802 In a call to TSecurityPolicy::TSecurityPolicy(TSecPolicyType aType), aType
1803 was not one of ETypePass or ETypeFail.
1805 @see TSecurityPolicy
1807 ETSecPolicyTypeInvalid=191,
1810 This panic is raised when constructing an RPointerArray or RArray if the
1811 specified minimum growth step is less than or equal to zero or is greater
1817 EBadArrayMinGrowBy=192,
1821 This panic is raised when constructing an RPointerArray or RArray if the
1822 specified exponential growth factor is less than or equal to 1 or is
1823 greater than or equal to 128.
1828 EBadArrayFactor=193,
1832 This panic is raised if code inside an __ASSERT_*_NO_LEAVE harness leaves.
1837 EUnexpectedLeave=194,
1841 A function was used to grow a cell on the heap, but it did not grow as expected.
1843 ETHeapCellDidntGrow=195,
1847 An attempt was made to install a Win32 SE handler not on the stack.
1851 EWin32SEHandlerNotOnStack=196,
1854 This panic is raised when the caller of an API doesn't have the right capabilities to
1855 call the specific API that raises this panic. Please consult the documentation for the
1856 API in question to learn what capabilities you need to call it.
1858 EPlatformSecurityViolation=197,
1861 This panic is raised if a NULL function pointer is passed in as the hash function
1862 when constructing a hash table class.
1864 EHashTableNoHashFunc=198,
1867 This panic is raised if a NULL function pointer is passed in as the identity
1868 relation when constructing a hash table class.
1870 EHashTableNoIdentityRelation=199,
1873 This panic is raised if a negative element size is specified when constructing
1876 EHashTableBadElementSize=200,
1879 This panic is raised if, when constructing a hash table class, the specified
1880 key offset is inconsistent with the specified element size.
1882 EHashTableBadKeyOffset=201,
1885 This panic is raised in debug builds only if a deleted entry still remains after
1886 a hash table reform. It should never occur, since it signifies an error in the
1887 hash table implementation.
1889 EHashTableDeletedEntryAfterReform=202,
1892 This panic should never occur since it signifies an error in the hash table
1895 EHashTableBadGeneration=203,
1898 This panic should never occur since it signifies an error in the hash table
1901 EHashTableBadHash=204,
1904 This panic should never occur since it signifies an error in the hash table
1907 EHashTableEntryLost=205,
1910 This panic should never occur since it signifies an error in the hash table
1913 EHashTableCountWrong=206,
1916 This panic should never occur since it signifies an error in the hash table
1919 EHashTableEmptyCountWrong=207,
1922 This panic is raised if, while attempting to step a hash table iterator to
1923 the next entry, the iterator is found to point to an invalid table entry.
1924 This will typically occur if elements have been removed from the hash table
1925 without resetting the iterator.
1927 EHashTableIterNextBadIndex=208,
1930 This panic is raised if, while interrogating the current position of a
1931 hash table iterator, the iterator is found to point to an invalid table entry.
1932 This will typically occur if elements have been added to or removed from
1933 the hash table without resetting the iterator.
1935 EHashTableIterCurrentBadIndex=209,
1938 This panic is raised if an invalid argument is passed to the Reserve() function
1939 on any of the hash table classes.
1941 EHashTableBadReserveCount=210,
1944 The Win32 SE handler chain has been corrupted.
1948 EWin32SEHChainCorrupt=211,
1952 This panic is raised if an invalid argument is passed to the Reserve() function
1953 on the RArray<T> or RPointerArray<T> classes.
1955 EArrayBadReserveCount=212,
1958 This panic is raised when attempting to set a new debug failure mode on
1959 a heap with an invalid argument. For example, if aBurst > KMaxTUint6
1960 when invoking __UHEAP_BURSTFAILNEXT when a RHeap object is used for
1963 On the user side this is associated with the USER category; on the kernel side
1964 this is associated with the KERN-HEAP category.
1966 @see RAllocator::TAllocFail
1968 ETHeapBadDebugFailParameter = 213,
1972 This panic is raised when an invalid chunk attribute has been passed to
1973 the method RChunk::Create().
1977 EChkCreateInvalidAttribute = 214,
1981 This panic is raised when a TChunkCreateInfo object with an invalid version
1982 number has been passed to the method RChunk::Create().
1985 @see TChunkCreateInfo
1987 EChkCreateInvalidVersion = 215,
1991 This panic is raised when an invalid flag is set in the aMode parameter
1992 to UserHeap::ChunkHeap().
1994 @see TChunkHeapCreateMode
1996 EHeapCreateInvalidMode = 216,
2000 This panic is raised when a RReadWriteLock is created with an invalid
2005 EReadWriteLockInvalidPriority = 217,
2009 This panic is raised when a RReadWriteLock is closed with readers/writers
2014 EReadWriteLockStillPending = 218,
2018 This panic is raised when a RReadWriteLock is requested with too many
2019 readers or pending readers/writers.
2023 EReadWriteLockTooManyClients = 219,
2027 This panic is raised when a RReadWriteLock is unlocked but the lock flags
2028 are inconsistent, eg read and write lock held or no lock held.
2032 EReadWriteLockBadLockState = 220,
2036 This debug-only panic is raised if the lock has been given to a reader
2037 more than a thousand times in a row, while there is a pending writer.
2038 It is intended to give a debug indication that writer starvation might be
2043 EReadWriteLockWriterStarvation = 221,
2046 It is raised by TRawEvent::Repeats() when
2047 the event is not a key repeat event.
2049 This panic is raised in debug builds only.
2051 ETEventNotKeyRepeatType=222,
2054 This panic is raised when a corrupt surrogate is found in a descriptor.
2056 ECorruptSurrogateFound = 223,
2063 Defines a set of panic numbers associated with the E32USER-CBASE panic category.
2065 Panics with this category are raised in user side code by member functions of
2066 CBase derived classes that reside in euser.dll. Typically, they are caused by
2067 passing bad or contradictory values to class constructors or member functions.
2073 This panic is raised by the Set() member function of CAsyncCallBack,
2074 if this active object is already active when the function is called.
2078 ECAsyncCBIsActive=1,
2082 This panic is raised by the Call() member function of CAsyncOneShot,
2083 if the active object has not already been added to the active scheduler.
2085 This panic is raised in debug builds only.
2089 ECAsyncOneShotNotAdded=2,
2093 This panic is raised during construction of a dynamic buffer,
2094 a CBufFlat or a CBufSeg object, when the value of the granularity passed
2095 to the constructors is negative.
2100 EBufExpandSizeNegative=3,
2104 This panic is raised when reading from a dynamic buffer,
2105 a CBufFlat or a CBufSeg, using the Read() member function.
2107 It is caused by attempting to read beyond the end of the buffer.
2112 EBufReadBeyondEnd=4,
2116 This panic is raised when writing to a dynamic buffer,
2117 a CBufFlat or a CBufSeg, using the Write() member function.
2119 It is caused by attempting to write beyond the end of the buffer.
2124 EBufWriteBeyondEnd=5,
2128 This panic is raised when reading from a dynamic buffer,
2129 a CBufFlat or a CBufSeg, using the Read() member function.
2131 It is caused by specifying a negative length for the amount of data
2137 EBufReadLengthNegative=6,
2141 This panic is raised when writing to a dynamic buffer,
2142 a CBufFlat or a CBufSeg, using the Write() member function.
2144 It is caused by specifying a negative length for the amount of data
2150 EBufWriteLengthNegative=7,
2154 This panic is raised when inserting data into a dynamic buffer,
2155 a CBufFlat or a CBufSeg, using the InsertL() member function or when
2156 inserting an uninitialized region into the dynamic buffer using
2157 the ExpandL() member function.
2159 It is caused by passing a negative length value to these functions.
2164 EBufInsertLengthNegative=8,
2168 This panic is raised when inserting data into a dynamic buffer,
2169 a CBufFlat or a CBufSeg, using the InsertL() member function.
2171 It is caused when the variant of InsertL(), which takes a pointer to TAny
2172 is passed a NULL pointer value.
2181 This panic is raised when specifying the minimum amount of space
2182 that a flat dynamic buffer, a CBufFlat, should occupy using
2183 the SetReserveL() member function.
2185 It is caused when the size value passed to the function is negative.
2189 EBufFlatReserveNegative=10,
2193 This panic is raised when specifying the minimum amount of space
2194 that a flat dynamic buffer, a CBufFlat, should occupy using
2195 the SetReserveL() member function.
2197 It is caused when the size value passed to the function is less than
2198 the current size of the buffer.
2202 EBufFlatReserveSetTooSmall=11,
2206 This panic is raised by the Delete(), Ptr(), BackPtr() member functions
2207 of a flat dynamic buffer, a CBufFlat; the panic can also be raised by
2208 InsertL() and ExpandL().
2210 It is caused when the position value passed to these functions is either
2211 negative or represents a position beyond the end of the current buffer.
2215 EBufFlatPosOutOfRange=12,
2219 This panic is raised by the Delete() member function of
2220 a flat dynamic buffer, a CBufFlat.
2222 It is caused when the combination of position and length values passed
2223 to the function implies an attempt to delete data beyond the end of
2228 EBufFlatDeleteBeyondEnd=13,
2232 This panic is raised by the Delete(), Ptr(), BackPtr() member functions
2233 of a segmented dynamic buffer, a CBufSeg); the panic can also be raised
2234 by InsertL() and ExpandL().
2236 It is caused when the position value passed to these functions is either
2237 negative or represents a position beyond the end of the current buffer.
2241 EBufSegPosOutOfRange=14,
2245 This panic is raised by the Delete() member function of a segmented dynamic
2248 It is caused when the combination of position and length values passed to
2249 the function implies an attempt to delete data beyond the end of
2250 the segmented buffer.
2254 EBufSegDeleteBeyondEnd=15,
2258 This panic is raised by the InsertL(), Delete(), Ptr() and BackPtr() member
2259 functions as implemented for segmented buffers, CBufSeg, when
2260 the offset within a segment, where data is to be inserted or removed,
2261 is greater than the buffer granularity.
2263 This panic is raised in debug builds only.
2271 This panic is raised by the constructors of arrays of fixed length objects
2272 as represented, for example, by the classes CArrayFixFlat, CArrayFixSeg,
2273 and CArrayFixFlat<TAny>.
2275 It is caused when the record length is either negative or zero. The record
2276 length is either explicitly specified, as in the case of
2277 the CArrayFixFlat<TAny> class, or is implied by the length of the template
2278 class as in the case of the CArrayFixFlat class.
2283 EArrayFixInvalidLength=17,
2287 This panic is raised by the constructors of arrays of fixed length objects
2288 as represented, for example, by the classes: CArrayFixFlat and CArrayFixSeg.
2290 It is caused when the granularity passed to the constructors is
2291 either negative or zero.
2296 EArrayFixInvalidGranularity=18,
2300 This panic is raised by the constructors of arrays of variable length
2301 objects as represented, for example, by the classes: CArrayVarFlat
2304 It is caused when the granularity passed to the constructors is either
2310 EArrayVarInvalidGranularity=19,
2314 This panic is raised by the constructors of packed arrays as represented,
2315 for example, by the class CArrayPakFlat.
2317 It is caused when the granularity passed to the constructors is either
2322 EArrayPakInvalidGranularity=20,
2326 This panic is raised by any operation which accesses an element of an array
2327 by explicit reference to an index number, for example, the Delete(),
2328 InsertL() and At() member functions or the operator Operator[].
2330 It is caused by specifying an index value which is either negative,
2331 or is greater than or equal to the number of objects currently within the array.
2333 EArrayIndexOutOfRange=21,
2337 This panic is raised when deleting contiguous elements from an array of
2338 fixed length objects (derived from CArrayFixBase) using the Delete()
2341 It is caused by specifying the number of contiguous elements as
2342 a zero or negative value.
2344 EArrayCountNegative=22,
2348 This panic is raised when inserting contiguous elements into an array
2349 of fixed length objects (derived from CArrayFixBase) using the
2350 InsertL() member function.
2352 It is caused by specifying the number of contiguous elements as
2353 a zero or negative value.
2355 EArrayCountNegative2=23,
2359 This panic is raised when resizing an array of fixed length objects
2360 (derived from CArrayFixBase) using the ResizeL() member function.
2362 It is caused by specifying the number of contiguous elements as a zero
2365 EArrayCountNegative3=24,
2369 This panic is raised when deleting contiguous elements from an array of
2370 variable length objects (derived from CArrayVarBase) using the Delete()
2373 It is caused by specifying the number of contiguous elements as a zero
2376 EArrayCountNegative4=25,
2380 This panic is raised when deleting contiguous elements from
2381 a packed array (derived from CArrayPakBase) using the Delete()
2384 It is caused by specifying the number of contiguous elements as
2385 a zero or negative value.
2387 EArrayCountNegative5=26,
2391 This panic is raised when reserving space in flat arrays of
2392 fixed length objects, the CArrayFixFlat,CArrayFixFlat<TAny>
2393 and CArrayPtrFlat classes, using the SetReserveL() member function.
2395 It is caused by specifying the number of elements, for which space is to be
2396 reserved, as less than the current number of elements in the array.
2398 EArrayReserveTooSmall=27,
2402 This panic is raised when inserting or appending replicated
2403 elements to the arrays of fixed length objects CArrayFixFlat and
2404 CArrayFixSeg using the InsertL() or AppendL() functions.
2406 It is caused by specifying the number of replicas as negative or zero.
2408 EArrayReplicasNegative=28,
2412 This panic is raised when deleting elements from a fixed length, variable
2413 length or packed array (derived from CArrayFixBase, CArrayVarBase
2414 and CArrayPakBase) using the Delete() function.
2416 It is caused when the specification of the position of the first element
2417 to be deleted and the number of contiguous elements to be deleted refers
2418 to elements which are outside the bounds of the array.
2420 EArrayCountTooBig=29,
2424 This panic is raised when inserting into, appending onto, expanding or
2425 extending a variable length array or a packed array (i.e. arrays derived
2426 from CArrayVar or CArrayPak) using the InsertL(), AppendL(), ExpandL()
2427 or ExtendL() functions respectively.
2429 It is caused by specifying the length of the element as a negative value.
2431 EArrayLengthNegative=30,
2437 EArrayReaderCountVirtual=31,
2443 EArrayReaderAtVirtual=32,
2447 This panic is raised by the destructor of a CObject.
2449 It is caused when an attempt is made to delete the CObject
2450 when the reference count is not zero.
2454 EObjObjectStillReferenced=33,
2458 This panic is raised by the Close() member function of a CObject.
2460 It is caused when the reference count is negative.
2462 EObjNegativeAccessCount=34,
2466 This panic is raised by the Remove() member function of an object
2467 container, a CObjectCon.
2469 It is caused when the CObject to be removed from the container is
2470 not contained by the container.
2474 EObjRemoveObjectNotFound=35,
2478 This panic is raised by the Remove() member function of a container
2479 index, a CObjectConIx.
2481 It is caused when the object container, a CObjectCon, to be removed from
2482 the index is not contained by the index.
2484 EObjRemoveContainerNotFound=36,
2488 This panic is raised by the Remove() member function of an object index,
2491 It is caused when the handle passed to the Remove() function does not
2492 represent a CObject known to the object index.
2494 EObjRemoveBadHandle=37,
2498 This panic is raised by the At(), FindByName() and FindByFullName() member
2499 functions of an object container, a CObjectCon.
2501 It is caused when the unique ID as derived from the handle is not the same
2502 as the unique ID held by the object container.
2504 EObjFindBadHandle=38,
2508 This panic is raised by the At() member function of an object container,
2511 It is caused when the index represented by the handle is outside
2512 the permitted range. In effect, the handle is bad.
2514 EObjFindIndexOutOfRange=39,
2518 This panic is raised by the destructor of an active object, a CActive.
2520 It is caused by an attempt to delete the active object while it still
2521 has a request outstanding.
2523 EReqStillActiveOnDestruct=40,
2527 This panic is raised by the Add() member function of an active scheduler,
2530 It is caused by an attempt to add an active object to the active scheduler
2531 when it has already been added to the active scheduler
2533 EReqAlreadyAdded=41,
2537 This panic is raised by the SetActive() member function of an active
2540 It is caused by an attempt to flag the active object
2541 as active when it is already active, i.e. a request is still outstanding.
2543 EReqAlreadyActive=42,
2547 This panic is raised by the Install() member function of an active
2548 scheduler, a CActiveScheduler.
2550 It is caused by attempting to install this active scheduler as the current
2551 active scheduler when there is already a current active scheduler;
2552 i.e. an active scheduler has already been installed.
2554 EReqManagerAlreadyExists=43,
2558 This panic is raised by the Start(), Stop() and Add() member functions
2559 of an active scheduler, a CActiveScheduler.
2561 It is caused by attempting to start or stop an active scheduler or by
2562 attempting to add an active object, a CActive, to the active scheduler.
2564 EReqManagerDoesNotExist=44,
2568 This panic is raised by the Stop() member function of an active scheduler,
2571 Calling Stop() terminates the wait loop started by the most recent
2572 call to Start(). The panic is caused by a call to Stop() which is not
2573 matched by a corresponding call to Start().
2575 EReqTooManyStops=45,
2579 This panic is raised by an active scheduler, a CActiveScheduler.
2581 It is caused by a stray signal.
2587 This panic is raised by the Error() virtual member function of an active
2588 scheduler, a CActiveScheduler.
2590 This function is called when an active object’s RunL() function leaves.
2591 Applications always replace the Error() function in a class derived from
2592 CActiveScheduler; the default behaviour provided by CActiveScheduler raises
2595 EReqActiveObjectLeave=47,
2599 This panic is raised by the Add() member function of an active scheduler,
2600 a CActiveScheduler, when a NULL pointer is passed to the function.
2606 This panic is raised by the SetActive() and Deque() member functions of
2607 an active object, a CActive.
2609 It is raised if the active object has not been added to the active scheduler.
2615 This panic is raised by the SetPriority() member function of an active
2618 It is caused by an attempt to change the priority of the active object
2619 while it is active, i.e. while a request is outstanding).
2621 ESetPriorityActive=50,
2625 This panic is raised by the At(), After() and Lock() member functions of
2626 the CTimer active object.
2628 It is caused by an attempt to request a timer event when the CTimer active
2629 object has not been added to the active scheduler.
2635 This panic is raised by the Start() member function of the periodic timer
2636 active object, a CPeriodic, when a negative time interval is passed to
2639 ETimIntervalNegativeOrZero=52,
2643 This panic is raised by the Start() member function of the periodic
2644 timer active object, a CPeriodic, when a negative delay time interval
2645 is passed to the function.
2647 ETimDelayNegative=53,
2653 EUnusedBasePanic1=54, // Unused
2659 ESvrNoServerName=55,
2663 This panic is raised by the New() and NewL() member functions of
2664 CBitMapAllocator when a negative or zero size is passed to them.
2666 EBmaSizeLessOrEqualToZero=56,
2670 This panic is raised by the Free(TInt aPos) member function of
2671 CBitMapAllocator when a position value is passed which is out of bounds.
2673 EBmaFreeOutOfRange=57,
2677 This panic is raised by the IsFree(TInt aPos) member function of
2678 CBitMapAllocator when a position value is passed which is out of bounds.
2680 EBmaAllocOutOfRange=58,
2684 This panic is raised by the AllocFromTopFrom(TInt aPos) member function
2685 of CBitMapAllocator when a position value is passed which is out of bounds.
2687 EBmaAllocFromTopFromOutOfRange=59,
2699 EBmaFreeNotAllocated=61,
2703 This panic is raised by the AllocAt() member function of CBitMapAllocator
2704 when the implied position has already been allocated.
2706 EBmaAllocAtAlreadyAllocated=62,
2710 This panic is raised as a result of a call to the Pop() and PopAndDestroy()
2711 static member functions of the CleanupStack class.
2713 The panic occurs when TRAPs have been nested and an attempt is made to pop too
2714 many items from the cleanup stack for the current nest level.
2716 EClnPopAcrossLevels=63,
2720 This panic is raised as a result of a call to the Pop() and PopAndDestroy()
2721 static member functions of the CleanupStack class.
2723 The panic occurs when attempt is made to pop more items from the cleanup
2724 stack than are on the cleanup stack.
2726 EClnPopUnderflow=64,
2730 The panic is raised as a result of a call to the Pop() and PopAndDestroy()
2731 static member functions of the CleanupStack class.
2733 The panic occurs when an attempt is made to pop more items from the cleanup
2734 stack than are on the cleanup stack.
2736 EClnLevelUnderflow=65,
2740 This panic is raised if an attempt is being made to insert a cleanup item
2741 into a position on the cleanup stack reserved for marking the current TRAP
2744 In practice this error occurs if the call to CleanupStack::PushL() happens
2745 when there has been no call to TRAP().
2747 EClnPushAtLevelZero=66,
2751 This panic is raised when building a TCleanupStackItem which is to be added
2752 to the cleanup stack.
2754 The building of the TCleanupStackItem needs a TCleanupItem and this has
2755 been constructed with a NULL cleanup operation (a TCleanupOperation).
2757 EClnNoCleanupOperation=67,
2761 This panic is raised if there are no free slots available on the cleanup
2762 stack to insert a cleanup item.
2764 EClnNoFreeSlotItem=68,
2768 This panic is raised if no trap handler has been installed.
2770 In practice, this occurs if CTrapCleanup::New() has not been called
2771 before using the cleanup stack.
2773 EClnNoTrapHandlerInstalled=69,
2777 This panic is raised as a result of a call to the versions of the
2778 Pop() and PopAndDestroy() static member functions of the CleanupStack class
2779 which take an explicit count of the items to be popped.
2781 The panic is caused by passing a negative value for the number of items
2784 EClnPopCountNegative=70,
2788 This panic is raised when TRAPs have been nested and an attempt is made to
2789 exit from a TRAP nest level before all the cleanup items belonging to that
2790 level have been popped off the cleanup stack.
2792 EClnLevelNotEmpty=71,
2796 This panic is raised by the constructor of the circular buffer base class,
2797 a CCirBufBase, when the size value passed is zero or negative.
2799 ECircItemSizeNegativeOrZero=72,
2803 This panic is raised by a call to the SetLengthL() member function of
2804 the circular buffer base class, a CCirBufBase, by passing a length
2805 value which is zero or negative.
2807 ECircSetLengthNegativeOrZero=73,
2811 This panic is raised by a call to the Add() member function of a
2812 circular buffer, a CCirBuf when the pointer to the item
2813 to be added is NULL.
2815 ECircNoBufferAllocated=74,
2819 This panic is raised by a call to the Add() member function of a
2820 circular buffer, a CCirBuf when the number of items to be added
2821 is zero or negative.
2823 ECircAddCountNegative=75,
2827 This panic is raised by a call to the Remove() member function of
2828 a circular buffer, a CCirBuf when the number of items to be removed is zero
2831 ECircRemoveCountNegative=76,
2835 This panic is raise by CConsoleBase::Getch() when the asynchronous request
2836 that fetches the character completes with a completion code that
2839 EConsGetchFailed=77,
2849 This panic is raised by the Alloc() member function
2850 of CBitMapAllocator if the object is in an inconsistnt state.
2852 EBmaInconsistentState=79,
2856 This panic is raised by the AllocFrom() member function
2857 of CBitMapAllocator if the position passed into it is outside its valid
2858 range, i.e. is negative or is greater than or equal to the size.
2860 EBmaAllocFromOutOfRange=80,
2864 This panic is raised by the Alloc() member function
2865 of CBitMapAllocator if the count value passed into it
2868 EBmaAllocCountNegative=81,
2872 This panic is raised by the AllocAligned() member function
2873 of CBitMapAllocator if the alignment value passed into it
2874 is negative or greater than or equal to 32.
2876 EBmaAllAlgnOutOfRange=82,
2880 This panic is raised by the AllocAlignedBlock() member function
2881 of CBitMapAllocator if the alignment value passed into it
2882 is negative or greater than or equal to 32.
2884 EBmaAllAlgnBOutOfRange=83,
2888 This panic is raised by the AllocAt() member function
2889 of CBitMapAllocator if the position value passed into it
2890 is outside the permitted range.
2892 EBmaAllocBlkOutOfRange=84,
2896 This panic is raised by the IsFree() member function
2897 of CBitMapAllocator if the position value passed into it
2898 is outside the permitted range.
2900 EBmaChkBlkOutOfRange=85,
2904 This panic is raised by the Free() member function
2905 of CBitMapAllocator if the position value passed into it
2906 is outside the permitted range.
2908 EBmaFreeBlkOutOfRange=86,
2912 This panic is raised by the Free() member function
2913 of CBitMapAllocator if attempting to free a block that is not allocated.
2915 EBmaFreeBlkNotAllocated=87,
2919 This panic is raised by the Free() member function
2920 of CBitMapAllocator if attempting to allocate a block that is not free.
2922 EBmaAllocBlkNotFree=88,
2926 This panic is raised by call to the Replace() member function of
2927 CActiveScheduler when the replacement active scheduler is the same as
2928 the existing active scheduler.
2930 EActiveSchedulerReplacingSelf=89,
2934 The panic is raised as a result of a call to the Pop() and PopAndDestroy()
2935 static member functions of the CleanupStack class.
2937 The panic occurs when an the item to be popped is not the expected item.
2943 This panic is raised by CActiveSchedulerWait::Start()
2944 when the CActiveSchedulerWait has already been started.
2946 @see CActiveSchedulerWait
2948 EActiveSchedulerWaitAlreadyStarted=91,
2952 This panic is raised by CActiveSchedulerWait::AsyncStop() and
2953 CActiveSchedulerWait::CanStopNow()
2954 when the CActiveSchedulerWait has not been started.
2956 EActiveSchedulerWaitNotStarted=92,
2960 This panic is raised during construction of a CAsyncOneShot if the attempt
2961 to open a handle to the current thread fails.
2963 EAsyncOneShotSetupFailed=93,
2969 ESvrBadSecurityPolicy=94,
2973 This panic is raised if CPolicyServer::CustomSecurityCheckL(),
2974 or CPolicyServer::CustomFailureActionL() are called.
2976 Odds are that you forgot to implement one of these two functions in your
2977 CPolicyServer derived Server.
2979 EPolSvrCallingBaseImplementation=95,
2983 This panic is raised in debug builds by the CPolicyServer constructor if
2984 TPolicy::iRanges[0] does not have a value of 0.
2986 EPolSvr1stRangeNotZero=96,
2990 This panic is raised in debug builds by the CPolicyServer constructor if
2991 each element of TPolicy::iRanges is not greater than the previous.
2993 EPolSvrRangesNotIncreasing=97,
2997 This panic is raised in debug builds by the CPolicyServer constructor
2998 unless every element in TPolicy::iElementsIndex is valid. Every element,
2999 x, must not be one of (ESpecialCaseHardLimit <= x <= ESpecialCaseLimit) in
3000 order to be valid. See CPolicyServer::TSpecialCase for more information.
3002 EPolSvrElementsIndexValueInvalid=98,
3006 This panic is raised in debug builds by the CPolicyServer constructor if
3007 TPolicy::iOnConnect has an invalid value. iOnConnect must not be one of
3008 (ESpecialCaseHardLimit <= x <= ESpecialCaseLimit) in order to be valid.
3009 See CPolicyServer::TSpecialCase for more information.
3011 EPolSvrIOnConnectValueInvalid=99,
3015 This panic is raised if CPolicyServer::iPolicy is found to be invalid for
3016 an unkown reason. There is a good chance that your policy would cause the
3017 server to panic with one of the above specific policy panic codes if you
3018 run it in debug mode. See the policy server documentation for a
3019 description of a valid policy.
3021 EPolSvrPolicyInvalid=100,
3025 The value returned from CustomSecurityCheckL or CustomFailureActionL was
3026 invalid. See CPolicyServer::TCustomResult for a list of valid results.
3028 EPolSvrInvalidCustomResult=101,
3032 This panic is raised in debug builds by the CPolicyServer constructor if
3033 TPolicy.iRangeCount is not greater than 0. All policies given to the
3034 policy server must contain at least 1 policy.
3036 EPolSvrIRangeCountInvalid=102,
3040 This panic is raised by the policy server framework if a message fails a
3041 policy check (custom or not) and the associated action is EPanicClient.
3043 EPolSvrActionPanicClient=103,
3046 This panic is raised by CObjectIx class methods if inconsistent data condition occurs
3047 It can appear in debug build only.
3049 EObjInconsistent=104,
3052 This panic is raised as a result of a call to the Pop() and PopAndDestroy()
3053 static member functions of the CleanupStack class.
3055 The panic occurs when the cleanup operation of a popped item modifies the
3056 cleanup stack. In such a case, the function cannot guarantee that the correct
3057 items will be popped.
3059 EClnStackModified=105,
3062 This panic is raised as a result of a call to CServer2::SetPinClientDescriptors() after
3063 CServer2::Start() has been invoked on a CServer2 object.
3065 ECServer2InvalidSetPin = 106,