e32panic.h File Reference

Enum TCdtPanic

Defines a set of panic numbers associated with the USER panic category.

Some of these numbers are also associated with panics raised on the kernel side, and may be associated with a number of category names, including KERN-COMMON, KERN-HEAP etc.

EnumeratorValueDescription
EInvariantFalse0

A thread has called User::Invariant().

Typically, User::Invariant() is called when a test for a class invariant fails, i.e. when a test which checks that the internal data of an object is self-consistent, fails.

Check the design and implementation of your class.

See also: User

ETDateTimeUnderflow1

Not used.

ETDateTimeBadDate2

Not used.

ETDateTimeBadDateTime3

A TDateTime object has been constructed with an invalid date or time field.

See also: TDateTime

ETDateTimeAddDaysRange4

Not used.

ETDateTimeAddMonthsRange5

Not used.

ETDateTimeDaySecNegative6

Not used.

ETDes16BadDescriptorType7

A panic raised by the Ptr() member function of a 16-bit descriptor if the descriptor is invalid.

See also: TDesC16::Ptr()

ETDes16LengthOutOfRange8

The length value passed to a 16-bit variant descriptor member function is invalid.

This panic may be raised by some descriptor constructors and, specifically, by the Replace() and Set() descriptor member functions.

See also: TDes16

ETDes16IndexOutOfRange9

The index value passed to the 16-bit variant descriptor Operator[] is out of bounds.

ETDes16PosOutOfRange10

The position value passed to a 16-bit variant descriptor member function is out of bounds.

The panic can be raised by the Left(), Right(), Mid(), Insert(), Delete() and Replace() member functions of TDes16.

See also: TDes16

ETDes16Overflow11

An operation to move or copy data to a 16-bit variant descriptor, will cause the length of that descriptor to exceed its maximum length.

This may be caused by any of the copying, appending or formatting member functions but, specifically, by the Insert(), Replace(), Fill(), Fillz(), and ZeroTerminate() descriptor member functions. It can also be caused by the SetLength() function.

See also: TDes16

ETDes16BadFormatDescriptor12

The format string passed to the 16-bit variant descriptor member functions Format() and AppendFormat() has incorrect syntax.

See also: TDes16

ETDes16BadFormatParams13

An invalid variable list has been passed to the AppendFormatList() member function of the 16-bit variant descriptor TDes16, when the format is S or s.

This panic is raised in debug builds only.

See also: TDes16

ETDes16ReAllocTooSmall14

This panic is raised when expanding or contracting an HBufC16 buffer using the ReAlloc() or ReAllocL() descriptor member functions and the new specified length is too small to contain the data.

See also: HBufC16

ETDes16RemoteBadDescriptorType15

Not used.

ETDes16RemoteLengthOutOfRange16

In a call to the Replace() member function of the 16-bit variant descriptor TDes16,the length of the source descriptor is negative or exceeds the maximum length of the target descriptor.

See also: TDes16

ETDes16LengthNegative17

A 16-bit variant descriptor is being constructed with a negative length value.

This panic may also be raised if the Set(), Repeat() and the Find() member functions are passed negative length values.

ETDes16MaxLengthNegative18

A 16-bit variant descriptor is being constructed with a negative maximum length value.

ETDes8BadDescriptorType19

A panic raised by the Ptr() member function of an 8-bit descriptor if the descriptor is invalid.

See also: TDesC8::Ptr()

ETDes8LengthOutOfRange20

The length value passed to an 8-bit variant descriptor member function is invalid.

This panic may be raised by some descriptor constructors and, specifically, by the Replace() and Set() descriptor member functions.

See also: TDes8

ETDes8IndexOutOfRange21

The index value passed to the 8-bit variant descriptor Operator[] is out of bounds.

ETDes8PosOutOfRange22

The position value passed to an 8-bit variant descriptor member function is out of bounds.

The panic can be raised by the Left(), Right(), Mid(), Insert(), Delete() and Replace() member functions of TDes8

See also: TDes8

ETDes8Overflow23

An operation to move or copy data to an 8-bit variant descriptor, will cause the length of that descriptor to exceed its maximum length.

This may be caused by any of the copying, appending or formatting member functions but, specifically, by the Insert(), Replace(), Fill(), Fillz(), and ZeroTerminate() descriptor member functions. It can also be caused by the SetLength() function.

See also: TDes8

ETDes8BadFormatDescriptor24

The format string passed to the 8-bit variant descriptor member functions Format() and AppendFormat() has incorrect syntax.

See also: TDes8

ETDes8BadFormatParams25

An invalid variable list has been passed to the AppendFormatList() member function of the 8-bit variant descriptor TDes8, when the format is S or s.

This panic is raised in debug builds only.

See also: TDes8

ETDes8ReAllocTooSmall26

This panic is raised when expanding or contracting an HBufC8 buffer using the ReAlloc() or ReAllocL() descriptor member functions and the new specified length is too small to contain the data.

See also: HBufC8

ETDes8RemoteBadDescriptorType27

Not used.

ETDes8RemoteLengthOutOfRange28

In a call to the Replace() member function of the 8-bit variant descriptor TDes8,the length of the source descriptor is negative or exceeds the maximum length of the target descriptor.

See also: TDes8

ETDes8LengthNegative29

An 8-bit variant descriptor is being constructed with a negative length value.

This panic may also be raised if the Set(), Repeat() and the Find() member functions are passed negative length values.

ETDes8MaxLengthNegative30

An 8-bit variant descriptor is being constructed with a negative maximum length value.

ETEntLeaveWithoutEnter31

Not used.

ETEventNotMoveType32

It is raised by TRawEvent::Pos() when the event is not a mouse/pen type event.

This panic is raised in debug builds only.

ETEventNotKeyType33

It is raised by TRawEvent::ScanCode() when the event is not a key down, up or repeat event.

This panic is raised in debug builds only.

ETEventNotUpdateModifiersType34

It is raised by TRawEvent::Modifiers() when the event is not a modifier update event.

This panic is raised in debug builds only.

ETFuncTKeyVirtualAt35

This panic is raised by the default At() virtual member function of TKey.

The function is intended to be overridden by a derived class.

See also: TKey

ETFuncTSwapVirtualSwap36

This panic is raised by the default Swap() virtual member function of TSwap.

The function is intended to be overridden by a derived class.

See also: TSwap

ETFuncUidTypeBadIndex37

The index value passed to the operator[] of a TUidType is negative or is greater than or equal to KMaxCheckedUid.

See also: KMaxCheckedUid TUidType

ETFuncCheckedUidBadSet38

The length of the descriptor passed to the Set(TDesC8&) member function of TCheckedUid is not equal to the size of a TCheckedUid object.

See also: TCheckedUid

ETHeapNewBadSize39

The size specified of a new heap is smaller than the permitted minimum; it must be at least the size of a RHeap object.

On the user side this is associated with the USER category; on the kernel side this is associated with the KERN-HEAP category.

ETHeapCreateSizeTooSmall40

Not used.

ETHeapCreateMaxLessThanMin41

In a call to UserHeap::ChunkHeap(), the value defining the minimum length of the heap is greater than the value defining the maximum length to which the heap can grow.

See also: UserHeap

ETHeapBadCellAddress42

In a call to the RHeap member functions, AllocLen(), Free(), FreeZ(), ReAlloc(), ReAllocL(), Adjust() and AdjustL(), a pointer passed to these functions does not point to a valid cell.

