Coverage Report

Created: 2026-02-11 06:51

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/xerces-c/src/xercesc/internal/MemoryManagerImpl.cpp
Line
Count
Source
1
/*
2
 * Licensed to the Apache Software Foundation (ASF) under one or more
3
 * contributor license agreements.  See the NOTICE file distributed with
4
 * this work for additional information regarding copyright ownership.
5
 * The ASF licenses this file to You under the Apache License, Version 2.0
6
 * (the "License"); you may not use this file except in compliance with
7
 * the License.  You may obtain a copy of the License at
8
 *
9
 *      http://www.apache.org/licenses/LICENSE-2.0
10
 *
11
 * Unless required by applicable law or agreed to in writing, software
12
 * distributed under the License is distributed on an "AS IS" BASIS,
13
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
 * See the License for the specific language governing permissions and
15
 * limitations under the License.
16
 */
17
18
/*
19
 * $Id: MemoryManagerImpl.cpp 1329216 2012-04-23 12:44:51Z amassari $
20
 */
21
22
23
// ---------------------------------------------------------------------------
24
//  Includes
25
// ---------------------------------------------------------------------------
26
#include <xercesc/internal/MemoryManagerImpl.hpp>
27
#include <xercesc/util/OutOfMemoryException.hpp>
28
29
XERCES_CPP_NAMESPACE_BEGIN
30
31
MemoryManager* MemoryManagerImpl::getExceptionMemoryManager()
32
4.28k
{
33
4.28k
    return this;
34
4.28k
}
35
36
void* MemoryManagerImpl::allocate(XMLSize_t size)
37
120M
{
38
120M
    void* memptr;
39
120M
    try {
40
120M
        memptr = ::operator new(size);
41
120M
    }
42
120M
    catch(...) {
43
0
        throw OutOfMemoryException();
44
0
    }
45
120M
    if(memptr==NULL && size!=0)
46
0
        throw OutOfMemoryException();
47
120M
    return memptr;
48
120M
}
49
50
void MemoryManagerImpl::deallocate(void* p)
51
151M
{
52
151M
    if (p)
53
120M
        ::operator delete(p);
54
151M
}
55
56
XERCES_CPP_NAMESPACE_END