Home
last modified time | relevance | path

Searched refs:MACAddress (Results 1 – 25 of 262) sorted by relevance

1234567891011

/dports/devel/juce/JUCE-f37e9a1/modules/juce_core/network/
H A Djuce_MACAddress.cpp26 MACAddress::MACAddress() noexcept in MACAddress() function in juce::MACAddress
31 MACAddress::MACAddress (const MACAddress& other) noexcept in MACAddress() function in juce::MACAddress
36 MACAddress& MACAddress::operator= (const MACAddress& other) noexcept in operator =()
42 MACAddress::MACAddress (const uint8 bytes[6]) noexcept in MACAddress() function in juce::MACAddress
47 MACAddress::MACAddress (StringRef addressString) in MACAddress() function in juce::MACAddress
58 String MACAddress::toString() const in toString()
78 int64 MACAddress::toInt64() const noexcept in toInt64()
88 Array<MACAddress> MACAddress::getAllAddresses() in getAllAddresses()
90 Array<MACAddress> addresses; in getAllAddresses()
97 bool MACAddress::operator== (const MACAddress& other) const noexcept { return memcmp (address, o… in operator ==()
[all …]
H A Djuce_MACAddress.h32 class JUCE_API MACAddress final
37 static Array<MACAddress> getAllAddresses();
40 static void findAllAddresses (Array<MACAddress>& results);
44 MACAddress() noexcept;
47 MACAddress (const MACAddress&) noexcept;
50 MACAddress& operator= (const MACAddress&) noexcept;
53 explicit MACAddress (const uint8 bytes[6]) noexcept;
59 explicit MACAddress (StringRef address);
80 bool operator== (const MACAddress&) const noexcept;
81 bool operator!= (const MACAddress&) const noexcept;
/dports/audio/carla/Carla-2.4.1/source/modules/juce_core/network/
H A Djuce_MACAddress.cpp26 MACAddress::MACAddress() noexcept in MACAddress() function in juce::MACAddress
31 MACAddress::MACAddress (const MACAddress& other) noexcept in MACAddress() function in juce::MACAddress
36 MACAddress& MACAddress::operator= (const MACAddress& other) noexcept in operator =()
42 MACAddress::MACAddress (const uint8 bytes[6]) noexcept in MACAddress() function in juce::MACAddress
47 MACAddress::MACAddress (StringRef addressString) in MACAddress() function in juce::MACAddress
58 String MACAddress::toString() const in toString()
78 int64 MACAddress::toInt64() const noexcept in toInt64()
88 Array<MACAddress> MACAddress::getAllAddresses() in getAllAddresses()
90 Array<MACAddress> addresses; in getAllAddresses()
97 bool MACAddress::operator== (const MACAddress& other) const noexcept { return memcmp (address, o… in operator ==()
[all …]
H A Djuce_MACAddress.h32 class JUCE_API MACAddress final
37 static Array<MACAddress> getAllAddresses();
40 static void findAllAddresses (Array<MACAddress>& results);
44 MACAddress() noexcept;
47 MACAddress (const MACAddress&) noexcept;
50 MACAddress& operator= (const MACAddress&) noexcept;
53 explicit MACAddress (const uint8 bytes[6]) noexcept;
59 explicit MACAddress (StringRef address);
80 bool operator== (const MACAddress&) const noexcept;
81 bool operator!= (const MACAddress&) const noexcept;
/dports/audio/libopenshot-audio/libopenshot-audio-0.2.2/JuceLibraryCode/modules/juce_core/network/
H A Djuce_MACAddress.cpp26 MACAddress::MACAddress() noexcept in MACAddress() function in juce::MACAddress
31 MACAddress::MACAddress (const MACAddress& other) noexcept in MACAddress() function in juce::MACAddress
36 MACAddress& MACAddress::operator= (const MACAddress& other) noexcept in operator =()
42 MACAddress::MACAddress (const uint8 bytes[6]) noexcept in MACAddress() function in juce::MACAddress
47 MACAddress::MACAddress (StringRef addressString) in MACAddress() function in juce::MACAddress
58 String MACAddress::toString() const in toString()
78 int64 MACAddress::toInt64() const noexcept in toInt64()
88 Array<MACAddress> MACAddress::getAllAddresses() in getAllAddresses()
90 Array<MACAddress> addresses; in getAllAddresses()
97 bool MACAddress::operator== (const MACAddress& other) const noexcept { return memcmp (address, o… in operator ==()
[all …]
H A Djuce_MACAddress.h32 class JUCE_API MACAddress final
37 static Array<MACAddress> getAllAddresses();
40 static void findAllAddresses (Array<MACAddress>& results);
44 MACAddress() noexcept;
47 MACAddress (const MACAddress&) noexcept;
50 MACAddress& operator= (const MACAddress&) noexcept;
53 explicit MACAddress (const uint8 bytes[6]) noexcept;
59 explicit MACAddress (StringRef address);
80 bool operator== (const MACAddress&) const noexcept;
81 bool operator!= (const MACAddress&) const noexcept;
/dports/security/lego/lego-4.5.3/vendor/github.com/exoscale/egoscale/
H A Dmacaddress.go10 type MACAddress net.HardwareAddr type
13 func (mac MACAddress) String() string {
18 func MAC48(a, b, c, d, e, f byte) MACAddress {
19 m := make(MACAddress, 6)
30 func (mac *MACAddress) UnmarshalJSON(b []byte) error {
40 *mac = make(MACAddress, 6)
46 func (mac MACAddress) MarshalJSON() ([]byte, error) {
51 func ParseMAC(s string) (MACAddress, error) {
53 return (MACAddress)(hw), err
57 func MustParseMAC(s string) MACAddress {
/dports/net/traefik/traefik-2.6.1/vendor/github.com/exoscale/egoscale/
H A Dmacaddress.go10 type MACAddress net.HardwareAddr type
13 func (mac MACAddress) String() string {
18 func MAC48(a, b, c, d, e, f byte) MACAddress {
19 m := make(MACAddress, 6)
30 func (mac *MACAddress) UnmarshalJSON(b []byte) error {
40 *mac = make(MACAddress, 6)
46 func (mac MACAddress) MarshalJSON() ([]byte, error) {
51 func ParseMAC(s string) (MACAddress, error) {
53 return (MACAddress)(hw), err
57 func MustParseMAC(s string) MACAddress {
/dports/sysutils/py-pytsk/pytsk3-20210419/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/
H A DMACAddress.java25 class MACAddress extends Facet { class
29 MACAddress() { in MACAddress() method in MACAddress
30 super(MACAddress.class.getSimpleName()); in MACAddress()
33 MACAddress setValue(String value) { in setValue()
/dports/devel/poco/poco-1.10.1-all/Net/include/Poco/Net/
H A DNetworkInterface.h70 typedef std::vector<unsigned char> MACAddress; typedef
186 const MACAddress& macAddress() const;
284 …st std::string& adapterName, const IPAddress& address, unsigned index, MACAddress* pMACAddress = 0…
287 …::string& displayName, const std::string& adapterName, unsigned index, MACAddress* pMACAddress = 0…
290 …NetworkInterface(const std::string& name, const IPAddress& address, unsigned index, MACAddress* pM…
300 MACAddress* pMACAddress = 0);
308 MACAddress* pMACAddress = 0);
346 …td::ostream& operator << (std::ostream& ostr, const Poco::Net::NetworkInterface::MACAddress& addr);
/dports/emulators/dolphin-emu/dolphin-3152428/Source/Core/Common/
H A DNetwork.cpp16 MACAddress GenerateMacAddress(const MACConsumer type) in GenerateMacAddress()
21 MACAddress mac{}; in GenerateMacAddress()
38 std::string MacAddressToString(const MACAddress& mac) in MacAddressToString()
44 std::optional<MACAddress> StringToMacAddress(std::string_view mac_string) in StringToMacAddress()
50 MACAddress mac{}; in StringToMacAddress()
H A DNetwork.h27 using MACAddress = std::array<u8, MAC_ADDRESS_SIZE>; variable
29 MACAddress GenerateMacAddress(MACConsumer type);
30 std::string MacAddressToString(const MACAddress& mac);
31 std::optional<MACAddress> StringToMacAddress(std::string_view mac_string);
/dports/net/boinc-client/boinc-client_release-7.8-7.8.6/client/
H A Dmac_address.cpp135 UInt8 MACAddress[ kIOEthernetAddressSize ]; in GetMACAddress() local
137 CFDataGetBytes(refData, CFRangeMake(0,CFDataGetLength(refData)), MACAddress); in GetMACAddress()
139MACAddress[0], MACAddress[1], MACAddress[2], MACAddress[3], MACAddress[4], MACAddress[5]); in GetMACAddress()
/dports/net-mgmt/py-napalm/napalm-3.3.1/test/iosxr/iosxr/mock_data/
H A D_Get__Operational__Interfaces__InterfaceTable___InterfaceTable___Interfaces___Operational___Get_.rpc1MACAddress><Address>d46d.5020.434b</Address></MACAddress><Bandwidth>40000000</Bandwidth><MaxBandwi…
/dports/www/domoticz/domoticz-2020.2/hardware/
H A DWOL.cpp58 bool GenerateWOLPacket(unsigned char *pPacket, const std::string &MACAddress) in GenerateWOLPacket() argument
61 StringSplit(MACAddress, "-", results); in GenerateWOLPacket()
64 StringSplit(MACAddress, ":", results); in GenerateWOLPacket()
170 void CWOL::AddNode(const std::string &Name, const std::string &MACAddress) in AddNode() argument
178 m_HwdID, Name.c_str(), MACAddress.c_str()); in AddNode()
182 m_HwdID, Name.c_str(), MACAddress.c_str()); in AddNode()
185 m_HwdID, Name.c_str(), MACAddress.c_str()); in AddNode()
198 bool CWOL::UpdateNode(const int ID, const std::string &Name, const std::string &MACAddress) in UpdateNode() argument
209 Name.c_str(), MACAddress.c_str(), m_HwdID, ID); in UpdateNode()
/dports/security/lego/lego-4.5.3/vendor/github.com/gophercloud/gophercloud/openstack/networking/v2/ports/testing/
H A Drequests_test.go49 MACAddress: "fa:16:3e:58:42:ed",
126 th.AssertEquals(t, n.MACAddress, "fa:16:3e:23:fd:d7")
189 {IPAddress: "10.0.0.4", MACAddress: "fa:16:3e:c9:cb:f0"},
201 th.AssertEquals(t, n.MACAddress, "fa:16:3e:c9:cb:f0")
208 {IPAddress: "10.0.0.4", MACAddress: "fa:16:3e:c9:cb:f0"},
250 th.AssertEquals(t, n.MACAddress, "fa:16:3e:c9:cb:f0")
257 {IPAddress: "10.0.0.4", MACAddress: "fa:16:3e:c9:cb:f0"},
300 th.AssertEquals(t, n.MACAddress, "fa:16:3e:c9:cb:f0")
646 th.AssertEquals(t, s.MACAddress, "fa:16:3e:c9:cb:f0")
712 th.AssertEquals(t, s.MACAddress, "fa:16:3e:c9:cb:f0")
[all …]
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/github.com/gophercloud/gophercloud/openstack/networking/v2/ports/testing/
H A Drequests_test.go48 MACAddress: "fa:16:3e:58:42:ed",
124 th.AssertEquals(t, n.MACAddress, "fa:16:3e:23:fd:d7")
187 {IPAddress: "10.0.0.4", MACAddress: "fa:16:3e:c9:cb:f0"},
199 th.AssertEquals(t, n.MACAddress, "fa:16:3e:c9:cb:f0")
206 {IPAddress: "10.0.0.4", MACAddress: "fa:16:3e:c9:cb:f0"},
248 th.AssertEquals(t, n.MACAddress, "fa:16:3e:c9:cb:f0")
255 {IPAddress: "10.0.0.4", MACAddress: "fa:16:3e:c9:cb:f0"},
298 th.AssertEquals(t, n.MACAddress, "fa:16:3e:c9:cb:f0")
644 th.AssertEquals(t, s.MACAddress, "fa:16:3e:c9:cb:f0")
710 th.AssertEquals(t, s.MACAddress, "fa:16:3e:c9:cb:f0")
[all …]
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/github.com/hashicorp/consul/vendor/github.com/gophercloud/gophercloud/openstack/networking/v2/ports/testing/
H A Drequests_test.go48 MACAddress: "fa:16:3e:58:42:ed",
124 th.AssertEquals(t, n.MACAddress, "fa:16:3e:23:fd:d7")
187 {IPAddress: "10.0.0.4", MACAddress: "fa:16:3e:c9:cb:f0"},
199 th.AssertEquals(t, n.MACAddress, "fa:16:3e:c9:cb:f0")
206 {IPAddress: "10.0.0.4", MACAddress: "fa:16:3e:c9:cb:f0"},
248 th.AssertEquals(t, n.MACAddress, "fa:16:3e:c9:cb:f0")
255 {IPAddress: "10.0.0.4", MACAddress: "fa:16:3e:c9:cb:f0"},
298 th.AssertEquals(t, n.MACAddress, "fa:16:3e:c9:cb:f0")
639 th.AssertEquals(t, s.MACAddress, "fa:16:3e:c9:cb:f0")
705 th.AssertEquals(t, s.MACAddress, "fa:16:3e:c9:cb:f0")
[all …]
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/gophercloud/gophercloud/openstack/networking/v2/ports/testing/
H A Drequests_test.go49 MACAddress: "fa:16:3e:58:42:ed",
126 th.AssertEquals(t, n.MACAddress, "fa:16:3e:23:fd:d7")
189 {IPAddress: "10.0.0.4", MACAddress: "fa:16:3e:c9:cb:f0"},
201 th.AssertEquals(t, n.MACAddress, "fa:16:3e:c9:cb:f0")
208 {IPAddress: "10.0.0.4", MACAddress: "fa:16:3e:c9:cb:f0"},
250 th.AssertEquals(t, n.MACAddress, "fa:16:3e:c9:cb:f0")
257 {IPAddress: "10.0.0.4", MACAddress: "fa:16:3e:c9:cb:f0"},
300 th.AssertEquals(t, n.MACAddress, "fa:16:3e:c9:cb:f0")
646 th.AssertEquals(t, s.MACAddress, "fa:16:3e:c9:cb:f0")
712 th.AssertEquals(t, s.MACAddress, "fa:16:3e:c9:cb:f0")
[all …]
/dports/www/fabio/fabio-1.5.14/vendor/github.com/hashicorp/consul/consul-1.4.2/vendor/github.com/gophercloud/gophercloud/openstack/networking/v2/ports/testing/
H A Drequests_test.go48 MACAddress: "fa:16:3e:58:42:ed",
124 th.AssertEquals(t, n.MACAddress, "fa:16:3e:23:fd:d7")
187 {IPAddress: "10.0.0.4", MACAddress: "fa:16:3e:c9:cb:f0"},
199 th.AssertEquals(t, n.MACAddress, "fa:16:3e:c9:cb:f0")
206 {IPAddress: "10.0.0.4", MACAddress: "fa:16:3e:c9:cb:f0"},
248 th.AssertEquals(t, n.MACAddress, "fa:16:3e:c9:cb:f0")
255 {IPAddress: "10.0.0.4", MACAddress: "fa:16:3e:c9:cb:f0"},
298 th.AssertEquals(t, n.MACAddress, "fa:16:3e:c9:cb:f0")
639 th.AssertEquals(t, s.MACAddress, "fa:16:3e:c9:cb:f0")
705 th.AssertEquals(t, s.MACAddress, "fa:16:3e:c9:cb:f0")
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/gophercloud/gophercloud/openstack/networking/v2/ports/testing/
H A Drequests_test.go48 MACAddress: "fa:16:3e:58:42:ed",
124 th.AssertEquals(t, n.MACAddress, "fa:16:3e:23:fd:d7")
187 {IPAddress: "10.0.0.4", MACAddress: "fa:16:3e:c9:cb:f0"},
199 th.AssertEquals(t, n.MACAddress, "fa:16:3e:c9:cb:f0")
206 {IPAddress: "10.0.0.4", MACAddress: "fa:16:3e:c9:cb:f0"},
248 th.AssertEquals(t, n.MACAddress, "fa:16:3e:c9:cb:f0")
255 {IPAddress: "10.0.0.4", MACAddress: "fa:16:3e:c9:cb:f0"},
298 th.AssertEquals(t, n.MACAddress, "fa:16:3e:c9:cb:f0")
644 th.AssertEquals(t, s.MACAddress, "fa:16:3e:c9:cb:f0")
710 th.AssertEquals(t, s.MACAddress, "fa:16:3e:c9:cb:f0")
[all …]
/dports/misc/concourse/concourse-6.7.2/vendor/github.com/gophercloud/gophercloud/openstack/networking/v2/ports/testing/
H A Drequests_test.go49 MACAddress: "fa:16:3e:58:42:ed",
126 th.AssertEquals(t, n.MACAddress, "fa:16:3e:23:fd:d7")
189 {IPAddress: "10.0.0.4", MACAddress: "fa:16:3e:c9:cb:f0"},
201 th.AssertEquals(t, n.MACAddress, "fa:16:3e:c9:cb:f0")
208 {IPAddress: "10.0.0.4", MACAddress: "fa:16:3e:c9:cb:f0"},
250 th.AssertEquals(t, n.MACAddress, "fa:16:3e:c9:cb:f0")
257 {IPAddress: "10.0.0.4", MACAddress: "fa:16:3e:c9:cb:f0"},
300 th.AssertEquals(t, n.MACAddress, "fa:16:3e:c9:cb:f0")
646 th.AssertEquals(t, s.MACAddress, "fa:16:3e:c9:cb:f0")
712 th.AssertEquals(t, s.MACAddress, "fa:16:3e:c9:cb:f0")
[all …]
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/gophercloud/gophercloud/openstack/networking/v2/ports/testing/
H A Drequests_test.go48 MACAddress: "fa:16:3e:58:42:ed",
124 th.AssertEquals(t, n.MACAddress, "fa:16:3e:23:fd:d7")
187 {IPAddress: "10.0.0.4", MACAddress: "fa:16:3e:c9:cb:f0"},
199 th.AssertEquals(t, n.MACAddress, "fa:16:3e:c9:cb:f0")
206 {IPAddress: "10.0.0.4", MACAddress: "fa:16:3e:c9:cb:f0"},
248 th.AssertEquals(t, n.MACAddress, "fa:16:3e:c9:cb:f0")
255 {IPAddress: "10.0.0.4", MACAddress: "fa:16:3e:c9:cb:f0"},
298 th.AssertEquals(t, n.MACAddress, "fa:16:3e:c9:cb:f0")
644 th.AssertEquals(t, s.MACAddress, "fa:16:3e:c9:cb:f0")
710 th.AssertEquals(t, s.MACAddress, "fa:16:3e:c9:cb:f0")
[all …]
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/hashicorp/consul/vendor/github.com/gophercloud/gophercloud/openstack/networking/v2/ports/testing/
H A Drequests_test.go48 MACAddress: "fa:16:3e:58:42:ed",
124 th.AssertEquals(t, n.MACAddress, "fa:16:3e:23:fd:d7")
187 {IPAddress: "10.0.0.4", MACAddress: "fa:16:3e:c9:cb:f0"},
199 th.AssertEquals(t, n.MACAddress, "fa:16:3e:c9:cb:f0")
206 {IPAddress: "10.0.0.4", MACAddress: "fa:16:3e:c9:cb:f0"},
248 th.AssertEquals(t, n.MACAddress, "fa:16:3e:c9:cb:f0")
255 {IPAddress: "10.0.0.4", MACAddress: "fa:16:3e:c9:cb:f0"},
298 th.AssertEquals(t, n.MACAddress, "fa:16:3e:c9:cb:f0")
639 th.AssertEquals(t, s.MACAddress, "fa:16:3e:c9:cb:f0")
705 th.AssertEquals(t, s.MACAddress, "fa:16:3e:c9:cb:f0")
[all …]
/dports/sysutils/terraform/terraform-1.0.11/vendor/github.com/gophercloud/gophercloud/openstack/networking/v2/ports/testing/
H A Drequests_test.go49 MACAddress: "fa:16:3e:58:42:ed",
126 th.AssertEquals(t, n.MACAddress, "fa:16:3e:23:fd:d7")
189 {IPAddress: "10.0.0.4", MACAddress: "fa:16:3e:c9:cb:f0"},
201 th.AssertEquals(t, n.MACAddress, "fa:16:3e:c9:cb:f0")
208 {IPAddress: "10.0.0.4", MACAddress: "fa:16:3e:c9:cb:f0"},
250 th.AssertEquals(t, n.MACAddress, "fa:16:3e:c9:cb:f0")
257 {IPAddress: "10.0.0.4", MACAddress: "fa:16:3e:c9:cb:f0"},
300 th.AssertEquals(t, n.MACAddress, "fa:16:3e:c9:cb:f0")
646 th.AssertEquals(t, s.MACAddress, "fa:16:3e:c9:cb:f0")
712 th.AssertEquals(t, s.MACAddress, "fa:16:3e:c9:cb:f0")
[all …]

1234567891011