On the user side this is associated with the USER category; on the kernel side this is associated with the KERN-HEAP category.

ETHeapAdjustTooSmall43

In a call to the Adjust() and AdjustL() member functions of RHeap, a heap cell is being shrunk and the amount by which the cell is being shrunk is less than the current length of the cell.

ETHeapFreeBadNextCell44

In a call to the Free() and FreeZ() member functions of RHeap,the cell being freed overlaps the next cell on the free list (i.e. the first cell on the free list with an address higher than the one being freed).

ETHeapFreeBadPrevCell45

In a call to the Free() and FreeZ() member functions of RHeap, the cell being freed overlaps the previous cell on the free list (i.e. the last cell on the free list with an address lower than the one being freed).

ETHeapReAllocBadNextCell46

In a call to the ReAlloc() and ReAllocL() member functions of RHeap, the cell being reallocated overlaps the next cell on the free list (i.e. the first cell on the free list with an address higher than the one being reallocated).

ETHeapBadAllocatedCellSize47

In a call to the Alloc(), AllocL() or AllocLC() member functions of RHeap, an attempt has been made to allocate a cell from a heap, using an unsigned size value which is greater than or equal to the value of KMaxTInt/2.

This panic may also be raised by the heap walker when it finds a bad allocated heap cell size.

See also: User::Check() RAllocator::Check() KMaxTInt

ETHeapBadAllocatedCellAddress48

This panic is raised by the heap walker when it finds a bad allocated heap cell address.

ETHeapBadFreeCellAddress49

This panic is raised by the heap walker when it finds a bad free heap cell address.

ETHeapDebugBufferOverflow50

Not used.

ETHeapDebugUnmatchedCallToCheckHeap51

A call has been made to the __DbgMarkEnd() member function of RHeap, when there has been no corresponding call to the __DbgMarkStart() member function.

This panic is also raised when there are more calls to __DbgMarkEnd() than to __DbgMarkStart(). These functions are part of the debug assistance provided by the RHeap class.

This panic is raised in debug builds only.

ETHeapAdjustOffsetNegative52

In a call to the Adjust() and AdjustL() member functions of an RHeap, the offset from the start of the cell being stretched or shrunk is a negative value.

ETHeapAllocSizeNegative53

Not used.

ETHeapReAllocSizeNegative54

In a call to the ReAlloc() and ReAllocL() member functions of an RHeap, the new size for the cell being reallocated is a negative value.

ETHeapMinLengthNegative55

This panic is caused by the UserHeap::ChunkHeap() static function when the value defining the minimum length of the heap is negative.

ETHeapMaxLengthNegative56

This panic is caused by the UserHeap::ChunkHeap() static function when the value defining the maximum length to which the heap can grow, is negative.

EAllocatorClosedTooManyTimes57

This panic is raised when closing a shared heap using the Close() member function of RHeap and the access count is zero or negative.

A zero or negative access count suggests that an attempt is being made to close the heap too many times.

ETHeapOnlyChunkHeaps58

This panic is raised when opening a heap for shared access using the Open() member function of RHeap and the heap type is not EChunkNormal.

ETLex8UnGetUnderflow59

This panic is raised by the UnGet() member function of the 8-bit variant lexical analyzer, TLex8, if the character position is already at the start of the string.

See also: TLex8

ETLex8IncOutOfRange60

This panic is raised by the Inc() member function of the 8-bit variant lexical analyzer, TLex8, if the resulting character position lies before the start of the string or after the end of the string.

See also: TLex8

ETLex8SkipOutOfRange61

This panic is raised by the SkipAndMark() member function of the 8-bit variant lexical analyzer, TLex8, if the resulting character position lies before the start of the string, or after the end of the string.

See also: TLex8

ETLex8BadFormatList62

Not used.

ETLex8MarkOutOfRange63

This panic is raised by the ValidateMark() member function of the 8-bit variant lexical analyzer, TLex8, if the position of the extraction mark lies before the start of the string or after the end of the string.

See also: TLex8

ETLex16UnGetUnderflow64

This panic is raised by the UnGet() member function of the 16-bit variant lexical analyzer, TLex16, if the character position is already at the start of the string.

See also: TLex16

ETLex16IncOutOfRange65

This panic is raised by the Inc() member function of the 16-bit variant lexical analyzer, TLex16, if the resulting character position lies before the start of the string or after the end of the string.

See also: TLex16

ETLex16SkipOutOfRange66

This panic is raised by the SkipAndMark() member function of the 16-bit variant lexical analyzer, TLex16, if the resulting character position lies before the start of the string or after the end of the string.

See also: TLex16

ETLex16BadFormatList67

Not used.

ETLex16MarkOutOfRange68

This panic is raised by the ValidateMark() member function of the 16-bit variant lexical analyzer, TLex16, if the position of the extraction mark lies before the start of the string or after the end of the string.

See also: TLex16

ETLoclSuffixOutOfRange69

This panic is raised by the TDateSuffix constructor or its Set() member function when the suffix index specified is negative or is greater than or equal to the value KMaxSuffixes.

The index is used to access a locale dependent table of suffix characters, which can be appended to the dates of the month (e.g. the characters "st" for 1st, "nd" for 2nd, "st" for 31st).

See also: TDateSuffix KMaxSuffixes

ETMesCompletion70

This panic is raised when attempting to complete a client/server request and the RMessagePtr is null.

EMesBadRetryCount71

Not used.

ETMesBadFunctionNumber72

This panic is raised by the Send() and SendReceive() member functions of RSessionBase, the client interface for communication with a server, when the specified operation code identifying the required service is either negative or a value greater than KMaxTint.

See also: RSessionBase KMaxTint

ETMesReceiveFailed73

This panic is raised by the Receive() member function of RServer, the handle to the server, when the attempt to receive a message for the server, synchronously, fails.

See also: RServer

ESQueOffsetNegative74

Not used.

ESQueOffsetNotAligned75

This panic is raised by the constructor of a singly linked list header, a TSglQue or by the SetOffset() member function when the specified offset is not 4 byte aligned, i.e. when it is not divisible by 4.

See also: TSglQue

ESQueLinkNotQueued76

This panic is raised when attempting to remove an object from a singly linked list, using the Remove() member function of TSglQue, when that object is not in the list.

See also: TSglQue

ETQueOffsetNegative77

Not used.

ETQueOffsetNotAligned78

This panic is raised by the constructor of a doubly linked list header, a TDblQue or by the SetOffset() member function, when the specified offset is not 4 byte aligned, i.e. when it is not divisible by 4.

See also: TDblQue

ETQueQueueEmpty79

This panic is raised by a call to either the First() or the Last() member functions of a doubly linked list, a TDblQue, which return pointers to the first and last element in the list respectively; the panic occurs when the list is empty.

This panic is raised in debug builds only.

See also: TDblQue

ETQueLinkHasBeenRemoved80

This panic is raised by the post increment operator, operator++, the post decrement operator, operator- and the return current element operator, operator T*, of the doubly linked list iterator, a TDblQueIter; the panic occurs when the element returned by these operators is not in the list.

Typically, this is caused by the removal of the element from the list prior to calling these operators.

This panic is raised in debug builds only.

See also: TDblQueIter

ETRegionOutOfRange81

This panic is raised by the get rectangle operator, operator[], of a clipping region, derived from the abstract base class TRegion.

The panic occurs when the index, which refers to the specific rectangle within the region, is greater than or equal to the number of rectangles contained within the region (as returned by the Count() member function).

