Home
last modified time | relevance | path

Searched refs:prefixLength (Results 1 – 13 of 13) sorted by relevance

/openbmc/webui-vue/src/views/Settings/Network/
H A DModalIpv6.vue34 :label="$t('pageNetwork.modal.prefixLength')"
35 label-for="prefixLength"
38 id="prefixLength"
39 v-model="form.prefixLength"
41 :state="getValidationState(v$.form.prefixLength)"
42 @input="v$.form.prefixLength.$touch()"
45 <template v-if="v$.form.prefixLength.required.$invalid">
49 v-if="v$.form.prefixLength.validatePrefixLength.$invalid"
98 prefixLength: '',
109 prefixLength: {
[all …]
H A DTableIpv6.vue137 label: i18n.global.t('pageNetwork.table.prefixLength'),
/openbmc/bmcweb/redfish-core/include/utils/
H A Dip_utils.hpp47 uint8_t* prefixLength = nullptr) in ipv4VerifyIpAndGetBitcount() argument
56 if (prefixLength != nullptr) in ipv4VerifyIpAndGetBitcount()
112 *prefixLength = prefix; in ipv4VerifyIpAndGetBitcount()
/openbmc/bmcweb/redfish-core/lib/
H A Dethernet.hpp93 uint8_t prefixLength = 0; member
103 size_t prefixLength = 0; member
604 ipv6Address.prefixLength = *prefix; in extractIPV6Data()
782 inline void createIPv4(const std::string& ifaceId, uint8_t prefixLength, in createIPv4() argument
799 "xyz.openbmc_project.Network.IP.Protocol.IPv4", address, prefixLength, in createIPv4()
819 uint8_t prefixLength, const std::string& address, in deleteAndCreateIPAddress() argument
824 [asyncResp, version, ifaceId, address, prefixLength, in deleteAndCreateIPAddress()
842 address, prefixLength, gateway); in deleteAndCreateIPAddress()
897 inline void createIPv6(const std::string& ifaceId, uint8_t prefixLength, in createIPv6() argument
924 "xyz.openbmc_project.Network.IP.Protocol.IPv6", address, prefixLength, in createIPv6()
[all …]
H A Dhypervisor_system.hpp438 const std::string& ifaceId, uint8_t prefixLength, in createHypervisorIPv4() argument
444 setHypervisorIPv4Subnet(asyncResp, ifaceId, prefixLength); in createHypervisorIPv4()
461 const uint8_t prefixLength = 0; in deleteHypervisorIPv4() local
464 setHypervisorIPv4Subnet(asyncResp, ifaceId, prefixLength); in deleteHypervisorIPv4()
572 uint8_t prefixLength = 0; in handleHypervisorIPv4StaticPatch() local
580 if (!ip_util::ipv4VerifyIpAndGetBitcount(subnetMask, &prefixLength)) in handleHypervisorIPv4StaticPatch()
596 createHypervisorIPv4(ifaceId, prefixLength, gateway, address, asyncResp); in handleHypervisorIPv4StaticPatch()
/openbmc/phosphor-networkd/src/
H A Dipaddress.cpp63 IP::prefixLength(addr.getPfx(), true); in IPAddress()
74 uint8_t IPAddress::prefixLength(uint8_t /*value*/) in prefixLength() function in phosphor::network::IPAddress
96 "NET_IP", address(), "NET_PFX", prefixLength(), "NET_INTF", in delete_()
H A Dipaddress.hpp47 uint8_t prefixLength(uint8_t) override;
59 using IP::prefixLength;
H A Dethernet_interface.cpp267 uint8_t prefixLength, std::string) in ip() argument
298 if (prefixLength == 0) in ip()
302 ifaddr.emplace(*addr, prefixLength); in ip()
307 prefixLength, "ERROR", e); in ip()
310 Argument::ARGUMENT_VALUE(stdplus::toStr(prefixLength).c_str())); in ip()
H A Dethernet_interface.hpp129 uint8_t prefixLength, std::string) override;
/openbmc/bmcweb/test/redfish-core/lib/
H A Dethernet_test.cpp56 EXPECT_EQ(addrOut[0].prefixLength, 24); in TEST()
81 EXPECT_EQ(addrOut[0].prefixLength, 24); in TEST()
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/js/
H A Dqunit-1.18.0.js188prefixLength,suffixLength,bestLongtextA,bestLongtextB,bestShorttextA,bestShorttextB;seed=longtext.…
189prefixLength);bestLongtextA=longtext.substring(0,i-suffixLength);bestLongtextB=longtext.substring(…
/openbmc/linux/lib/zstd/compress/
H A Dzstd_compress.c2911 const size_t prefixLength = length & unrollMask; in ZSTD_isRLE() local
2916 if (prefixLength && ZSTD_count(ip+1, ip, ip+prefixLength) != prefixLength-1) { in ZSTD_isRLE()
2919 for (i = prefixLength; i != length; i += unrollSize) { in ZSTD_isRLE()
/openbmc/openbmc-tools/openbmctool/
H A Dopenbmctool.py3962 data = {"data": [protocol[args.type], args.address, int(args.prefixLength),
5237 parser_ip_config.add_argument("-l", "--prefixLength", required=True,
5238 help="The prefixLength of IP address")