Home | History | Annotate | Download | only in system

Lines Matching refs:UnixSocketAddress

28 public final class UnixSocketAddress extends SocketAddress {
33 // See unix(7): Three types of UnixSocketAddress:
40 private UnixSocketAddress(byte[] sun_path) {
59 public static UnixSocketAddress createAbstract(String name) {
64 return new UnixSocketAddress(path);
70 public static UnixSocketAddress createFileSystem(String pathName) {
75 return new UnixSocketAddress(path);
81 public static UnixSocketAddress createUnnamed() {
82 return new UnixSocketAddress(UNNAMED_PATH);
104 UnixSocketAddress that = (UnixSocketAddress) o;
115 return "UnixSocketAddress[" +