The index must be strictly less than the number of contained rectangles.

See also: TRegion

ETRegionInvalidRegionInSort82

This panic is raised when sorting the rectangles within a clipping region, derived from the abstract base class TRegion, using the Sort() member function of TRegion.

The panic occurs when the region is invalid.

This panic is raised in debug builds only.

See also: TRegion

ETUtlKernelServerSend83

This panic occurs when the Kernel sends a message to the Kernel server and this completes with an error, i.e. an error code which is not KErrNone.

ERTestFailed84

This panic is raised by the Panic() member function of RTest, the test class.

ERTestCreateConsole85

This panic is raised by the CheckConsoleCreated() member functions of RTest and RTestJ, the test classes, when the creation of a console, as derived from a CConsoleBase, fails.

EExecAfterTimeNegative86

This panic is raised by the static function User::After() when the specified time interval is negative.

ERTimerAfterTimeNegative87

This panic is raised when the time interval passed to the After() member function of RTimer is negative.

See also: RTimer

EMemLeftNegative88

This panic is raised by Mem::Compare(), Mem::CompareC() and Mem::CompareF() when the length of the area of memory designated as the left hand area, is negative.

This panic is raised in debug builds only.

On the user side this is associated with the USER category; on the kernel side this is associated with the KERN-COMMON category.

See also: Mem

EMemRightNegative89

This panic is raised by Mem::Compare(), Mem::CompareC() and Mem::CompareF() when the length of the area of memory designated as the right hand area, is negative.

This panic is raised in debug builds only.

On the user side this is associated with the USER category; on the kernel side this is associated with the KERN-COMMON category.

See also: Mem

EMemCopyLengthNegative90

This panic is raised by Mem::Copy() when the length of the area of memory to be copied is negative.

This panic is raised in debug builds only.

On the user side this is associated with the USER category; on the kernel side this is associated with the KERN-COMMON category.

See also: Mem

EWordMoveLengthNotMultipleOf491

This panic is raised by Mem::Move() when the length of the area of memory to be moved is not a multiple of 4.

This panic is raised in debug builds only.

On the user side this is associated with the USER category; on the kernel side this is associated with the KERN-COMMON category.

See also: Mem

EWordMoveSourceNotAligned92

This panic is raised by Mem::Move() when the address of the source for the move operation is not aligned on a 4 byte boundary.

This panic is raised in debug builds only.

On the user side this is associated with the USER category; on the kernel side this is associated with the KERN-COMMON category.

See also: Mem

EWordMoveTargetNotAligned93

This panic is raised by Mem::Move() when the address of the target for the move operation is not aligned on a 4 byte boundary.

This panic is raised in debug builds only.

On the user side this is associated with the USER category; on the kernel side this is associated with the KERN-COMMON category.

See also: Mem

EMemSwapLengthNegative94

This panic is raised by Mem::Swap() when the length of the area of memory to be swapped is negative.

This panic is raised in debug builds only.

On the user side this is associated with the USER category; on the kernel side this is associated with the KERN-COMMON category.

See also: Mem

EMemFillLengthNegative95

This panic is raised by Mem::Fill() and Mem::FillZ() when the length of the area of memory to be filled is negative.

This panic is raised in debug builds only.

On the user side this is associated with the USER category; on the kernel side this is associated with the KERN-COMMON category.

See also: Mem

ESortCountNegative96

The value for the number of records to be sorted passed to User::QuickSort() is negative.

See also: User

EBinarySearchCountNegative97

The value for the number of records taking part in the search passed to User::BinarySearch() is negative.

See also: User

EKeyOffsetNegative98

This panic is raised by the constructor of the base key class, TKey.

It occurs when the offset value passed to the constructor is negative. As TKey is an abstract class, i.e. objects of type TKey are not intended to be explicitly constructed, look at the offset value passed to the constructors of derived classes such as TKeyArrayFix, TKeyArrayVar, and TKeyArrayPak for the cause of the panic.

See also: TKey TKeyArrayFix TKeyArrayVar TKeyArrayPak

EChkCreateMaxSizeNegative99

This panic is raised when a local or global chunk is created using the RChunk member functions: CreateLocal(), CreateGlobal(), CreateDoubleEndedLocal() and CreateDoubleEndedGlobal().

It occurs when the value for the maximum size to which this chunk can be adjusted, is negative.

See also: RChunk

EChkCreateSizeNotPositive100

This panic is raised when a local or global chunk is created using the RChunk member functions: CreateLocal() and CreateGlobal().

It occurs when the value for the number of bytes to be committed to this chunk on creation, is negative.

See also: RChunk

EChkCreateMaxLessThanMin101

This panic is raised when a local or global chunk is created using the RChunk member functions: CreateLocal() and CreateGlobal().

It occurs when the value for the number of bytes to be committed to this chunk on creation is greater than the value for the maximum size to which this chunk can be adjusted.

See also: RChunk

EChkAdjustNewSizeNegative102

This panic is raised when changing the number of bytes committed to a chunk by calling the Adjust() member function of RChunk.

The panic occurs when the value passed to the function is negative.

See also: RChunk

ESesDelayTimeNegative103

Not used.

ESesRetryCountNegative104

Not used.

ESemCreateCountNegative105

This panic is raised when a local or global semaphore is created using the RSemaphore member functions: CreateLocal() and CreateGlobal(), and the value for the initial semaphore count is negative.

See also: RSemaphore

ESemSignalCountNegative106

This panic is raised when a semaphore is signaled using the Signal(TInt aCount) member function and the count value is negative.

See also: RSemaphore

ECriticalSectionStraySignal107

This panic is raised when a critical section is signalled using the Signal() member function and the call to Signal() is not matched by an earlier call to Wait(), which suggests that this is a stray signal.

See also: RCriticalSection

EThrdHeapNotChunkType108

Not used.

EThrdStackSizeNegative109

This panic is raised when creating a thread using the Create() member functions of RThread.

The panic occurs when the value of the stack size passed to these functions is negative.

See also: RThread

EThrdHeapMinTooSmall110

This panic is raised when creating a thread using the Create() member functions of RThread.

The panic is only raised by those variants of Create() that create a new heap for the new thread. The panic occurs if the minimum heap size specified is less than KMinHeapSize.

See also: RThread KMinHeapSize

EThrdHeapMaxLessThanMin111

This panic is raised when creating a thread using the Create() member functions of RThread.

The panic is only raised by those variants of Create() which create a new heap for the new thread. The panic occurs if the minimum heap size specified is greater than the maximum size to which the heap can grow.

See also: RThread

ERefAllocSizeNegative112

This panic is raised by the Alloc() and AllocL() member functions of class RRef when the size value passed is negative.

ETTimeValueOutOfRange113

This panic is raised by:

1. the constructor of a time representation object, a TTime, which takes a text string, when the format of that text string is incorrect or represents an invalid date/time.

2. the Parse() member function of a time representation object, a TTime, if the century offset value is either negative or is greater than or equal to 100.

3. the Time::DaysInMonth() function, if an invalid month value is passed.

See also: TTime Time

EDriveNotConnected114

This panic is raised by member functions of TBusLocalDrive when no connection has been made to a local drive.

This panic is raised in debug builds only.

See also: TBusLocalDrive

EDriveOutOfRange115

This panic is raised when attempting to connect to a local drive using the Connect() member function of TBusLocalDrive, and the specified drive number is out of range, i.e. the drive number is negative or is greater than or equal to KMaxLocalDrives.

