/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-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/ |
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/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/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/linux/arch/xtensa/mm/ |
H A D | misc.S | 97 * If we have to deal with cache aliasing, we use temporary memory mappings 99 * the virtual address. We use way 0 and 1 for temporary mappings in such cases. 101 * The temporary DTLB entries shouldn't be flushed by interrupts, but are 103 * fast_second_level_miss handler re-established the temporary mapping. 141 /* We need to invalidate the temporary dtlb entry. */ 161 /* Setup a temporary DTLB for destination. */ 167 /* Setup a temporary DTLB for source. */ 202 /* We need to invalidate any temporary mapping! */
|
/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/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/drivers/net/ethernet/amd/ |
H A D | ariadne.h | 108 #define CSR48 0x3000 /* Temporary Storage */ 109 #define CSR49 0x3100 /* Temporary Storage */ 110 #define CSR50 0x3200 /* Temporary Storage */ 111 #define CSR51 0x3300 /* Temporary Storage */ 112 #define CSR52 0x3400 /* Temporary Storage */ 113 #define CSR53 0x3500 /* Temporary Storage */ 114 #define CSR54 0x3600 /* Temporary Storage */ 115 #define CSR55 0x3700 /* Temporary Storage */ 116 #define CSR56 0x3800 /* Temporary Storage */ 117 #define CSR57 0x3900 /* Temporary Storage */ [all …]
|
/openbmc/linux/lib/crypto/mpi/ |
H A D | mpi-div.c | 26 * preliminary calculated. We have to copy it to temporary space if it's in mpi_fdiv_r() 71 /* If den == quot, den needs temporary storage. 72 * If den == rem, den needs temporary storage. 73 * If num == quot, num needs temporary storage. 74 * If den has temporary storage, it can be normalized while being copied, 153 if (qp == np) { /* Copy NP object to temporary space. */ in mpi_tdiv_qr() 171 * the most significant word. Use temporary storage not to clobber in mpi_tdiv_qr() 190 * temporary space if it overlaps with the quotient or remainder. in mpi_tdiv_qr()
|
H A D | mpi-mul.c | 56 /* W and U are identical. Allocate temporary space for U. */ in mpi_mul() 61 /* Copy to the temporary space. */ in mpi_mul() 64 /* W and V are identical. Allocate temporary space for V. */ in mpi_mul() 66 /* Copy to the temporary space. */ in mpi_mul()
|
/openbmc/openbmc/poky/meta/recipes-devtools/patch/patch/ |
H A D | 0001-Don-t-leak-temporary-file-on-failed-ed-style-patch.patch | 4 Subject: [PATCH 1/2] Don't leak temporary file on failed ed-style patch 6 Now that we write ed-style patches to a temporary file before we 7 apply them, we need to ensure that the temporary file is removed 64 - pfatal ("Can't create temporary file %s", quotearg (tmpname)); 65 + pfatal ("Can't create temporary file %s", quotearg (TMPEDNAME));
|
/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"""
|