Lines Matching refs:NAME

36 #ifndef NAME
37 #define NAME(x) NAME_(x,test1) macro
41 #define NAMESTR(x) NAMESTR_(NAME(x))
88 if (NAME(init_hook)) in init()
91 NAME(init_hook)(&t); in init()
135 NAME(setpwent) (int stayopen) in NAME() function
144 NAME(endpwent) (void) in NAME() function
174 NAME(getpwent_r) (struct passwd *result, char *buffer, size_t buflen, in NAME() function
197 NAME(getpwuid_r) (uid_t uid, struct passwd *result, char *buffer, in NAME() function
210 NAME(getpwnam_r) (const char *name, struct passwd *result, char *buffer, in NAME() function
230 NAME(setgrent) (int stayopen) in NAME() function
239 NAME(endgrent) (void) in NAME() function
287 NAME(getgrent_r) (struct group *result, char *buffer, size_t buflen, in NAME() function
310 NAME(getgrgid_r) (gid_t gid, struct group *result, char *buffer, in NAME() function
323 NAME(getgrnam_r) (const char *name, struct group *result, char *buffer, in NAME() function
345 NAME(setspent) (int stayopen) in NAME() function
354 NAME(endspwent) (void) in NAME() function
386 NAME(getspent_r) (struct spwd *result, char *buffer, size_t buflen, in NAME() function
408 NAME(getspnam_r) (const char *name, struct spwd *result, char *buffer, in NAME() function
428 NAME(sethostent) (int stayopen) in NAME() function
437 NAME(endhostent) (void) in NAME() function
488 NAME(gethostent_r) (struct hostent *ret, char *buffer, size_t buflen, in NAME() function
514 NAME(gethostbyname3_r) (const char *name, int af, struct hostent *ret, in NAME() function
528 NAME(gethostbyname_r) (const char *name, struct hostent *result, in NAME() function
532 return NAME(gethostbyname3_r) (name, AF_INET, result, buffer, buflen, in NAME()
537 NAME(gethostbyname2_r) (const char *name, int af, struct hostent *result, in NAME() function
541 return NAME(gethostbyname3_r) (name, af, result, buffer, buflen, in NAME()
546 NAME(gethostbyaddr2_r) (const void *addr, socklen_t len, int af, in NAME() function
565 NAME(gethostbyaddr_r) (const void *addr, socklen_t len, int af, in NAME() function
569 return NAME(gethostbyaddr2_r) (addr, len, af, result, buffer, buflen, in NAME()