See also: TBusLocalDrive KMaxLocalDrives

EBadLookupOrdinal116

This panic is raised by the Lookup() member function of RLibrary when the ordinal number of the required DLL function, is zero or negative.

See also: RLibrary

EChunkHeapBadOffset117

Not used.

ETQueLinkAlreadyInUse118

Not used.

ECurrencySymbolOverflow119

This panic is raised when setting a new currency symbol using the User::SetCurrencySymbol() function.

The panic occurs when the length of the descriptor containing the new symbol is greater than KMaxCurrencySymbol.

See also: User KMaxCurrencySymbol

EChkCreateBottomNegative120

This panic is raised by the CreateDoubleEndedLocal() and CreateDoubleEndedGlobal() member functions of RChunk when the lower address of the committed region is negative.

See also: RChunk

EChkCreateTopNegative121

This panic is raised by the CreateDoubleEndedLocal() and CreateDoubleEndedGlobal() member functions of RChunk when the upper address of the committed region is negative.

See also: RChunk

EChkCreateTopLessThanBottom122

This panic is raised by the CreateDoubleEndedLocal() and CreateDoubleEndedGlobal() member functions of RChunk when the upper address of the committed region is lower than the lower address of the committed region.

See also: RChunk

EChkCreateTopBiggerThanMax123

This panic is raised by the CreateDoubleEndedLocal() and CreateDoubleEndedGlobal() member functions of RChunk when the upper address of the committed region is lower than the maximum size to which this chunk can be adjusted.

See also: RChunk

EChkAdjustBottomNegative124

This panic is raised by RChunk::AdjustDoubleEnded() when the lower address of the committed region is negative.

See also: RChunk

EChkAdjustTopNegative125

This panic is raised by RChunk::AdjustDoubleEnded() when the upper address of the committed region is negative.

See also: RChunk

EChkAdjustTopLessThanBottom126

This panic is raised by RChunk::AdjustDoubleEnded() when the upper address of the committed region is lower than the lower address of the committed region.

See also: RChunk

EBadArrayGranularity127

This panic is raised when constructing an array of pointers, an RPointerArray, and specifying a granularity value which is one of the following:

1. zero

2. negative

3. greater than 0x10000000.

See also: RPointerArray

EBadArrayKeyOffset128

This panic is raised when constructing an array of fixed length objects, an RArray, and specifying a key offset value which is one of the following:

1. negative

2. not a multiple of 4

3. greater than or equal to the size of the array elements.

See also: RArray

EBadArrayEntrySize129

This panic is raised when constructing an array of fixed length objects, an RArray, and the length of the array elements is one of the following:

1. zero

2. negative

3. greater than 640.

See also: RArray

EBadArrayIndex130

This panic is raised when an index value passed to a member function of RArray or RPointerArray identifying an array element, is out of bounds.

See also: RArray RPointerArray

EBadArrayPosition131

This panic is raised when the value identifying the insertion position in a call to RArray::Insert() or RPointerArray::Insert(), is either negative or greater than the number of elements in the array.

See also: RArray RPointerArray

EBadCollationRulesIndex132

This panic is raised when an index value passed to Mem::CollationMethodByIndex() or Mem::CollationMethodId() is out of bounds.

See also: Mem

EBadFixedArrayIndex133

This panic is raised when an index value passed to TFixedArray::At() or TFixedArray::operator[] is out of bounds.

See also: TFixedArray

ERawEventFlipTypeNotImplemented134

Not used.

ENumberOfParametersExceedsMaximum136

Not used.

ESizeOfParameterTooBig137

This panic is raised internally by the descriptor formatting functions during the handling of the variable parameter lists when the parameter is too big.

EParameterIndexOutOfRange1138

This panic is raised internally by the descriptor formatting functions during the handling of the variable parameter lists when an index value for the parameters is outside its permitted range.

EParameterIndexOutOfRange2139

This panic is raised internally by the descriptor formatting functions during the handling of the variable parameter lists when an index value for the parameters is outside its permitted range.

This panic is raised in debug mode only.

EFormatDirectiveAlreadySet1140

This panic is raised internally by the descriptor formatting functions during the handling of the variable parameter lists.

EFormatDirectiveAlreadySet2141

This panic is raised internally by the descriptor formatting functions during the handling of the variable parameter lists.

ENumberOfFormatDirectivesExceedsMaximum142

This panic is raised internally by the descriptor formatting functions during the handling of the variable parameter lists.

ENoParametersInFormatDirective143

This panic is raised internally by the descriptor formatting functions during the handling of the variable parameter lists.

EFormatDirectiveNotYetSet144

This panic is raised internally by the descriptor formatting functions during the handling of the variable parameter lists.

EBadFormatDirectiveDataPointer145

This panic is raised internally by the descriptor formatting functions during the handling of the variable parameter lists.

EFormatDirectiveIndexOutOfRange146

This panic is raised internally by the descriptor formatting functions during the handling of the variable parameter lists.

ENotOnFirstPassOfFormatDescriptor1147

This panic is raised internally by the descriptor formatting functions during the handling of the variable parameter lists.

ENotOnFirstPassOfFormatDescriptor2148

This panic is raised internally by the descriptor formatting functions during the handling of the variable parameter lists.

EInconsistentSizeOfParameter149

This panic is raised internally by the descriptor formatting functions during the handling of the variable parameter lists.

ENullTargetPointer150

This panic is raised internally by the descriptor formatting functions during the handling of the variable parameter lists.

ENegativeSizeOfParameter151

This panic is raised internally by the descriptor formatting functions during the handling of the variable parameter lists.

EErrorOnSecondPassOfFormatDescriptor152

This panic is raised internally by the descriptor formatting functions during the handling of the variable parameter lists.

EUnexpectedError1153

This panic is raised internally by the descriptor formatting functions during the handling of the variable parameter lists.

EUnexpectedError2154

This panic is raised internally by the descriptor formatting functions during the handling of the variable parameter lists.

ECreateTransferBufferSizeNotPositive155

Not used.

EBadArrayCount156

This panic occurs in the construction of an RPointerArray object from an existing pointer array object, when the number defining the number of entries in the existing array is not positive.

See also: RPointerArray

EChkCommitOffsetNegative157

This panic is raised by RChunk::Commit() when the value of the offset of the committed region is negative.

See also: RChunk

EChkCommitSizeNegative158

This panic is raised by RChunk::Commit() when the size of the the committed region is negative.

See also: RChunk

EChkAllocateSizeNegative159

This panic is raised by RChunk::Allocate() when the size of the the committed region is negative.

See also: RChunk

EChkDecommitOffsetNegative160

This panic is raised by RChunk::Decommit() when the value of the offset of the committed region is negative.

See also: RChunk

EChkDecommitSizeNegative161

This panic is raised by RChunk::Decommit() when the size of the the committed region is negative.

See also: RChunk

EChkCreateInvalidType162

This panic is raised when an invalid chunk type has been passed to the internal member RChunk::Create()

See also: RChunk

EChkCreateInvalidName163

This panic is raised when a global chunk is being created and no name has been specified.

See also: RChunk

EChkCreateInvalidBottom164

This panic is raised when creating a 'normal' chunk and the offset of the bottom of the new committed region from the base of the chunk's reserved region is not zero.

See also: RChunk

EDllStaticConstructorLeave165

This panic is raised by the internal function RLibrary::Init() when the function that constructs static data following a DLL load, leaves.

