Searched defs:sun_path (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/main/java/android/system/
H A DUnixSocketAddress.java34 // 1) pathname: 0 < sun_path.length <= NAMED_PATH_LENGTH, sun_path[0] != 0.
35 // 2) unnamed: sun_path = [].
36 // 3) abstract: 0 < sun_path.length <= NAMED_PATH_LENGTH, sun_path[0] == 0.
37 private byte[] sun_path; field in class:UnixSocketAddress
40 private UnixSocketAddress(byte[] sun_path) { argument
41 if (sun_path == null) {
42 throw new IllegalArgumentException("sun_path must not be null");
44 if (sun_path
[all...]

Completed in 246 milliseconds