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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
21 #pragma BullseyeCoverage off
24 // Leave to the current control region.
26 void Util::__DbgLeave(TInt aReason,const TDesC8& /*aFileName*/,TInt /*aLineNo*/)
28 //coverity[naming_error]
33 // Leave with the KErrNoMemory error.
35 void Util::__DbgLeaveNoMemory(const TDesC8& aFileName,TInt aLineNo)
37 //coverity[naming_error]
38 __DbgLeave(KErrNoMemory,aFileName,aLineNo);
42 // Leave if aReason is negative.
44 TInt Util::__DbgLeaveIfError(TInt aReason,const TDesC8& aFileName,TInt aLineNo)
48 //coverity[naming_error]
49 __DbgLeave(aReason,aFileName,aLineNo);
55 // Leave if aPtr is null.
57 TAny *Util::__DbgLeaveIfNull(TAny *aPtr,const TDesC8& aFileName,TInt aLineNo)
61 //coverity[naming_error]
62 __DbgLeaveNoMemory(aFileName,aLineNo);
67 #pragma BullseyeCoverage on