EDllStaticDestructorLeave166

This panic is raised internally, if a call to the static data destructors following a library handle close, leaves.

EAllocatorBadHandleCount167

This panic is raised in a call to RAllocator::Close() when the number of handles is greater than the maximum allowed, RAllocator::EMaxHandles.

See also: RAllocator

ETHeapNewBadOffset168

This panic is raised by the internal RHeap constructor when the offset value is invalid.

ETHeapReduceFailed169

This panic is raised by the Symbian internal function RHeap::Reduce() on failure.

ETHeapResetFailed170

This panic is raised by the Symbian internal function RHeap::Reset() on failure.

ETHeapBadFreeCellSize171

This panic is raised by the Symbian internal function RHeap::WalkCheckCell() on a bad free cell size.

ETHeapNewBadAlignment172

This panic is raised by the Symbian internal function RHeap::Initialise() on a bad alignment value.

ETHeapBadDebugOp173

Not used.

EPureVirtualCalled174

This panic is raised when an unimplemented pure virtual function is called.

EUserLeaveWithoutTrap175

This panic is raised when a User::Leave() is called and there is no TRAP frame.

EMathUnknownError176

This panic is raised when a mathematical function fails with an unrecognized exception, i.e. one that is none of: KErrArgument, KErrDivideByZero, KErrOverflow or KErrUnderflow.

ETHeapWalkBadCellType177

This panic is raised by the Symbian internal function RHeap::WalkCheckCell() on a bad cell type.

EInvalidRadix178

This panic is raised when descriptors convert integers into text, and an invalid radix is passed, i.e. a value that is not one of the TRadix enum values.

EDes16PadAppendBadAlign179

This panic is raised when converting and appending numbers in descriptors, and buffers are not aligned on even addresses.

This panic is raised in debug builds only.

EMsgQueueSizeInvalid180

Not used.

EHuffmanTooManyCodes181
EHuffmanInvalidCoding182
EBadArrayFindMode183
ENotifierTextTooLong184

In a call to RNotifier::Notify(), the length of one or more of the descriptors containing the displayable text is bigger than the maximum TUint16 value.

EBadLocaleParameter185

In a call to one of the functions: TMonthName::Set() TMonthNameAbb::Set() TDayName::Set() TDayNameAbb::Set()

the month or day value is outside the permitted range of values.

See also: TMonthName TMonthNameAbb TDayName TDayNameAbb

EUnexpectedError3186

This panic is raised internally by the descriptor formatting functions during the handling of the variable parameter lists.

EDes8ExpandOdd187

In a call to TDes8::Expand(), either the length, or the maximum length, or the pointer to the data is not an even number.

See also: TDes8

EDes8CollapseOdd188

In a call to TDes8::Collapse(), either the length, or the maximum length, or the pointer to the data is not an even number.

See also: TDes8

ECapabilityInvalid189

In a call to one of the TSecurityPolicy constructors, the specified capability was found to be inavlid.

See also: TCapability

ESecurityPolicyCorrupt190

In a call to TSecurityPolicy::CheckPolicy, the security policy was found to be corrupt.

See also: TSecurityPolicy

ETSecPolicyTypeInvalid191

In a call to TSecurityPolicy::TSecurityPolicy(TSecPolicyType aType), aType was not one of ETypePass or ETypeFail.

See also: TSecurityPolicy

EBadArrayMinGrowBy192

This panic is raised when constructing an RPointerArray or RArray if the specified minimum growth step is less than or equal to zero or is greater than 65535.

See also: RPointerArray RArray

EBadArrayFactor193

This panic is raised when constructing an RPointerArray or RArray if the specified exponential growth factor is less than or equal to 1 or is greater than or equal to 128.

See also: RPointerArray RArray

EUnexpectedLeave194

This panic is raised if code inside an __ASSERT_*_NO_LEAVE harness leaves.

See also: RPointerArray RArray

ETHeapCellDidntGrow195

A function was used to grow a cell on the heap, but it did not grow as expected.

EWin32SEHandlerNotOnStack196

An attempt was made to install a Win32 SE handler not on the stack.

See also: TWin32SEHTrap

EPlatformSecurityViolation197

This panic is raised when the caller of an API doesn't have the right capabilities to call the specific API that raises this panic. Please consult the documentation for the API in question to learn what capabilities you need to call it.

EHashTableNoHashFunc198

This panic is raised if a NULL function pointer is passed in as the hash function when constructing a hash table class.

EHashTableNoIdentityRelation199

This panic is raised if a NULL function pointer is passed in as the identity relation when constructing a hash table class.

EHashTableBadElementSize200

This panic is raised if a negative element size is specified when constructing a hash table class.

EHashTableBadKeyOffset201

This panic is raised if, when constructing a hash table class, the specified key offset is inconsistent with the specified element size.

EHashTableDeletedEntryAfterReform202

This panic is raised in debug builds only if a deleted entry still remains after a hash table reform. It should never occur, since it signifies an error in the hash table implementation.

EHashTableBadGeneration203

This panic should never occur since it signifies an error in the hash table implementation.

EHashTableBadHash204

This panic should never occur since it signifies an error in the hash table implementation.

EHashTableEntryLost205

This panic should never occur since it signifies an error in the hash table implementation.

EHashTableCountWrong206

This panic should never occur since it signifies an error in the hash table implementation.

EHashTableEmptyCountWrong207

This panic should never occur since it signifies an error in the hash table implementation.

EHashTableIterNextBadIndex208

This panic is raised if, while attempting to step a hash table iterator to the next entry, the iterator is found to point to an invalid table entry. This will typically occur if elements have been removed from the hash table without resetting the iterator.

EHashTableIterCurrentBadIndex209

This panic is raised if, while interrogating the current position of a hash table iterator, the iterator is found to point to an invalid table entry. This will typically occur if elements have been added to or removed from the hash table without resetting the iterator.

EHashTableBadReserveCount210

This panic is raised if an invalid argument is passed to the Reserve() function on any of the hash table classes.

EWin32SEHChainCorrupt211

The Win32 SE handler chain has been corrupted.

See also: TWin32SEHTrap

EArrayBadReserveCount212

This panic is raised if an invalid argument is passed to the Reserve() function on the RArray<T> or RPointerArray<T> classes.

ETHeapBadDebugFailParameter213

This panic is raised when attempting to set a new debug failure mode on a heap with an invalid argument. For example, if aBurst > KMaxTUint6 when invoking __UHEAP_BURSTFAILNEXT when a RHeap object is used for the user heap.

On the user side this is associated with the USER category; on the kernel side this is associated with the KERN-HEAP category.

See also: RAllocator::TAllocFail

EChkCreateInvalidAttribute214

This panic is raised when an invalid chunk attribute has been passed to the method RChunk::Create().

See also: RChunk

EChkCreateInvalidVersion215

This panic is raised when a TChunkCreateInfo object with an invalid version number has been passed to the method RChunk::Create().

See also: RChunk TChunkCreateInfo

EHeapCreateInvalidMode216

This panic is raised when an invalid flag is set in the aMode parameter to UserHeap::ChunkHeap().

See also: TChunkHeapCreateMode

EReadWriteLockInvalidPriority217

This panic is raised when a RReadWriteLock is created with an invalid priority.

See also: RReadWriteLock

EReadWriteLockStillPending218

This panic is raised when a RReadWriteLock is closed with readers/writers still pending.

