/src/lib/libtelnet/ |
getent.c | 1 /* $NetBSD: getent.c,v 1.11 2012/03/21 05:33:27 matt Exp $ */ 35 static char sccsid[] = "@(#)getent.c 8.2 (Berkeley) 12/15/93"; 37 __RCSID("$NetBSD: getent.c,v 1.11 2012/03/21 05:33:27 matt Exp $"); 46 int getent(char *, char *); 51 getent(char *cp, char *name) function in typeref:typename:int
|
/src/usr.sbin/rtadvd/ |
advcap.c | 98 int getent(char *, char *, char *); 118 return (getent(bp, name, cp)); 122 getent(char *bp, char *name, char *cp) function in typeref:typename:int 217 if (getent(tcbuf, tcname, remotefile) != 1) {
|
/src/lib/libc/gen/ |
getcap.c | 85 #define MAX_RECURSION 32 /* maximum getent recursion */ 100 static int getent(char **, size_t *, const char * const *, int, 225 return getent(buf, &dummy, db_array, -1, name, 0, NULL); 235 * Getent implements the functions of cgetent. If fd is non-negative, 240 * Getent returns the same success/failure codes as cgetent. On success, a 254 getent(char **cap, size_t *len, const char * const *db_array, int fd, function in typeref:typename:int 553 iret = getent(&icap, &ilen, db_p, fd, tc, depth+1, 889 * Last argument of getent here should be nbuf if we want true 891 * With NULL, getent will return the first entry found 895 status = getent(bp, &dummy, db_array, -1, buf, 0, NULL) [all...] |