Home | History | Annotate | Download | only in net

Lines Matching defs:Namespace

24  * abstract (non-filesystem) UNIX domain namespace.
29 * The namespace that this address exists in. See also
32 public enum Namespace {
33 /** A socket in the Linux abstract namespace */
36 * A socket in the Android reserved namespace in /dev/socket.
47 Namespace (int id) {
60 private final Namespace namespace;
66 * @param namespace namespace the name should be created in.
68 public LocalSocketAddress(String name, Namespace namespace) {
70 this.namespace = namespace;
74 * Creates an instance with a given name in the {@link Namespace#ABSTRACT}
75 * namespace
80 this(name,Namespace.ABSTRACT);
93 * Returns the namespace used by this address.
95 * @return non-null a namespace
97 public Namespace getNamespace() {
98 return namespace;