GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: fxe_file_attributes_set.c Lines: 8 8 100.0 %
Date: 2026-03-06 18:49:02 Branches: 10 10 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_attributes_set                            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 attribute set call.     */
47
/*                                                                        */
48
/*  INPUT                                                                 */
49
/*                                                                        */
50
/*    media_ptr                             Media control block pointer   */
51
/*    file_name                             File name pointer             */
52
/*    attributes                            New file attributes           */
53
/*                                                                        */
54
/*  OUTPUT                                                                */
55
/*                                                                        */
56
/*    return status                                                       */
57
/*                                                                        */
58
/*  CALLS                                                                 */
59
/*                                                                        */
60
/*    _fx_file_attributes_set               Actual file attributes set    */
61
/*                                            service                     */
62
/*                                                                        */
63
/*  CALLED BY                                                             */
64
/*                                                                        */
65
/*    Application Code                                                    */
66
/*                                                                        */
67
/**************************************************************************/
68
421
UINT  _fxe_file_attributes_set(FX_MEDIA *media_ptr, CHAR *file_name, UINT attributes)
69
{
70
71
UINT status;
72
73
74
    /* Check for a null media pointer.  */
75
421
    if (media_ptr == FX_NULL)
76
    {
77
1
        return(FX_PTR_ERROR);
78
    }
79
80
    /* Check for invalid attributes.  */
81
420
    if ((INT)attributes & ~(FX_READ_ONLY | FX_HIDDEN | FX_SYSTEM | FX_ARCHIVE))
82
    {
83
1
        return(FX_INVALID_ATTR);
84
    }
85
86
    /* Check for a valid caller.  */
87

419
    FX_CALLER_CHECKING_CODE
88
89
    /* Call actual set attributes service.  */
90
11
    status =  _fx_file_attributes_set(media_ptr, file_name, attributes);
91
92
    /* File attribute set is complete, return status.  */
93
11
    return(status);
94
}
95