Home
last modified time | relevance | path

Searched refs:InterfaceInfo (Results 1 – 25 of 3147) sorted by relevance

12345678910>>...126

/dports/devel/glibmm/glibmm-2.64.2/gio/giomm/
H A Ddbusintrospection.cc38 Glib::RefPtr<InterfaceInfo>
41 Glib::RefPtr<InterfaceInfo> retvalue; in lookup_interface()
54 Glib::RefPtr<const InterfaceInfo>
457 …return Glib::RefPtr<Gio::DBus::InterfaceInfo>(reinterpret_cast<Gio::DBus::InterfaceInfo*>(object)); in wrap()
470 GType InterfaceInfo::get_type() in get_type()
475 void InterfaceInfo::reference() const in reference()
481 void InterfaceInfo::unreference() const in unreference()
487 GDBusInterfaceInfo* InterfaceInfo::gobj() in gobj()
499 GDBusInterfaceInfo* InterfaceInfo::gobj_copy() const in gobj_copy()
546 void InterfaceInfo::cache_build() in cache_build()
[all …]
H A Ddbusproxy.h253 const Glib::RefPtr<InterfaceInfo>& info = Glib::RefPtr<InterfaceInfo>(),
261 const Glib::RefPtr<InterfaceInfo>& info = Glib::RefPtr<InterfaceInfo>(),
269 const Glib::RefPtr<InterfaceInfo>& info = Glib::RefPtr<InterfaceInfo>(),
276 const Glib::RefPtr<InterfaceInfo>& info = Glib::RefPtr<InterfaceInfo>(),
285 const Glib::RefPtr<InterfaceInfo>& info = Glib::RefPtr<InterfaceInfo>(),
293 const Glib::RefPtr<InterfaceInfo>& info = Glib::RefPtr<InterfaceInfo>(),
301 const Glib::RefPtr<InterfaceInfo>& info = Glib::RefPtr<InterfaceInfo>(),
308 const Glib::RefPtr<InterfaceInfo>& info = Glib::RefPtr<InterfaceInfo>(),
361 const Glib::RefPtr<InterfaceInfo>& info = Glib::RefPtr<InterfaceInfo>(),
370 const Glib::RefPtr<InterfaceInfo>& info = Glib::RefPtr<InterfaceInfo>(),
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/openscreen/src/platform/base/
H A Dinterface_info.cc11 InterfaceInfo::InterfaceInfo() = default;
12 InterfaceInfo::InterfaceInfo(NetworkInterfaceIndex index, in InterfaceInfo() function in openscreen::InterfaceInfo
24 InterfaceInfo::~InterfaceInfo() = default;
31 IPAddress InterfaceInfo::GetIpAddressV4() const { in GetIpAddressV4()
40 IPAddress InterfaceInfo::GetIpAddressV6() const { in GetIpAddressV6()
60 std::ostream& operator<<(std::ostream& out, InterfaceInfo::Type type) { in operator <<()
62 case InterfaceInfo::Type::kEthernet: in operator <<()
65 case InterfaceInfo::Type::kWifi: in operator <<()
68 case InterfaceInfo::Type::kLoopback: in operator <<()
71 case InterfaceInfo::Type::kOther: in operator <<()
[all …]
H A Dinterface_info.h41 struct InterfaceInfo { struct
66 InterfaceInfo(); argument
67 InterfaceInfo(NetworkInterfaceIndex index,
72 ~InterfaceInfo();
76 std::ostream& operator<<(std::ostream& out, InterfaceInfo::Type type);
78 std::ostream& operator<<(std::ostream& out, const InterfaceInfo& info);
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/openscreen/src/platform/base/
H A Dinterface_info.cc11 InterfaceInfo::InterfaceInfo() = default;
12 InterfaceInfo::InterfaceInfo(NetworkInterfaceIndex index, in InterfaceInfo() function in openscreen::InterfaceInfo
24 InterfaceInfo::~InterfaceInfo() = default;
31 IPAddress InterfaceInfo::GetIpAddressV4() const { in GetIpAddressV4()
40 IPAddress InterfaceInfo::GetIpAddressV6() const { in GetIpAddressV6()
60 std::ostream& operator<<(std::ostream& out, InterfaceInfo::Type type) { in operator <<()
62 case InterfaceInfo::Type::kEthernet: in operator <<()
65 case InterfaceInfo::Type::kWifi: in operator <<()
68 case InterfaceInfo::Type::kLoopback: in operator <<()
71 case InterfaceInfo::Type::kOther: in operator <<()
[all …]
H A Dinterface_info.h41 struct InterfaceInfo { struct
66 InterfaceInfo(); argument
67 InterfaceInfo(NetworkInterfaceIndex index,
72 ~InterfaceInfo();
76 std::ostream& operator<<(std::ostream& out, InterfaceInfo::Type type);
78 std::ostream& operator<<(std::ostream& out, const InterfaceInfo& info);
/dports/devel/dbus-glib/dbus-glib-0.112/dbus/
H A Ddbus-gidl.h36 typedef struct InterfaceInfo InterfaceInfo; typedef
89 InterfaceInfo* interface_info_new (const char *name);
90 InterfaceInfo* interface_info_ref (InterfaceInfo *info);
91 void interface_info_unref (InterfaceInfo *info);
92 const char* interface_info_get_name (InterfaceInfo *info);
93 GSList* interface_info_get_annotations(InterfaceInfo *info);
94 const char* interface_info_get_annotation (InterfaceInfo*info,
99 void interface_info_add_annotation (InterfaceInfo *info,
102 void interface_info_add_method (InterfaceInfo *info,
104 void interface_info_add_signal (InterfaceInfo *info,
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/openscreen/src/platform/impl/
H A Dnetwork_interface.cc9 std::vector<InterfaceInfo> GetNetworkInterfaces() { in GetNetworkInterfaces()
10 std::vector<InterfaceInfo> interfaces = GetAllInterfaces(); in GetNetworkInterfaces()
13 interfaces.begin(), interfaces.end(), [](const InterfaceInfo& info) { in GetNetworkInterfaces()
14 return info.type != InterfaceInfo::Type::kEthernet && in GetNetworkInterfaces()
15 info.type != InterfaceInfo::Type::kWifi && in GetNetworkInterfaces()
16 info.type != InterfaceInfo::Type::kOther; in GetNetworkInterfaces()
24 absl::optional<InterfaceInfo> GetLoopbackInterfaceForTesting() { in GetLoopbackInterfaceForTesting()
25 const std::vector<InterfaceInfo> interfaces = GetAllInterfaces(); in GetLoopbackInterfaceForTesting()
27 interfaces.begin(), interfaces.end(), [](const InterfaceInfo& info) { in GetLoopbackInterfaceForTesting()
28 return info.type == InterfaceInfo::Type::kLoopback && in GetLoopbackInterfaceForTesting()
H A Dnetwork_interface_mac.cc67 std::vector<InterfaceInfo> ProcessInterfacesList(ifaddrs* interfaces) { in ProcessInterfacesList()
72 std::vector<InterfaceInfo> results; in ProcessInterfacesList()
85 [&name](const InterfaceInfo& info) { return info.name == name; }); in ProcessInterfacesList()
86 InterfaceInfo* interface; in ProcessInterfacesList()
102 InterfaceInfo::Type type = InterfaceInfo::Type::kOther; in ProcessInterfacesList()
104 type = InterfaceInfo::Type::kWifi; in ProcessInterfacesList()
107 type = InterfaceInfo::Type::kEthernet; in ProcessInterfacesList()
110 type = InterfaceInfo::Type::kLoopback; in ProcessInterfacesList()
168 std::vector<InterfaceInfo> GetAllInterfaces() { in GetAllInterfaces()
169 std::vector<InterfaceInfo> results; in GetAllInterfaces()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/openscreen/src/platform/impl/
H A Dnetwork_interface.cc9 std::vector<InterfaceInfo> GetNetworkInterfaces() { in GetNetworkInterfaces()
10 std::vector<InterfaceInfo> interfaces = GetAllInterfaces(); in GetNetworkInterfaces()
13 interfaces.begin(), interfaces.end(), [](const InterfaceInfo& info) { in GetNetworkInterfaces()
14 return info.type != InterfaceInfo::Type::kEthernet && in GetNetworkInterfaces()
15 info.type != InterfaceInfo::Type::kWifi && in GetNetworkInterfaces()
16 info.type != InterfaceInfo::Type::kOther; in GetNetworkInterfaces()
24 absl::optional<InterfaceInfo> GetLoopbackInterfaceForTesting() { in GetLoopbackInterfaceForTesting()
25 const std::vector<InterfaceInfo> interfaces = GetAllInterfaces(); in GetLoopbackInterfaceForTesting()
27 interfaces.begin(), interfaces.end(), [](const InterfaceInfo& info) { in GetLoopbackInterfaceForTesting()
28 return info.type == InterfaceInfo::Type::kLoopback && in GetLoopbackInterfaceForTesting()
H A Dnetwork_interface_mac.cc67 std::vector<InterfaceInfo> ProcessInterfacesList(ifaddrs* interfaces) { in ProcessInterfacesList()
72 std::vector<InterfaceInfo> results; in ProcessInterfacesList()
85 [&name](const InterfaceInfo& info) { return info.name == name; }); in ProcessInterfacesList()
86 InterfaceInfo* interface; in ProcessInterfacesList()
88 InterfaceInfo::Type type = InterfaceInfo::Type::kOther; in ProcessInterfacesList()
105 type = InterfaceInfo::Type::kWifi; in ProcessInterfacesList()
107 type = InterfaceInfo::Type::kEthernet; in ProcessInterfacesList()
110 type = InterfaceInfo::Type::kLoopback; in ProcessInterfacesList()
170 std::vector<InterfaceInfo> GetAllInterfaces() { in GetAllInterfaces()
171 std::vector<InterfaceInfo> results; in GetAllInterfaces()
/dports/sysutils/acpica-tools/acpica-unix-20210930/source/components/utilities/
H A Dutosi.c365 ACPI_INTERFACE_INFO *InterfaceInfo; in AcpiUtInstallInterface() local
371 if (!InterfaceInfo) in AcpiUtInstallInterface()
377 if (!InterfaceInfo->Name) in AcpiUtInstallInterface()
379 ACPI_FREE (InterfaceInfo); in AcpiUtInstallInterface()
385 strcpy (InterfaceInfo->Name, InterfaceName); in AcpiUtInstallInterface()
386 InterfaceInfo->Flags = ACPI_OSI_DYNAMIC; in AcpiUtInstallInterface()
389 AcpiGbl_SupportedInterfaces = InterfaceInfo; in AcpiUtInstallInterface()
584 ACPI_INTERFACE_INFO *InterfaceInfo; in AcpiUtOsiImplementation() local
623 if (InterfaceInfo && in AcpiUtOsiImplementation()
624 !(InterfaceInfo->Flags & ACPI_OSI_INVALID)) in AcpiUtOsiImplementation()
[all …]
/dports/misc/rump/buildrump.sh-b914579/src/sys/external/bsd/acpica/dist/utilities/
H A Dutosi.c250 ACPI_INTERFACE_INFO *InterfaceInfo; in AcpiUtInstallInterface() local
256 if (!InterfaceInfo) in AcpiUtInstallInterface()
262 if (!InterfaceInfo->Name) in AcpiUtInstallInterface()
264 ACPI_FREE (InterfaceInfo); in AcpiUtInstallInterface()
270 strcpy (InterfaceInfo->Name, InterfaceName); in AcpiUtInstallInterface()
271 InterfaceInfo->Flags = ACPI_OSI_DYNAMIC; in AcpiUtInstallInterface()
274 AcpiGbl_SupportedInterfaces = InterfaceInfo; in AcpiUtInstallInterface()
458 ACPI_INTERFACE_INFO *InterfaceInfo; in AcpiUtOsiImplementation() local
497 if (InterfaceInfo && in AcpiUtOsiImplementation()
498 !(InterfaceInfo->Flags & ACPI_OSI_INVALID)) in AcpiUtOsiImplementation()
[all …]
/dports/databases/tile38/tile38-1.12.0/vendor/golang.org/x/net/icmp/
H A Dinterface.go30 type InterfaceInfo struct { struct
37 func (ifi *InterfaceInfo) nameLen() int { argument
45 func (ifi *InterfaceInfo) attrsAndLen(proto int) (attrs, l int) { argument
77 func (ifi *InterfaceInfo) Len(proto int) int { argument
83 func (ifi *InterfaceInfo) Marshal(proto int) ([]byte, error) { argument
119 func (ifi *InterfaceInfo) parseIfIndex(b []byte) ([]byte, error) { argument
141 func (ifi *InterfaceInfo) parseIPAddr(b []byte) ([]byte, error) { argument
173 func (ifi *InterfaceInfo) parseName(b []byte) ([]byte, error) { argument
187 func (ifi *InterfaceInfo) marshalMTU(proto int, b []byte) []byte { argument
192 func (ifi *InterfaceInfo) parseMTU(b []byte) ([]byte, error) { argument
[all …]
/dports/net/storj/storj-1.45.3/vendor/github.com/cloudfoundry/gosigar/vendor/golang.org/x/net/icmp/
H A Dinterface.go30 type InterfaceInfo struct { struct
37 func (ifi *InterfaceInfo) nameLen() int { argument
45 func (ifi *InterfaceInfo) attrsAndLen(proto int) (attrs, l int) { argument
77 func (ifi *InterfaceInfo) Len(proto int) int { argument
83 func (ifi *InterfaceInfo) Marshal(proto int) ([]byte, error) { argument
119 func (ifi *InterfaceInfo) parseIfIndex(b []byte) ([]byte, error) { argument
141 func (ifi *InterfaceInfo) parseIPAddr(b []byte) ([]byte, error) { argument
173 func (ifi *InterfaceInfo) parseName(b []byte) ([]byte, error) { argument
187 func (ifi *InterfaceInfo) marshalMTU(proto int, b []byte) []byte { argument
192 func (ifi *InterfaceInfo) parseMTU(b []byte) ([]byte, error) { argument
[all …]
/dports/devel/awless/awless-0.1.11/vendor/golang.org/x/net/icmp/
H A Dinterface.go30 type InterfaceInfo struct { struct
37 func (ifi *InterfaceInfo) nameLen() int { argument
45 func (ifi *InterfaceInfo) attrsAndLen(proto int) (attrs, l int) { argument
77 func (ifi *InterfaceInfo) Len(proto int) int { argument
83 func (ifi *InterfaceInfo) Marshal(proto int) ([]byte, error) { argument
119 func (ifi *InterfaceInfo) parseIfIndex(b []byte) ([]byte, error) { argument
141 func (ifi *InterfaceInfo) parseIPAddr(b []byte) ([]byte, error) { argument
173 func (ifi *InterfaceInfo) parseName(b []byte) ([]byte, error) { argument
187 func (ifi *InterfaceInfo) marshalMTU(proto int, b []byte) []byte { argument
192 func (ifi *InterfaceInfo) parseMTU(b []byte) ([]byte, error) { argument
[all …]
/dports/security/acmetool/acmetool-0.2.1/vendor/golang.org/x/net/icmp/
H A Dinterface.go30 type InterfaceInfo struct { struct
37 func (ifi *InterfaceInfo) nameLen() int { argument
45 func (ifi *InterfaceInfo) attrsAndLen(proto int) (attrs, l int) { argument
77 func (ifi *InterfaceInfo) Len(proto int) int { argument
83 func (ifi *InterfaceInfo) Marshal(proto int) ([]byte, error) { argument
119 func (ifi *InterfaceInfo) parseIfIndex(b []byte) ([]byte, error) { argument
141 func (ifi *InterfaceInfo) parseIPAddr(b []byte) ([]byte, error) { argument
173 func (ifi *InterfaceInfo) parseName(b []byte) ([]byte, error) { argument
187 func (ifi *InterfaceInfo) marshalMTU(proto int, b []byte) []byte { argument
192 func (ifi *InterfaceInfo) parseMTU(b []byte) ([]byte, error) { argument
[all …]
/dports/sysutils/hared/hared-hare-1.0-45-g8341d8a/vendor/golang.org/x/net/icmp/
H A Dinterface.go30 type InterfaceInfo struct { struct
37 func (ifi *InterfaceInfo) nameLen() int { argument
45 func (ifi *InterfaceInfo) attrsAndLen(proto int) (attrs, l int) { argument
77 func (ifi *InterfaceInfo) Len(proto int) int { argument
83 func (ifi *InterfaceInfo) Marshal(proto int) ([]byte, error) { argument
119 func (ifi *InterfaceInfo) parseIfIndex(b []byte) ([]byte, error) { argument
141 func (ifi *InterfaceInfo) parseIPAddr(b []byte) ([]byte, error) { argument
173 func (ifi *InterfaceInfo) parseName(b []byte) ([]byte, error) { argument
187 func (ifi *InterfaceInfo) marshalMTU(proto int, b []byte) []byte { argument
192 func (ifi *InterfaceInfo) parseMTU(b []byte) ([]byte, error) { argument
[all …]
/dports/misc/exercism/cli-3.0.13/vendor/golang.org/x/net/icmp/
H A Dinterface.go30 type InterfaceInfo struct { struct
37 func (ifi *InterfaceInfo) nameLen() int { argument
45 func (ifi *InterfaceInfo) attrsAndLen(proto int) (attrs, l int) { argument
77 func (ifi *InterfaceInfo) Len(proto int) int { argument
83 func (ifi *InterfaceInfo) Marshal(proto int) ([]byte, error) { argument
119 func (ifi *InterfaceInfo) parseIfIndex(b []byte) ([]byte, error) { argument
141 func (ifi *InterfaceInfo) parseIPAddr(b []byte) ([]byte, error) { argument
173 func (ifi *InterfaceInfo) parseName(b []byte) ([]byte, error) { argument
187 func (ifi *InterfaceInfo) marshalMTU(proto int, b []byte) []byte { argument
192 func (ifi *InterfaceInfo) parseMTU(b []byte) ([]byte, error) { argument
[all …]
/dports/textproc/peco/peco-v0.4.4/vendor/golang.org/x/net/icmp/
H A Dinterface.go30 type InterfaceInfo struct { struct
37 func (ifi *InterfaceInfo) nameLen() int { argument
45 func (ifi *InterfaceInfo) attrsAndLen(proto int) (attrs, l int) { argument
77 func (ifi *InterfaceInfo) Len(proto int) int { argument
83 func (ifi *InterfaceInfo) Marshal(proto int) ([]byte, error) { argument
119 func (ifi *InterfaceInfo) parseIfIndex(b []byte) ([]byte, error) { argument
141 func (ifi *InterfaceInfo) parseIPAddr(b []byte) ([]byte, error) { argument
173 func (ifi *InterfaceInfo) parseName(b []byte) ([]byte, error) { argument
187 func (ifi *InterfaceInfo) marshalMTU(proto int, b []byte) []byte { argument
192 func (ifi *InterfaceInfo) parseMTU(b []byte) ([]byte, error) { argument
[all …]
/dports/sysutils/terraform/terraform-1.0.11/vendor/github.com/miekg/dns/vendor/golang.org/x/net/icmp/
H A Dinterface.go30 type InterfaceInfo struct { struct
37 func (ifi *InterfaceInfo) nameLen() int { argument
45 func (ifi *InterfaceInfo) attrsAndLen(proto int) (attrs, l int) { argument
77 func (ifi *InterfaceInfo) Len(proto int) int { argument
83 func (ifi *InterfaceInfo) Marshal(proto int) ([]byte, error) { argument
119 func (ifi *InterfaceInfo) parseIfIndex(b []byte) ([]byte, error) { argument
141 func (ifi *InterfaceInfo) parseIPAddr(b []byte) ([]byte, error) { argument
173 func (ifi *InterfaceInfo) parseName(b []byte) ([]byte, error) { argument
187 func (ifi *InterfaceInfo) marshalMTU(proto int, b []byte) []byte { argument
192 func (ifi *InterfaceInfo) parseMTU(b []byte) ([]byte, error) { argument
[all …]
/dports/www/morty/morty-0.2.0-12-gfe94d9a/vendor/golang.org/x/net/icmp/
H A Dinterface.go30 type InterfaceInfo struct { struct
37 func (ifi *InterfaceInfo) nameLen() int { argument
45 func (ifi *InterfaceInfo) attrsAndLen(proto int) (attrs, l int) { argument
77 func (ifi *InterfaceInfo) Len(proto int) int { argument
83 func (ifi *InterfaceInfo) Marshal(proto int) ([]byte, error) { argument
119 func (ifi *InterfaceInfo) parseIfIndex(b []byte) ([]byte, error) { argument
141 func (ifi *InterfaceInfo) parseIPAddr(b []byte) ([]byte, error) { argument
173 func (ifi *InterfaceInfo) parseName(b []byte) ([]byte, error) { argument
187 func (ifi *InterfaceInfo) marshalMTU(proto int, b []byte) []byte { argument
192 func (ifi *InterfaceInfo) parseMTU(b []byte) ([]byte, error) { argument
[all …]
/dports/games/libretro-fbneo/FBNeo-bbe3c05/src/intf/
H A Dinterface.h13 struct InterfaceInfo { struct
19 INT32 IntInfoFree(InterfaceInfo* pInfo); argument
20 INT32 IntInfoInit(InterfaceInfo* pInfo);
41 INT32 (*GetPluginSettings)(InterfaceInfo* pInfo);
51 InterfaceInfo* InputGetInfo();
76 InterfaceInfo* CDEmuGetInfo();
92 INT32 (*GetPluginSettings)(InterfaceInfo* pInfo);
105 InterfaceInfo* ProfileGetInfo();
118 INT32 (*GetPluginSettings)(InterfaceInfo* pInfo);
131 InterfaceInfo* AudGetInfo();
[all …]
/dports/games/libretro-fbalpha/fbalpha-84eb9d9/src/intf/
H A Dinterface.h13 struct InterfaceInfo { struct
19 INT32 IntInfoFree(InterfaceInfo* pInfo); argument
20 INT32 IntInfoInit(InterfaceInfo* pInfo);
41 INT32 (*GetPluginSettings)(InterfaceInfo* pInfo);
51 InterfaceInfo* InputGetInfo();
76 InterfaceInfo* CDEmuGetInfo();
92 INT32 (*GetPluginSettings)(InterfaceInfo* pInfo);
105 InterfaceInfo* ProfileGetInfo();
118 INT32 (*GetPluginSettings)(InterfaceInfo* pInfo);
131 InterfaceInfo* AudGetInfo();
[all …]
/dports/devel/glibmm/glibmm-2.64.2/gio/src/
H A Ddbusproxy.hg80 const Glib::RefPtr<InterfaceInfo>& info = Glib::RefPtr<InterfaceInfo>(),
88 const Glib::RefPtr<InterfaceInfo>& info = Glib::RefPtr<InterfaceInfo>(),
96 const Glib::RefPtr<InterfaceInfo>& info = Glib::RefPtr<InterfaceInfo>(),
103 const Glib::RefPtr<InterfaceInfo>& info = Glib::RefPtr<InterfaceInfo>(),
112 const Glib::RefPtr<InterfaceInfo>& info = Glib::RefPtr<InterfaceInfo>(),
120 const Glib::RefPtr<InterfaceInfo>& info = Glib::RefPtr<InterfaceInfo>(),
128 const Glib::RefPtr<InterfaceInfo>& info = Glib::RefPtr<InterfaceInfo>(),
135 const Glib::RefPtr<InterfaceInfo>& info = Glib::RefPtr<InterfaceInfo>(),
147 const Glib::RefPtr<InterfaceInfo>& info = Glib::RefPtr<InterfaceInfo>(),
156 const Glib::RefPtr<InterfaceInfo>& info = Glib::RefPtr<InterfaceInfo>(),
[all …]

12345678910>>...126