Home
last modified time | relevance | path

Searched refs:UnixAddress (Results 1 – 8 of 8) sorted by relevance

/haiku/src/add-ons/kernel/network/protocols/unix/
H A DUnixAddress.h28 class UnixAddress {
30 UnixAddress() in UnixAddress() function
35 UnixAddress(const UnixAddress& other) in UnixAddress() function
40 UnixAddress(int32 internalID) in UnixAddress() function
45 UnixAddress(dev_t volumeID, ino_t nodeID, struct vnode* vnode) in UnixAddress() function
113 UnixAddress& operator=(const UnixAddress& other)
122 bool operator==(const UnixAddress& other) const
130 bool operator!=(const UnixAddress& other) const
H A DUnixAddressManager.h16 typedef UnixAddress KeyType;
68 UnixEndpoint* Lookup(const UnixAddress& address) const in Lookup()
94 UnixAddress address(id); in NextUnusedInternalID()
H A DUnixEndpoint.h33 const UnixAddress& Address() const in Address()
87 UnixAddress fAddress;
H A DJamfile9 UnixAddress.cpp
H A DUnixEndpoint.cpp81 if (UnixAddress::IsEmptyAddress(*address)) in _Bind()
84 internalID = UnixAddress::InternalID(*address); in _Bind()
H A DUnixDatagramEndpoint.cpp512 UnixAddress unixAddress; in _InitializeEndpoint()
519 if (UnixAddress::IsEmptyAddress(*address)) in _InitializeEndpoint()
522 internalID = UnixAddress::InternalID(*address); in _InitializeEndpoint()
H A DUnixStreamEndpoint.cpp236 UnixAddress unixAddress; in Connect()
241 if (UnixAddress::IsEmptyAddress(*address)) in Connect()
244 internalID = UnixAddress::InternalID(*address); in Connect()
H A DUnixAddress.cpp28 UnixAddress::ToString(char *buffer, size_t bufferSize) const in ToString()