GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: fxe_file_extended_allocate.c Lines: 6 6 100.0 %
Date: 2026-03-06 18:49:02 Branches: 8 8 100.0 %

Line Branch Exec Source
1
/***************************************************************************
2
 * Copyright (c) 2024 Microsoft Corporation
3
 * Copyright (c) 2026-present Eclipse ThreadX contributors
4
 *
5
 * This program and the accompanying materials are made available under the
6
 * terms of the MIT License which is available at
7
 * https://opensource.org/licenses/MIT.
8
 *
9
 * SPDX-License-Identifier: MIT
10
 **************************************************************************/
11
12
13
/**************************************************************************/
14
/**************************************************************************/
15
/**                                                                       */
16
/** FileX Component                                                       */
17
/**                                                                       */
18
/**   File                                                                */
19
/**                                                                       */
20
/**************************************************************************/
21
/**************************************************************************/
22
23
#define FX_SOURCE_CODE
24
25
26
/* Include necessary system files.  */
27
28
#include "fx_api.h"
29
#include "fx_file.h"
30
31
FX_CALLER_CHECKING_EXTERNS
32
33
34
/**************************************************************************/
35
/*                                                                        */
36
/*  FUNCTION                                               RELEASE        */
37
/*                                                                        */
38
/*    _fxe_file_extended_allocate                         PORTABLE C      */
39
/*                                                           6.1          */
40
/*  AUTHOR                                                                */
41
/*                                                                        */
42
/*    William E. Lamie, Microsoft Corporation                             */
43
/*                                                                        */
44
/*  DESCRIPTION                                                           */
45
/*                                                                        */
46
/*    This function checks for errors in the file allocate service.       */
47
/*                                                                        */
48
/*  INPUT                                                                 */
49
/*                                                                        */
50
/*    file_ptr                              File control block pointer    */
51
/*    size                                  Number of bytes to allocate   */
52
/*                                                                        */
53
/*  OUTPUT                                                                */
54
/*                                                                        */
55
/*    return status                                                       */
56
/*                                                                        */
57
/*  CALLS                                                                 */
58
/*                                                                        */
59
/*    _fx_file_extended_allocate            Actual file allocate service  */
60
/*                                                                        */
61
/*  CALLED BY                                                             */
62
/*                                                                        */
63
/*    Application Code                                                    */
64
/*                                                                        */
65
/**************************************************************************/
66
429
UINT  _fxe_file_extended_allocate(FX_FILE *file_ptr, ULONG64 size)
67
{
68
69
UINT status;
70
71
72
    /* Check for a null file pointer.  */
73
429
    if (file_ptr == FX_NULL)
74
    {
75
1
        return(FX_PTR_ERROR);
76
    }
77
78
    /* Check for a valid caller.  */
79

428
    FX_CALLER_CHECKING_CODE
80
81
    /* Call actual file allocate service.  */
82
20
    status =  _fx_file_extended_allocate(file_ptr, size);
83
84
    /* Return status to the caller.  */
85
20
    return(status);
86
}
87