See also: RReadWriteLock

EReadWriteLockTooManyClients219

This panic is raised when a RReadWriteLock is requested with too many readers or pending readers/writers.

See also: RReadWriteLock

EReadWriteLockBadLockState220

This panic is raised when a RReadWriteLock is unlocked but the lock flags are inconsistent, eg read and write lock held or no lock held.

See also: RReadWriteLock

EReadWriteLockWriterStarvation221

This debug-only panic is raised if the lock has been given to a reader more than a thousand times in a row, while there is a pending writer. It is intended to give a debug indication that writer starvation might be happening.

See also: RReadWriteLock

ETEventNotKeyRepeatType222

It is raised by TRawEvent::Repeats() when the event is not a key repeat event.

This panic is raised in debug builds only.

ECorruptSurrogateFound223

This panic is raised when a corrupt surrogate is found in a descriptor.

EAbsentOrdinalCalled224

This panic is raised when a call is made to an absent ordinal in a linked library.

Enum TBasePanic

Defines a set of panic numbers associated with the E32USER-CBASE panic category.

Panics with this category are raised in user side code by member functions of CBase derived classes that reside in euser.dll. Typically, they are caused by passing bad or contradictory values to class constructors or member functions.

EnumeratorValueDescription
ECAsyncCBIsActive1

This panic is raised by the Set() member function of CAsyncCallBack, if this active object is already active when the function is called.

See also: CAsyncCallBack

ECAsyncOneShotNotAdded2

This panic is raised by the Call() member function of CAsyncOneShot, if the active object has not already been added to the active scheduler.

This panic is raised in debug builds only.

See also: CAsyncOneShot

EBufExpandSizeNegative3

This panic is raised during construction of a dynamic buffer, a CBufFlat or a CBufSeg object, when the value of the granularity passed to the constructors is negative.

See also: CBufFlat CBufSeg

EBufReadBeyondEnd4

This panic is raised when reading from a dynamic buffer, a CBufFlat or a CBufSeg, using the Read() member function.

It is caused by attempting to read beyond the end of the buffer.

See also: CBufFlat CBufSeg

EBufWriteBeyondEnd5

This panic is raised when writing to a dynamic buffer, a CBufFlat or a CBufSeg, using the Write() member function.

It is caused by attempting to write beyond the end of the buffer.

See also: CBufFlat CBufSeg

EBufReadLengthNegative6

This panic is raised when reading from a dynamic buffer, a CBufFlat or a CBufSeg, using the Read() member function.

It is caused by specifying a negative length for the amount of data to be read.

See also: CBufFlat CBufSeg

EBufWriteLengthNegative7

This panic is raised when writing to a dynamic buffer, a CBufFlat or a CBufSeg, using the Write() member function.

It is caused by specifying a negative length for the amount of data to be written.

See also: CBufFlat CBufSeg

EBufInsertLengthNegative8

This panic is raised when inserting data into a dynamic buffer, a CBufFlat or a CBufSeg, using the InsertL() member function or when inserting an uninitialized region into the dynamic buffer using the ExpandL() member function.

It is caused by passing a negative length value to these functions.

See also: CBufFlat CBufSeg

EBufInsertBadPtr9

This panic is raised when inserting data into a dynamic buffer, a CBufFlat or a CBufSeg, using the InsertL() member function.

It is caused when the variant of InsertL(), which takes a pointer to TAny is passed a NULL pointer value.

See also: CBufFlat CBufSeg

EBufFlatReserveNegative10

This panic is raised when specifying the minimum amount of space that a flat dynamic buffer, a CBufFlat, should occupy using the SetReserveL() member function.

It is caused when the size value passed to the function is negative.

See also: CBufFlat

EBufFlatReserveSetTooSmall11

This panic is raised when specifying the minimum amount of space that a flat dynamic buffer, a CBufFlat, should occupy using the SetReserveL() member function.

It is caused when the size value passed to the function is less than the current size of the buffer.

See also: CBufFlat

EBufFlatPosOutOfRange12

This panic is raised by the Delete(), Ptr(), BackPtr() member functions of a flat dynamic buffer, a CBufFlat; the panic can also be raised by InsertL() and ExpandL().

It is caused when the position value passed to these functions is either negative or represents a position beyond the end of the current buffer.

See also: CBufFlat

EBufFlatDeleteBeyondEnd13

This panic is raised by the Delete() member function of a flat dynamic buffer, a CBufFlat.

It is caused when the combination of position and length values passed to the function implies an attempt to delete data beyond the end of the flat buffer.

See also: CBufFlat

EBufSegPosOutOfRange14

This panic is raised by the Delete(), Ptr(), BackPtr() member functions of a segmented dynamic buffer, a CBufSeg); the panic can also be raised by InsertL() and ExpandL().

It is caused when the position value passed to these functions is either negative or represents a position beyond the end of the current buffer.

See also: CBufSeg

EBufSegDeleteBeyondEnd15

This panic is raised by the Delete() member function of a segmented dynamic buffer, a CBufSeg.

It is caused when the combination of position and length values passed to the function implies an attempt to delete data beyond the end of the segmented buffer.

See also: CBufSeg

EBufSegSetSBO16

This panic is raised by the InsertL(), Delete(), Ptr() and BackPtr() member functions as implemented for segmented buffers, CBufSeg, when the offset within a segment, where data is to be inserted or removed, is greater than the buffer granularity.

This panic is raised in debug builds only.

See also: CBufSeg

EArrayFixInvalidLength17

This panic is raised by the constructors of arrays of fixed length objects as represented, for example, by the classes CArrayFixFlat, CArrayFixSeg, and CArrayFixFlat<TAny>.

It is caused when the record length is either negative or zero. The record length is either explicitly specified, as in the case of the CArrayFixFlat<TAny> class, or is implied by the length of the template class as in the case of the CArrayFixFlat class.

See also: CArrayFixFlat CArrayFixSeg

EArrayFixInvalidGranularity18

This panic is raised by the constructors of arrays of fixed length objects as represented, for example, by the classes: CArrayFixFlat and CArrayFixSeg.

It is caused when the granularity passed to the constructors is either negative or zero.

See also: CArrayFixFlat CArrayFixSeg

EArrayVarInvalidGranularity19

This panic is raised by the constructors of arrays of variable length objects as represented, for example, by the classes: CArrayVarFlat and CArrayVarSeg.

It is caused when the granularity passed to the constructors is either negative or zero.

See also: CArrayFixFlat CArrayFixSeg

EArrayPakInvalidGranularity20

This panic is raised by the constructors of packed arrays as represented, for example, by the class CArrayPakFlat.

It is caused when the granularity passed to the constructors is either negative or zero.

See also: CArrayPakFlat

EArrayIndexOutOfRange21

This panic is raised by any operation which accesses an element of an array by explicit reference to an index number, for example, the Delete(), InsertL() and At() member functions or the operator Operator[].

It is caused by specifying an index value which is either negative, or is greater than or equal to the number of objects currently within the array.

EArrayCountNegative22

This panic is raised when deleting contiguous elements from an array of fixed length objects (derived from CArrayFixBase) using the Delete() member function.

It is caused by specifying the number of contiguous elements as a zero or negative value.

EArrayCountNegative223

This panic is raised when inserting contiguous elements into an array of fixed length objects (derived from CArrayFixBase) using the InsertL() member function.

It is caused by specifying the number of contiguous elements as a zero or negative value.

EArrayCountNegative324

