/openbmc/phosphor-logging/test/openpower-pels/ |
H A D | temporary_file_test.cpp | 72 // Create temporary file with some data in SetUp() 77 // Create temporary file with no data in SetUp() 91 // temporary file with Data 94 // temporary file with no data 130 // verify temporary file exists in TEST_F() 134 // Save path to temporary file in TEST_F() 143 // Verify second object now owns same temporary file and file exists in TEST_F() 154 // verify temporary file exists in TEST_F() 158 // Save path to first temporary file in TEST_F() 161 // Verify second temporary file exists in TEST_F() [all …]
|
/openbmc/phosphor-power/test/ |
H A D | temporary_file_tests.cpp | 86 // Create first TemporaryFile object and verify temporary file exists in TEST() 91 // Save path to temporary file in TEST() 100 // Verify second object now owns same temporary file and file exists in TEST() 109 // Create first TemporaryFile object and verify temporary file exists in TEST() 114 // Save path to first temporary file in TEST() 117 // Create second TemporaryFile object and verify temporary file exists in TEST() 122 // Save path to second temporary file in TEST() 125 // Verify temporary files are different in TEST() 134 // Verify second object now owns first temporary file and file exists in TEST() 138 // Verify second temporary file was deleted in TEST() [all …]
|
/openbmc/phosphor-power/ |
H A D | temporary_subdirectory.hpp | 27 * A temporary subdirectory in the file system. 29 * This class does NOT represent the system temporary directory (such as /tmp). 30 * It represents a temporary subdirectory below that directory. 32 * The temporary subdirectory is created by the constructor. The absolute path 35 * The temporary subdirectory can be deleted by calling remove(). Otherwise the 51 * Creates a temporary subdirectory below the system temporary directory 61 * Transfers ownership of a temporary subdirectory. 75 * Deletes the temporary subdirectory owned by this object. Then transfers 76 * ownership of the temporary subdirectory owned by the other object. 87 * Deletes the temporary subdirectory if necessary. [all …]
|
H A D | temporary_file.hpp | 27 * A temporary file in the file system. 29 * The temporary file is created by the constructor. The absolute path to the 32 * The temporary file can be deleted by calling remove(). Otherwise the file 48 * Creates a temporary file in the temporary directory (normally /tmp). 57 * Transfers ownership of a temporary file. 70 * Deletes the temporary file owned by this object. Then transfers 71 * ownership of the temporary file owned by the other object. 82 * Deletes the temporary file if necessary. 97 * Deletes the temporary file. 106 * Returns the absolute path to the temporary file. [all …]
|
H A D | temporary_file.cpp | 44 std::string{"Unable to create temporary file: "} + strerror(errno)}; in TemporaryFile() 47 // Store path to temporary file in TemporaryFile() 53 // Save errno value; will likely change when we delete temporary file in TemporaryFile() 56 // Delete temporary file. The destructor won't be called because the in TemporaryFile() 61 std::string{"Unable to close temporary file: "} + in TemporaryFile() 71 // Delete temporary file owned by this object in operator =() 74 // Move temporary file path from other object, transferring ownership in operator =() 87 // Delete temporary file from file system in remove()
|
H A D | temporary_subdirectory.cpp | 43 std::string{"Unable to create temporary subdirectory: "} + in TemporarySubDirectory() 47 // Store path to temporary subdirectory in TemporarySubDirectory() 57 // Delete temporary subdirectory owned by this object in operator =() 73 // Delete temporary subdirectory from file system in remove()
|
/openbmc/openpower-hw-diags/util/ |
H A D | temporary_file.hpp | 14 * A temporary file in the file system. 16 * The temporary file is created by the constructor. The absolute path to the 19 * The temporary file can be deleted by calling remove(). Otherwise the file 35 * Creates a temporary file in the temporary directory (normally /tmp). 44 * Transfers ownership of a temporary file. 57 * Deletes the temporary file owned by this object. Then transfers 58 * ownership of the temporary file owned by the other object. 69 * Deletes the temporary file if necessary. 84 * Deletes the temporary file. 93 * Returns the absolute path to the temporary file. [all …]
|
H A D | temporary_file.cpp | 26 std::string{"Unable to create temporary file: "} + strerror(errno)}; in TemporaryFile() 29 // Store path to temporary file in TemporaryFile() 35 // Save errno value; will likely change when we delete temporary file in TemporaryFile() 38 // Delete temporary file. The destructor won't be called because the in TemporaryFile() 43 std::string{"Unable to close temporary file: "} + in TemporaryFile() 53 // Delete temporary file owned by this object in operator =() 56 // Move temporary file path from other object, transferring ownership in operator =() 69 // Delete temporary file from file system in remove()
|
/openbmc/openpower-debug-collector/watchdog/ |
H A D | utils.hpp | 16 * A temporary file in the file system. 18 * The temporary file is created by the constructor. The absolute path to the 21 * The temporary file can be deleted by calling remove(). Otherwise the file 37 * @details Creates a temporary file in the temporary directory (normally 47 * @details Transfers ownership of a temporary file. 60 * @details Deletes the temporary file owned by this object. Then transfers 61 * ownership of the temporary file owned by the other object. 72 * @details description the temporary file if necessary. 87 * @brief Deletes the temporary file. 96 * @brief Returns the absolute path to the temporary file. [all …]
|
H A D | utils.cpp | 28 std::string{"Unable to create temporary file: "} + strerror(errno)}; in TemporaryFile() 31 // Store path to temporary file in TemporaryFile() 37 // Save errno value; will likely change when we delete temporary file in TemporaryFile() 40 // Delete temporary file. The destructor won't be called because the in TemporaryFile() 45 std::string{"Unable to close temporary file: "} + in TemporaryFile() 55 // Delete temporary file owned by this object in operator =() 58 // Move temporary file path from other object, transferring ownership in operator =() 71 // Delete temporary file from file system in remove()
|
/openbmc/phosphor-logging/extensions/openpower-pels/ |
H A D | temporary_file.hpp | 18 * A temporary file in the file system. 20 * The temporary file is created by the constructor. The absolute path to the 24 * The temporary file can be deleted by calling remove(). 39 * Creates a temporary file in the temporary directory (normally /tmp). 51 * Transfers ownership of a temporary file. 64 * Deletes the temporary file owned by this object. Then transfers 65 * ownership of the temporary file owned by the other object. 79 * Deletes the temporary file. 88 * Returns the absolute path to the temporary file. 92 * @return temporary file path [all …]
|
H A D | temporary_file.cpp | 30 std::string{"Unable to create temporary file: "} + strerror(errno)}; in TemporaryFile() 37 // Delete temporary file. The destructor won't be called because the in TemporaryFile() 44 // Store path to temporary file in TemporaryFile() 53 // Delete temporary file owned by this object in operator =() 56 // Move temporary file path from other object, transferring ownership in operator =() 69 // Delete temporary file from file system in remove()
|
/openbmc/openpower-proc-control/ |
H A D | temporary_file.hpp | 14 * A temporary file in the file system. 16 * The temporary file is created by the constructor. The absolute path to the 19 * The temporary file can be deleted by calling remove(). Otherwise the file 34 * Creates a temporary file in the temporary directory (normally /tmp). 43 * Deletes the temporary file if necessary. 58 * Deletes the temporary file. 67 * Returns the absolute path to the temporary file. 71 * @return temporary file path 80 * Absolute path to the temporary file.
|
H A D | temporary_file.cpp | 28 std::string{"Unable to create temporary file: "} + strerror(errno)}; in TemporaryFile() 31 // Store path to temporary file in TemporaryFile() 37 // Save errno value; will likely change when we delete temporary file in TemporaryFile() 40 // Delete temporary file. The destructor won't be called because in TemporaryFile() 46 std::string{"Unable to close temporary file: "} + in TemporaryFile() 55 // Delete temporary file from file system in remove()
|
/openbmc/openbmc/meta-facebook/meta-yosemite4/recipes-phosphor/settings/ |
H A D | phosphor-settings-defaults-native.bbappend | 4 file://yosemite4-temporary-software-versions.yml \ 5 file://yosemite4-temporary-host-software-versions.yml \ 10 yosemite4-temporary-host-software-versions.yml \ 15 yosemite4-temporary-software-versions.yml \
|
/openbmc/openpower-proc-control/procedures/phal/ |
H A D | reinit_devtree.cpp | 108 * 2. Create temporary devtree file by copying devtree r/o file 109 * 3. Override temporary copy of devtree with attribute data file 113 * 4. Copy temporary copy devtree to r/w devtree version file. 124 // All the file operations is done on temporary copy in reinitDevtree() 149 // create temporary data file to store the devtree export data in reinitDevtree() 153 // get temporary datafile pointer. in reinitDevtree() 160 std::format("Temporary data file failed to open: ({})", in reinitDevtree() 182 // Step 2: Create temporary devtree file by copying devtree r/o version in reinitDevtree() 191 std::format("import, temporary data file failed to open: ({})", in reinitDevtree() 212 // Temporary file reinit is success. in reinitDevtree() [all …]
|
/openbmc/openbmc/poky/documentation/dev-manual/ |
H A D | quilt.rst | 23 #. *Find the Source Code:* Temporary source code used by the 25 ":ref:`dev-manual/temporary-source-code:finding temporary source code`" section to 26 learn how to locate the directory that has the temporary source code for a 30 has the temporary source code. That directory is defined by the 60 All the modifications you make to the temporary source code disappear
|
/openbmc/linux/arch/xtensa/mm/ |
D | misc.S |
|
/openbmc/u-boot/tools/patman/ |
H A D | tools.py | 14 # Output directly (generally this is temporary) 37 This either creates a temporary directory or checks that the one supplied 38 by the user is valid. For a temporary directory, it makes a note to 43 intermediate and output files. If is None - create a temporary 46 created temporary directory will be destroyed on exit. 65 tout.Debug("Using temporary directory '%s'" % outdir) 71 tout.Debug("Deleted temporary directory '%s'" % outdir) 77 """Tidy up: delete output directory if temporary and not preserved."""
|
/openbmc/linux/drivers/net/ethernet/amd/ |
D | ariadne.h |
|
/openbmc/openbmc/poky/meta/recipes-devtools/rpm/files/ |
H A D | 0001-When-cross-installing-execute-package-scriptlets-wit.patch | 12 Remove leaking temporary scriptlet files 15 cleaning up written temporary scriptlet files (same flag controls both 17 target sysroot also for temporary files, but we need to chroot out to be able 18 to actually run the rpm scriptlets (purpose of this patch), so the temporary
|
/openbmc/u-boot/scripts/ |
H A D | fill_scrapyard.py | 107 """Useful class to handle a temporary file. 109 tempfile.mkstemp() is often used to create a unique temporary file, 113 Even when the caller errors out on the way, the temporary file must 120 """Constructor - create a temporary file""" 125 """Destructor - delete the temporary file"""
|
/openbmc/openbmc/meta-facebook/meta-harma/recipes-phosphor/settings/ |
H A D | phosphor-settings-defaults-native.bbappend | 4 file://harma-temporary-software-versions.yml \ 8 harma-temporary-software-versions.yml \
|
/openbmc/openbmc/meta-facebook/meta-santabarbara/recipes-phosphor/settings/ |
H A D | phosphor-settings-defaults-native.bbappend | 4 file://santabarbara-temporary-software-versions.yml \ 8 santabarbara-temporary-software-versions.yml \
|
/openbmc/openbmc/meta-facebook/meta-ventura/recipes-phosphor/settings/ |
H A D | phosphor-settings-defaults-native.bbappend | 4 file://ventura-temporary-software-versions.yaml \ 8 cat ventura-temporary-software-versions.yaml >> ${D}${settings_datadir}/defaults.yaml
|