Home
last modified time | relevance | path

Searched refs:entryCount (Results 1 – 9 of 9) sorted by relevance

/openbmc/bmcweb/scripts/
H A Dhostlogger_test.py69 entryCount = 0
73 entryCount = label_parser(totalEntryUri, "Members@odata.count")
74 if id == entryCount:
78 elif id < entryCount:
80 for i in range(id + 1, entryCount):
89 id = entryCount
/openbmc/bmcweb/redfish-core/lib/
H A Dsystems_logservices_postcodes.hpp378 const uint64_t entryCount, size_t skip, size_t top) in getPostCodeForBoot() argument
381 [asyncResp, bootIndex, bootCount, entryCount, skip, in getPostCodeForBoot()
393 uint64_t endCount = entryCount; in getPostCodeForBoot()
396 endCount = entryCount + postcode.size(); in getPostCodeForBoot()
397 if (skip < endCount && (top + skip) > entryCount) in getPostCodeForBoot()
400 std::max(static_cast<uint64_t>(skip), entryCount) - in getPostCodeForBoot()
401 entryCount; in getPostCodeForBoot()
404 entryCount; in getPostCodeForBoot()
438 uint64_t entryCount = 0; in getCurrentBootNumber() local
443 [asyncResp, entryCount, skip, in getCurrentBootNumber()
[all …]
H A Dmanager_logservices_journal.hpp102 for (uint64_t entryCount = logEntryArray->size(); in readJournalEntries() local
103 entryCount < topEntryCount; entryCount++) in readJournalEntries()
H A Dlog_services.hpp1571 uint64_t entryCount = 0; in handleSystemsLogServiceEventLogLogEntryCollection() local
1608 entryCount++; in handleSystemsLogServiceEventLogLogEntryCollection()
1611 if (entryCount <= skip || entryCount > skip + top) in handleSystemsLogServiceEventLogLogEntryCollection()
1619 asyncResp->res.jsonValue["Members@odata.count"] = entryCount; in handleSystemsLogServiceEventLogLogEntryCollection()
1620 if (skip + top < entryCount) in handleSystemsLogServiceEventLogLogEntryCollection()
/openbmc/libbej/src/
H A Dbej_dictionary.c52 if (propertyIndex >= header->entryCount) in bejValidatePropertyOffset()
93 for (uint16_t index = propertyIndex; index < header->entryCount; ++index) in bejDictGetProperty()
134 for (uint16_t index = propertyIndex; index < header->entryCount; ++index) in bejDictGetPropertyByName()
/openbmc/linux/drivers/scsi/qla4xxx/
H A Dql4_iocb.c103 marker_entry->hdr.entryCount = 1; in qla4xxx_send_marker_iocb()
128 cont_entry->hdr.entryCount = 1; in qla4xxx_alloc_cont_entry()
331 cmd_entry->hdr.entryCount = req_cnt; in qla4xxx_send_command_to_isp()
405 passthru_iocb->hdr.entryCount = task_data->iocb_req_cnt; in qla4xxx_send_passthru0()
494 mrb->mbox->hdr.entryCount = mrb->iocb_cnt; in qla4xxx_send_mbox_iocb()
H A Dql4_fw.h1072 uint8_t entryCount; member
/openbmc/libbej/include/libbej/
H A Dbej_dictionary.h50 uint16_t entryCount; member
/openbmc/libbej/test/
H A Dbej_dictionary_test.cpp80 for (uint16_t index = 0; index < header->entryCount; ++index) in TEST()