This panic is raised when resizing an array of fixed length objects (derived from CArrayFixBase) using the ResizeL() member function.

It is caused by specifying the number of contiguous elements as a zero or negative value.

EArrayCountNegative425

This panic is raised when deleting contiguous elements from an array of variable length objects (derived from CArrayVarBase) using the Delete() member function.

It is caused by specifying the number of contiguous elements as a zero or negative value.

EArrayCountNegative526

This panic is raised when deleting contiguous elements from a packed array (derived from CArrayPakBase) using the Delete() member function.

It is caused by specifying the number of contiguous elements as a zero or negative value.

EArrayReserveTooSmall27

This panic is raised when reserving space in flat arrays of fixed length objects, the CArrayFixFlat,CArrayFixFlat<TAny> and CArrayPtrFlat classes, using the SetReserveL() member function.

It is caused by specifying the number of elements, for which space is to be reserved, as less than the current number of elements in the array.

EArrayReplicasNegative28

This panic is raised when inserting or appending replicated elements to the arrays of fixed length objects CArrayFixFlat and CArrayFixSeg using the InsertL() or AppendL() functions.

It is caused by specifying the number of replicas as negative or zero.

EArrayCountTooBig29

This panic is raised when deleting elements from a fixed length, variable length or packed array (derived from CArrayFixBase, CArrayVarBase and CArrayPakBase) using the Delete() function.

It is caused when the specification of the position of the first element to be deleted and the number of contiguous elements to be deleted refers to elements which are outside the bounds of the array.

EArrayLengthNegative30

This panic is raised when inserting into, appending onto, expanding or extending a variable length array or a packed array (i.e. arrays derived from CArrayVar or CArrayPak) using the InsertL(), AppendL(), ExpandL() or ExtendL() functions respectively.

It is caused by specifying the length of the element as a negative value.

EArrayReaderCountVirtual31

Not used.

EArrayReaderAtVirtual32

Not used.

EObjObjectStillReferenced33

This panic is raised by the destructor of a CObject.

It is caused when an attempt is made to delete the CObject when the reference count is not zero.

See also: CObject

EObjNegativeAccessCount34

This panic is raised by the Close() member function of a CObject.

It is caused when the reference count is negative.

EObjRemoveObjectNotFound35

This panic is raised by the Remove() member function of an object container, a CObjectCon.

It is caused when the CObject to be removed from the container is not contained by the container.

See also: CObject

EObjRemoveContainerNotFound36

This panic is raised by the Remove() member function of a container index, a CObjectConIx.

It is caused when the object container, a CObjectCon, to be removed from the index is not contained by the index.

EObjRemoveBadHandle37

This panic is raised by the Remove() member function of an object index, a CObjectIx.

It is caused when the handle passed to the Remove() function does not represent a CObject known to the object index.

EObjFindBadHandle38

This panic is raised by the At(), FindByName() and FindByFullName() member functions of an object container, a CObjectCon.

It is caused when the unique ID as derived from the handle is not the same as the unique ID held by the object container.

EObjFindIndexOutOfRange39

This panic is raised by the At() member function of an object container, a CObjectCon.

It is caused when the index represented by the handle is outside the permitted range. In effect, the handle is bad.

EReqStillActiveOnDestruct40

This panic is raised by the destructor of an active object, a CActive.

It is caused by an attempt to delete the active object while it still has a request outstanding.

EReqAlreadyAdded41

This panic is raised by the Add() member function of an active scheduler, a CActiveScheduler.

It is caused by an attempt to add an active object to the active scheduler when it has already been added to the active scheduler

EReqAlreadyActive42

This panic is raised by the SetActive() member function of an active object, a CActive.

It is caused by an attempt to flag the active object as active when it is already active, i.e. a request is still outstanding.

EReqManagerAlreadyExists43

This panic is raised by the Install() member function of an active scheduler, a CActiveScheduler.

It is caused by attempting to install this active scheduler as the current active scheduler when there is already a current active scheduler; i.e. an active scheduler has already been installed.

EReqManagerDoesNotExist44

This panic is raised by the Start(), Stop() and Add() member functions of an active scheduler, a CActiveScheduler.

It is caused by attempting to start or stop an active scheduler or by attempting to add an active object, a CActive, to the active scheduler.

EReqTooManyStops45

This panic is raised by the Stop() member function of an active scheduler, a CActiveScheduler.

Calling Stop() terminates the wait loop started by the most recent call to Start(). The panic is caused by a call to Stop() which is not matched by a corresponding call to Start().

EReqStrayEvent46

This panic is raised by an active scheduler, a CActiveScheduler.

It is caused by a stray signal.

EReqActiveObjectLeave47

This panic is raised by the Error() virtual member function of an active scheduler, a CActiveScheduler.

This function is called when an active objects RunL() function leaves. Applications always replace the Error() function in a class derived from CActiveScheduler; the default behaviour provided by CActiveScheduler raises this panic.

EReqNull48

This panic is raised by the Add() member function of an active scheduler, a CActiveScheduler, when a NULL pointer is passed to the function.

EActiveNotAdded49

This panic is raised by the SetActive() and Deque() member functions of an active object, a CActive.

It is raised if the active object has not been added to the active scheduler.

ESetPriorityActive50

This panic is raised by the SetPriority() member function of an active object, a CActive.

It is caused by an attempt to change the priority of the active object while it is active, i.e. while a request is outstanding).

ETimNotAdded51

This panic is raised by the At(), After() and Lock() member functions of the CTimer active object.

It is caused by an attempt to request a timer event when the CTimer active object has not been added to the active scheduler.

ETimIntervalNegativeOrZero52

This panic is raised by the Start() member function of the periodic timer active object, a CPeriodic, when a negative time interval is passed to the function.

ETimDelayNegative53

This panic is raised by the Start() member function of the periodic timer active object, a CPeriodic, when a negative delay time interval is passed to the function.

EUnusedBasePanic154

Not used.

ESvrNoServerName55

Not used.

EBmaSizeLessOrEqualToZero56

This panic is raised by the New() and NewL() member functions of CBitMapAllocator when a negative or zero size is passed to them.

EBmaFreeOutOfRange57

This panic is raised by the Free(TInt aPos) member function of CBitMapAllocator when a position value is passed which is out of bounds.

EBmaAllocOutOfRange58

This panic is raised by the IsFree(TInt aPos) member function of CBitMapAllocator when a position value is passed which is out of bounds.

EBmaAllocFromTopFromOutOfRange59

This panic is raised by the AllocFromTopFrom(TInt aPos) member function of CBitMapAllocator when a position value is passed which is out of bounds.

EBmaFreeTooMany60

Not used.

EBmaFreeNotAllocated61

Not used.

EBmaAllocAtAlreadyAllocated62

This panic is raised by the AllocAt() member function of CBitMapAllocator when the implied position has already been allocated.

EClnPopAcrossLevels63

This panic is raised as a result of a call to the Pop() and PopAndDestroy() static member functions of the CleanupStack class.

The panic occurs when TRAPs have been nested and an attempt is made to pop too many items from the cleanup stack for the current nest level.

EClnPopUnderflow64

This panic is raised as a result of a call to the Pop() and PopAndDestroy() static member functions of the CleanupStack class.

The panic occurs when attempt is made to pop more items from the cleanup stack than are on the cleanup stack.

EClnLevelUnderflow65

The panic is raised as a result of a call to the Pop() and PopAndDestroy() static member functions of the CleanupStack class.

