/src/lib/libc/gen/ |
utmp.c | 48 static char utfile[MAXPATHLEN] = _PATH_UTMP; variable in typeref:typename:char[] 64 if ((ut = fopen(utfile, "re")) == NULL) 96 if (len >= sizeof(utfile)) 103 (void)strlcpy(utfile, fname, sizeof(utfile));
|
utmp.c | 48 static char utfile[MAXPATHLEN] = _PATH_UTMP; variable in typeref:typename:char[] 64 if ((ut = fopen(utfile, "re")) == NULL) 96 if (len >= sizeof(utfile)) 103 (void)strlcpy(utfile, fname, sizeof(utfile));
|
utmpx.c | 61 static char utfile[MAXPATHLEN] = _PATH_UTMPX; variable in typeref:typename:char[] 124 if ((fp = fopen(utfile, "re+")) == NULL) 125 if ((fp = fopen(utfile, "we+")) == NULL) { 126 if ((fp = fopen(utfile, "re")) == NULL) 251 if (strcmp(_PATH_UTMPX, utfile) == 0) { 380 if (len >= sizeof(utfile)) 387 (void)strlcpy(utfile, fname, sizeof(utfile));
|
utmpx.c | 61 static char utfile[MAXPATHLEN] = _PATH_UTMPX; variable in typeref:typename:char[] 124 if ((fp = fopen(utfile, "re+")) == NULL) 125 if ((fp = fopen(utfile, "we+")) == NULL) { 126 if ((fp = fopen(utfile, "re")) == NULL) 251 if (strcmp(_PATH_UTMPX, utfile) == 0) { 380 if (len >= sizeof(utfile)) 387 (void)strlcpy(utfile, fname, sizeof(utfile));
|