| /openbmc/entity-manager/src/fru_device/ |
| H A D | fru_reader.cpp | 15 if (eof.has_value() && cursor >= eof.value()) in read() 35 eof = (blk * cacheBlockSize) + ret; in read() 56 if (eof.has_value() && (eof.value() / cacheBlockSize == blk)) in read() 58 available = eof.value() % cacheBlockSize; in read()
|
| H A D | fru_reader.hpp | 49 std::optional<size_t> eof; member in FRUReader
|
| /openbmc/openbmc/poky/bitbake/lib/bb/pysh/ |
| H A D | pyshlex.py | 139 def add(self, data, eof=False): argument 146 self._parse(eof) 168 def _parse_squote(self, buf, result, eof): argument 179 def _parse_bquote(self, buf, result, eof): argument 195 def _parse_dquote(self, buf, result, eof): argument 210 def _parse_command(self, buf, result, eof): argument 228 def _parse_parameter(self, buf, result, eof): argument 243 def _parse_dollar(self, buf, result, eof): argument 272 if not eof: 292 pos, closed = parsefunc(buf, result, eof) [all …]
|
| H A D | pyshyacc.py | 664 def parse(input, eof=False, debug=False): argument 672 remaining = lexer.add(input, eof)
|
| /openbmc/qemu/tests/unit/ |
| H A D | test-qga.c | 418 int64_t id, eof; in test_qga_file_ops() local 442 eof = qdict_get_bool(val, "eof"); in test_qga_file_ops() 444 g_assert_cmpint(eof, ==, 0); in test_qga_file_ops() 487 eof = qdict_get_bool(val, "eof"); in test_qga_file_ops() 490 g_assert(eof); in test_qga_file_ops() 503 eof = qdict_get_bool(val, "eof"); in test_qga_file_ops() 506 g_assert(eof); in test_qga_file_ops() 519 eof = qdict_get_bool(val, "eof"); in test_qga_file_ops() 521 g_assert(!eof); in test_qga_file_ops() 531 eof = qdict_get_bool(val, "eof"); in test_qga_file_ops() [all …]
|
| H A D | test-vmstate.c | 777 char eof = qemu_get_byte(fload); in test_load_q() local 781 g_assert_cmpint(eof, ==, QEMU_VM_EOF); in test_load_q() 1121 char eof; in test_gtree_load_domain() local 1131 eof = qemu_get_byte(fload); in test_gtree_load_domain() 1134 g_assert_cmpint(eof, ==, QEMU_VM_EOF); in test_gtree_load_domain() 1236 char eof; in test_gtree_load_iommu() local 1245 eof = qemu_get_byte(fload); in test_gtree_load_iommu() 1248 g_assert_cmpint(eof, ==, QEMU_VM_EOF); in test_gtree_load_iommu() 1369 char eof; in test_load_qlist() local 1380 eof = qemu_get_byte(fload); in test_load_qlist() [all …]
|
| /openbmc/openbmc/poky/meta/lib/oeqa/utils/ |
| H A D | sshcontrol.py | 54 eof = False 55 while time.time() < endtime and not eof: 63 eof = True 73 if not eof:
|
| /openbmc/openbmc/poky/bitbake/lib/bb/parse/parse_py/ |
| H A D | BBHandler.py | 102 feeder(lineno, "", filename, base_name, statements, eof=True) 165 def feeder(lineno, s, fn, root, statements, eof=False): argument 189 if m and not eof: 198 if eof:
|
| /openbmc/openbmc/poky/meta/lib/oeqa/core/target/ |
| H A D | ssh.py | 225 eof = False 227 while not has_timeout and not eof: 234 eof = True 258 if not eof:
|
| /openbmc/qemu/python/qemu/utils/ |
| H A D | qemu_ga_client.py | 87 eof = False 89 while not eof: 93 eof = ret['eof']
|
| /openbmc/openbmc-test-automation/bin/ |
| H A D | ssh_pw | 59 eof {
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/cpprest/cpprest/ |
| H A D | disable-float-tests.patch | 22 } while (!std_istream.eof());
|
| /openbmc/openbmc/meta-openembedded/meta-networking/recipes-daemons/ncftp/ncftp/ |
| H A D | ncftp-configure-use-BUILD_CC-for-ccdv.patch | 23 /* eof ccdv.c */
|
| /openbmc/phosphor-logging/extensions/openpower-pels/ |
| H A D | log_id.cpp | 110 if (rf.eof()) in checkFileForZeroData()
|
| /openbmc/phosphor-bmc-code-mgmt/bmc/ |
| H A D | utils.cpp | 75 if (inFile.eof()) in mergeFiles()
|
| H A D | version.cpp | 86 if (!efile.eof()) in getRepeatedValues()
|
| /openbmc/openbmc/poky/meta/recipes-extended/cronie/cronie/ |
| H A D | make_error_func_prototype_complete.patch | 21 /* return NULL if eof or syntax error occurs;
|
| /openbmc/openpower-pnor-code-mgmt/ |
| H A D | version.cpp | 90 if (!efile.eof()) in getValue()
|
| /openbmc/bmcweb/features/kvm/ |
| H A D | kvm_websocket.hpp | 150 if (ec == boost::asio::error::eof) in doWrite()
|
| /openbmc/openbmc-tools/dbus_sensor_tester/ |
| H A D | meson.build | 73 '-Wno-newline-eof',
|
| /openbmc/bmcweb/http/ |
| H A D | server_sent_event_impl.hpp | 159 if (ec == boost::asio::error::eof) in doWriteCallback()
|
| /openbmc/qemu/block/ |
| H A D | gluster.c | 778 off_t eof; in qemu_gluster_test_seek() local 780 eof = glfs_lseek(fd, 0, SEEK_END); in qemu_gluster_test_seek() 781 if (eof < 0) { in qemu_gluster_test_seek() 787 ret = glfs_lseek(fd, eof, SEEK_DATA); in qemu_gluster_test_seek()
|
| /openbmc/bmcweb/features/serial/ |
| H A D | obmc_console.hpp | 82 if (ec == boost::asio::error::eof) in doWrite()
|
| /openbmc/ipmitool/lib/ |
| H A D | ipmi_sunoem.c | 1752 unsigned char eof; member 1897 setval_req.eof = 0; in send_luapi_prop_name() 1981 setval_req.eof = 1; in send_luapi_prop_value() 2126 unsigned char eof; member 2232 } while (getfile_rsp->eof == 0); in ipmi_sunoem_getfile()
|
| /openbmc/qemu/qga/ |
| H A D | commands-posix.c | 568 read_data->eof = feof(fh); in guest_file_read_unsafe() 627 write_data->eof = feof(fh); in qmp_guest_file_write() 669 seek_data->eof = feof(fh); in qmp_guest_file_seek()
|