The panic occurs when an attempt is made to pop more items from the cleanup stack than are on the cleanup stack.

EClnPushAtLevelZero66

This panic is raised if an attempt is being made to insert a cleanup item into a position on the cleanup stack reserved for marking the current TRAP nest level.

In practice this error occurs if the call to CleanupStack::PushL() happens when there has been no call to TRAP().

EClnNoCleanupOperation67

This panic is raised when building a TCleanupStackItem which is to be added to the cleanup stack.

The building of the TCleanupStackItem needs a TCleanupItem and this has been constructed with a NULL cleanup operation (a TCleanupOperation).

EClnNoFreeSlotItem68

This panic is raised if there are no free slots available on the cleanup stack to insert a cleanup item.

EClnNoTrapHandlerInstalled69

This panic is raised if no trap handler has been installed.

In practice, this occurs if CTrapCleanup::New() has not been called before using the cleanup stack.

EClnPopCountNegative70

This panic is raised as a result of a call to the versions of the Pop() and PopAndDestroy() static member functions of the CleanupStack class which take an explicit count of the items to be popped.

The panic is caused by passing a negative value for the number of items to be popped.

EClnLevelNotEmpty71

This panic is raised when TRAPs have been nested and an attempt is made to exit from a TRAP nest level before all the cleanup items belonging to that level have been popped off the cleanup stack.

ECircItemSizeNegativeOrZero72

This panic is raised by the constructor of the circular buffer base class, a CCirBufBase, when the size value passed is zero or negative.

ECircSetLengthNegativeOrZero73

This panic is raised by a call to the SetLengthL() member function of the circular buffer base class, a CCirBufBase, by passing a length value which is zero or negative.

ECircNoBufferAllocated74

This panic is raised by a call to the Add() member function of a circular buffer, a CCirBuf when the pointer to the item to be added is NULL.

ECircAddCountNegative75

This panic is raised by a call to the Add() member function of a circular buffer, a CCirBuf when the number of items to be added is zero or negative.

ECircRemoveCountNegative76

This panic is raised by a call to the Remove() member function of a circular buffer, a CCirBuf when the number of items to be removed is zero or negative.

EConsGetchFailed77

This panic is raise by CConsoleBase::Getch() when the asynchronous request that fetches the character completes with a completion code that is not KErrNone.

ESecurityData78

Not used.

EBmaInconsistentState79

This panic is raised by the Alloc() member function of CBitMapAllocator if the object is in an inconsistnt state.

EBmaAllocFromOutOfRange80

This panic is raised by the AllocFrom() member function of CBitMapAllocator if the position passed into it is outside its valid range, i.e. is negative or is greater than or equal to the size.

EBmaAllocCountNegative81

This panic is raised by the Alloc() member function of CBitMapAllocator if the count value passed into it is not positive.

EBmaAllAlgnOutOfRange82

This panic is raised by the AllocAligned() member function of CBitMapAllocator if the alignment value passed into it is negative or greater than or equal to 32.

EBmaAllAlgnBOutOfRange83

This panic is raised by the AllocAlignedBlock() member function of CBitMapAllocator if the alignment value passed into it is negative or greater than or equal to 32.

EBmaAllocBlkOutOfRange84

This panic is raised by the AllocAt() member function of CBitMapAllocator if the position value passed into it is outside the permitted range.

EBmaChkBlkOutOfRange85

This panic is raised by the IsFree() member function of CBitMapAllocator if the position value passed into it is outside the permitted range.

EBmaFreeBlkOutOfRange86

This panic is raised by the Free() member function of CBitMapAllocator if the position value passed into it is outside the permitted range.

EBmaFreeBlkNotAllocated87

This panic is raised by the Free() member function of CBitMapAllocator if attempting to free a block that is not allocated.

EBmaAllocBlkNotFree88

This panic is raised by the Free() member function of CBitMapAllocator if attempting to allocate a block that is not free.

EActiveSchedulerReplacingSelf89

This panic is raised by call to the Replace() member function of CActiveScheduler when the replacement active scheduler is the same as the existing active scheduler.

EClnCheckFailed90

The panic is raised as a result of a call to the Pop() and PopAndDestroy() static member functions of the CleanupStack class.

The panic occurs when an the item to be popped is not the expected item.

EActiveSchedulerWaitAlreadyStarted91

This panic is raised by CActiveSchedulerWait::Start() when the CActiveSchedulerWait has already been started.

See also: CActiveSchedulerWait

EActiveSchedulerWaitNotStarted92

This panic is raised by CActiveSchedulerWait::AsyncStop() and CActiveSchedulerWait::CanStopNow() when the CActiveSchedulerWait has not been started.

EAsyncOneShotSetupFailed93

This panic is raised during construction of a CAsyncOneShot if the attempt to open a handle to the current thread fails.

ESvrBadSecurityPolicy94

Not used.

EPolSvrCallingBaseImplementation95

This panic is raised if CPolicyServer::CustomSecurityCheckL(), or CPolicyServer::CustomFailureActionL() are called.

Odds are that you forgot to implement one of these two functions in your CPolicyServer derived Server.

EPolSvr1stRangeNotZero96

This panic is raised in debug builds by the CPolicyServer constructor if TPolicy::iRanges[0] does not have a value of 0.

EPolSvrRangesNotIncreasing97

This panic is raised in debug builds by the CPolicyServer constructor if each element of TPolicy::iRanges is not greater than the previous.

EPolSvrElementsIndexValueInvalid98

This panic is raised in debug builds by the CPolicyServer constructor unless every element in TPolicy::iElementsIndex is valid. Every element, x, must not be one of (ESpecialCaseHardLimit <= x <= ESpecialCaseLimit) in order to be valid. See CPolicyServer::TSpecialCase for more information.

EPolSvrIOnConnectValueInvalid99

This panic is raised in debug builds by the CPolicyServer constructor if TPolicy::iOnConnect has an invalid value. iOnConnect must not be one of (ESpecialCaseHardLimit <= x <= ESpecialCaseLimit) in order to be valid. See CPolicyServer::TSpecialCase for more information.

EPolSvrPolicyInvalid100

This panic is raised if CPolicyServer::iPolicy is found to be invalid for an unkown reason. There is a good chance that your policy would cause the server to panic with one of the above specific policy panic codes if you run it in debug mode. See the policy server documentation for a description of a valid policy.

EPolSvrInvalidCustomResult101

The value returned from CustomSecurityCheckL or CustomFailureActionL was invalid. See CPolicyServer::TCustomResult for a list of valid results.

EPolSvrIRangeCountInvalid102

This panic is raised in debug builds by the CPolicyServer constructor if TPolicy.iRangeCount is not greater than 0. All policies given to the policy server must contain at least 1 policy.

EPolSvrActionPanicClient103

This panic is raised by the policy server framework if a message fails a policy check (custom or not) and the associated action is EPanicClient.

EObjInconsistent104

This panic is raised by CObjectIx class methods if inconsistent data condition occurs It can appear in debug build only.

EClnStackModified105

This panic is raised as a result of a call to the Pop() and PopAndDestroy() static member functions of the CleanupStack class.

The panic occurs when the cleanup operation of a popped item modifies the cleanup stack. In such a case, the function cannot guarantee that the correct items will be popped.

ECServer2InvalidSetPin106

This panic is raised as a result of a call to CServer2::SetPinClientDescriptors() after CServer2::Start() has been invoked on a CServer2 object.