os/persistentdata/persistentstorage/store/ULIB/UL_UTL.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 1998-2010 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 "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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include "UL_STD.H"
    17 
    18 
    19 #if defined (_DEBUG)
    20 
    21 #pragma BullseyeCoverage off
    22 
    23 //
    24 // Leave to the current control region.
    25 //
    26 void Util::__DbgLeave(TInt aReason,const TDesC8& /*aFileName*/,TInt /*aLineNo*/)
    27 	{
    28 	//coverity[naming_error]
    29 	User::Leave(aReason);
    30 	}
    31 
    32 //
    33 // Leave with the KErrNoMemory error.
    34 //
    35 void Util::__DbgLeaveNoMemory(const TDesC8& aFileName,TInt aLineNo)
    36 	{
    37 	//coverity[naming_error]
    38 	__DbgLeave(KErrNoMemory,aFileName,aLineNo);
    39 	}
    40 
    41 //
    42 // Leave if aReason is negative.
    43 //
    44 TInt Util::__DbgLeaveIfError(TInt aReason,const TDesC8& aFileName,TInt aLineNo)
    45 	{
    46 	if (aReason<0)
    47 		{
    48 		//coverity[naming_error]
    49 		__DbgLeave(aReason,aFileName,aLineNo);
    50 		}
    51 	return aReason;
    52 	}
    53 
    54 //
    55 // Leave if aPtr is null.
    56 //
    57 TAny *Util::__DbgLeaveIfNull(TAny *aPtr,const TDesC8& aFileName,TInt aLineNo)
    58 	{
    59 	if (aPtr==NULL)
    60 		{
    61 		//coverity[naming_error]
    62 		__DbgLeaveNoMemory(aFileName,aLineNo);
    63 		}
    64 	return aPtr;
    65 	}
    66 
    67 #pragma BullseyeCoverage on
    68 
    69 #endif
    70