Searched refs:ntpServers (Results 1 – 7 of 7) sorted by relevance
/openbmc/webui-vue/src/store/modules/Settings/ |
H A D | DateTimeStore.js | 7 ntpServers: [], property in DateTimeStore.state 11 ntpServers: (state) => state.ntpServers, 15 setNtpServers: (state, ntpServers) => (state.ntpServers = ntpServers), 24 const ntpServers = response.data.NTP.NTPServers; 26 commit('setNtpServers', ntpServers);
|
/openbmc/bmcweb/redfish-core/lib/ |
H A D | network_protocol.hpp | 79 const std::vector<std::string>* ntpServers = in extractNTPServersAndDomainNamesData() 82 if (ntpServers != nullptr) in extractNTPServersAndDomainNamesData() 84 ntpData.insert(ntpData.end(), ntpServers->begin(), in extractNTPServersAndDomainNamesData() 85 ntpServers->end()); in extractNTPServersAndDomainNamesData() 125 std::vector<std::string> ntpServers; in getEthernetIfaceData() 131 callback(false, ntpServers, dynamicNtpServers, domainNames); in getEthernetIfaceData() 135 extractNTPServersAndDomainNamesData(dbusData, ntpServers, in getEthernetIfaceData() 138 callback(true, ntpServers, dynamicNtpServers, domainNames); in getEthernetIfaceData() 224 const std::vector<std::string>& ntpServers, in getNetworkData() 233 asyncResp->res.jsonValue["NTP"]["NTPServers"] = ntpServers; in getNetworkData() 81 const std::vector<std::string>* ntpServers = extractNTPServersAndDomainNamesData() local 127 std::vector<std::string> ntpServers; getEthernetIfaceData() local 228 __anonbeab24d20302( const bool& success, const std::vector<std::string>& ntpServers, const std::vector<std::string>& dynamicNtpServers, const std::vector<std::string>& domainNames) getNetworkData() argument [all...] |
/openbmc/webui-vue/src/views/Settings/DateTime/ |
H A D | DateTime.vue | 135 :label="$t('pageDateTime.form.ntpServers.server1')" 157 :label="$t('pageDateTime.form.ntpServers.server2')" 172 :label="$t('pageDateTime.form.ntpServers.server3')" 280 ...mapState('dateTime', ['ntpServers', 'isNtpProtocolEnabled']), 301 ntpServers() { 340 ] = [this.ntpServers[0], this.ntpServers[1], this.ntpServers[2]]; 380 [this.ntpServers[0], this.ntpServers[1], this.ntpServers[2]] = [
|
/openbmc/phosphor-networkd/test/ |
H A D | test_ethernet_interface.cpp | 65 ServerList ntpServers = {"10.1.1.1", "10.2.2.2", "10.3.3.3"}; in setNtpServers() local 66 interface.EthernetInterfaceIntf::ntpServers(ntpServers); in setNtpServers() 71 return interface.EthernetInterfaceIntf::ntpServers(); in getNtpServers() 179 EXPECT_THROW(interface.ntpServers(servers), NotAllowed); in TEST_F()
|
/openbmc/phosphor-networkd/src/ |
H A D | ethernet_interface.hpp | 187 ServerList ntpServers(ServerList value) override;
|
H A D | ethernet_interface.cpp | 106 EthernetInterfaceIntf::ntpServers( in EthernetInterface() 553 EthernetInterfaceIntf::ntpServers(getNTPServerFromTimeSyncd()); in loadNTPServers() 709 ServerList EthernetInterface::ntpServers(ServerList /*servers*/) in ntpServers() function in phosphor::network::EthernetInterface
|
/openbmc/phosphor-webui/app/common/services/ |
H A D | api-utils.js | 1302 setNTPServers: function(ntpServers) { argument 1308 data: JSON.stringify({'data': ntpServers})
|