Searched refs:UNIX_PATH_MAX (Results 1 – 11 of 11) sorted by relevance
7 #define UNIX_PATH_MAX 108 macro11 char sun_path[UNIX_PATH_MAX]; /* pathname */
45 #ifndef UNIX_PATH_MAX46 # define UNIX_PATH_MAX sizeof(((struct sockaddr_un *) 0)->sun_path) macro296 char path[UNIX_PATH_MAX + 1]; in unix_parse_response()312 if (path_len > UNIX_PATH_MAX) in unix_parse_response()313 path_len = UNIX_PATH_MAX; in unix_parse_response()
973 # if !defined(UNIX_PATH_MAX)976 # define UNIX_PATH_MAX 108 macro980 char sun_path[UNIX_PATH_MAX];
100 static_assert(sizeof(kSocketPath) <= UNIX_PATH_MAX, "kSocketPath too long"); in get_seed_from_daemon()
52 if (strlen(name) > UNIX_PATH_MAX - 1) { in setup_socket()
57 #ifndef UNIX_PATH_MAX58 #define UNIX_PATH_MAX 108 macro68 char lock_addr[UNIX_PATH_MAX + LOCK_SUFFIXLEN];
5807 UNIX_PATH_MAX = 108 variable in TestLinuxAbstractNamespace5821 address = b"\x00" + b"h" * (self.UNIX_PATH_MAX - 1)5827 address = "\x00" + "h" * self.UNIX_PATH_MAX
1725 pub const UNIX_PATH_MAX: u32 = 108u32; constant