Searched refs:efile (Results 1 – 9 of 9) sorted by relevance
| /openbmc/phosphor-bmc-code-mgmt/bmc/ |
| H A D | version.cpp | 61 std::ifstream efile; in getRepeatedValues() local 63 efile.exceptions(std::ifstream::failbit | std::ifstream::badbit); in getRepeatedValues() 68 efile.open(manifestFilePath); in getRepeatedValues() 69 while (getline(efile, line)) in getRepeatedValues() 82 efile.close(); in getRepeatedValues() 86 if (!efile.eof()) in getRepeatedValues() 133 std::ifstream efile(releaseFilePath); in getBMCMachine() local 136 while (getline(efile, line)) in getBMCMachine() 161 std::ifstream efile(releaseFilePath); in getBMCExtendedVersion() local 164 while (getline(efile, line)) in getBMCExtendedVersion() [all …]
|
| H A D | item_updater.cpp | 944 std::ifstream efile(file.c_str()); in checkImage() local 945 if (efile.good() != 1) in checkImage()
|
| /openbmc/openpower-pnor-code-mgmt/ |
| H A D | version.cpp | 65 std::ifstream efile; in getValue() local 67 efile.exceptions(std::ifstream::failbit | std::ifstream::badbit | in getValue() 72 efile.open(filePath); in getValue() 73 while (getline(efile, line)) in getValue() 86 efile.close(); in getValue() 90 if (!efile.eof()) in getValue() 94 efile.close(); in getValue()
|
| /openbmc/openbmc/poky/meta/lib/oe/ |
| H A D | reproducible.py | 167 cached, efile = d.getVar('__CACHED_SOURCE_DATE_EPOCH') or (None, None) 168 if cached and efile == epochfile: 171 if cached and epochfile != efile: 172 bb.debug(1, "Epoch file changed from %s to %s" % (efile, epochfile))
|
| /openbmc/phosphor-psu-code-mgmt/src/ |
| H A D | version.cpp | 37 std::ifstream efile(filePath); in getValues() local 41 while (getline(efile, line)) in getValues()
|
| /openbmc/openbmc/poky/meta/classes/ |
| H A D | externalsrc.bbclass | 174 with open(git_exclude_file, 'r+') as efile: 175 elines = efile.readlines() 179 efile.write('/' + link + '\n')
|
| /openbmc/openbmc/poky/bitbake/lib/bb/fetch2/ |
| H A D | __init__.py | 1518 efile = os.path.join(rootdir, os.path.basename(base)) 1520 efile = file 1534 cmd = 'gzip -dc %s > %s' % (file, efile) 1536 cmd = 'bzip2 -dc %s > %s' % (file, efile) 1540 cmd = 'xz -dc %s > %s' % (file, efile) 1544 cmd = 'lzip -dc %s > %s' % (file, efile) 1552 cmd = 'zstd --decompress --stdout %s > %s' % (file, efile)
|
| /openbmc/openbmc/poky/bitbake/lib/ply/ |
| H A D | yacc.py | 2886 efile = func_code(self.error_func).co_filename 2887 self.files[efile] = 1 2890 self.log.error("%s:%d: p_error() requires 1 argument",efile,eline)
|
| /openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/ |
| H A D | views.py | 1978 with open("{}/{}".format(logs_dir, file)) as efile: 1979 content = efile.read()
|