Symbol: utmpx
bin/date/date.c
535
struct utmpx utx;
crypto/dist/ipsec-tools/src/racoon/isakmp_cfg.c
1606
struct utmpx ut;
distrib/utils/libhack/utmp.c
21
const struct utmpx *ut;
include/util.h
79
struct utmpx;
include/util.h
99
void loginx(const struct utmpx *) __RENAME(__loginx50);
include/utmpx.h
135
struct utmpx *getutxent(void) __RENAME(__getutxent50);
include/utmpx.h
136
struct utmpx *getutxid(const struct utmpx *) __RENAME(__getutxid50);
include/utmpx.h
137
struct utmpx *getutxline(const struct utmpx *) __RENAME(__getutxline50);
include/utmpx.h
138
struct utmpx *pututxline(const struct utmpx *) __RENAME(__pututxline50);
include/utmpx.h
143
int updwtmpx(const char *, const struct utmpx *) __RENAME(__updwtmpx50);
include/utmpx.h
149
void getutmp(const struct utmpx *, struct utmp *) __RENAME(__getutmp50);
include/utmpx.h
150
void getutmpx(const struct utmp *, struct utmpx *) __RENAME(__getutmpx50);
lib/libc/compat/gen/compat_utmpx.c
104
struct utmpx ut;
lib/libc/compat/gen/compat_utmpx.c
112
struct utmpx ut;
lib/libc/compat/gen/compat_utmpx.c
120
struct utmpx ut;
lib/libc/compat/gen/compat_utmpx.c
128
struct utmpx ut;
lib/libc/compat/gen/compat_utmpx.c
183
struct utmpx utx;
lib/libc/compat/gen/compat_utmpx.c
191
struct utmpx utx;
lib/libc/compat/gen/compat_utmpx.c
69
cvt(struct utmpx *ut)
lib/libc/compat/include/utmpx.h
63
utmpx50_to_utmpx(const struct utmpx50 *ut50, struct utmpx *ut)
lib/libc/compat/include/utmpx.h
70
utmpx_to_utmpx50(const struct utmpx *ut, struct utmpx50 *ut50)
lib/libc/compat/include/utmpx.h
77
struct utmpx *__getutxent50(void);
lib/libc/compat/include/utmpx.h
79
struct utmpx *__getutxid50(const struct utmpx *);
lib/libc/compat/include/utmpx.h
81
struct utmpx *__getutxline50(const struct utmpx *);
lib/libc/compat/include/utmpx.h
83
struct utmpx *__pututxline50(const struct utmpx *);
lib/libc/compat/include/utmpx.h
85
int __updwtmpx50(const char *, const struct utmpx *);
lib/libc/compat/include/utmpx.h
90
void __getutmp50(const struct utmpx *, struct utmp *);
lib/libc/compat/include/utmpx.h
92
void __getutmpx50(const struct utmp *, struct utmpx *);
lib/libc/gen/utmpx.c
117
struct utmpx *
lib/libc/gen/utmpx.c
169
struct utmpx *
lib/libc/gen/utmpx.c
170
getutxid(const struct utmpx *utx)
lib/libc/gen/utmpx.c
216
struct utmpx *
lib/libc/gen/utmpx.c
217
getutxline(const struct utmpx *utx)
lib/libc/gen/utmpx.c
240
struct utmpx *
lib/libc/gen/utmpx.c
241
pututxline(const struct utmpx *utx)
lib/libc/gen/utmpx.c
243
struct utmpx temp, *u = NULL;
lib/libc/gen/utmpx.c
305
static struct utmpx *
lib/libc/gen/utmpx.c
306
utmp_update(const struct utmpx *utx)
lib/libc/gen/utmpx.c
338
updwtmpx(const char *file, const struct utmpx *utx)
lib/libc/gen/utmpx.c
394
getutmp(const struct utmpx *ux, struct utmp *u)
lib/libc/gen/utmpx.c
407
getutmpx(const struct utmp *u, struct utmpx *ux)
lib/libc/gen/utmpx.c
60
static struct utmpx ut;
lib/libc/gen/utmpx.c
63
static struct utmpx *utmp_update(const struct utmpx *);
lib/libc/gen/utmpx.c
73
old2new(struct utmpx *utx)
lib/libc/gen/utmpx.c
83
new2old(struct utmpx *utx)
lib/libpam/modules/pam_lastlog/pam_lastlog.c
274
struct utmpx utmpx;
lib/libpam/modules/pam_lastlog/pam_lastlog.c
277
memset((void *)&utmpx, 0, sizeof(utmpx));
lib/libpam/modules/pam_lastlog/pam_lastlog.c
278
utmpx.ut_tv = *now;
lib/libpam/modules/pam_lastlog/pam_lastlog.c
279
(void)strncpy(utmpx.ut_name, username, sizeof(utmpx.ut_name));
lib/libpam/modules/pam_lastlog/pam_lastlog.c
281
(void)strncpy(utmpx.ut_host, hostname, sizeof(utmpx.ut_host));
lib/libpam/modules/pam_lastlog/pam_lastlog.c
283
utmpx.ut_ss = *ss;
lib/libpam/modules/pam_lastlog/pam_lastlog.c
285
(void)strncpy(utmpx.ut_line, tty, sizeof(utmpx.ut_line));
lib/libpam/modules/pam_lastlog/pam_lastlog.c
286
utmpx.ut_type = USER_PROCESS;
lib/libpam/modules/pam_lastlog/pam_lastlog.c
287
utmpx.ut_pid = getpid();
lib/libpam/modules/pam_lastlog/pam_lastlog.c
289
if ((size_t)(t - tty) >= sizeof(utmpx.ut_id)) {
lib/libpam/modules/pam_lastlog/pam_lastlog.c
290
(void)strncpy(utmpx.ut_id, t - sizeof(utmpx.ut_id),
lib/libpam/modules/pam_lastlog/pam_lastlog.c
291
sizeof(utmpx.ut_id));
lib/libpam/modules/pam_lastlog/pam_lastlog.c
293
(void)strncpy(utmpx.ut_id, tty, sizeof(utmpx.ut_id));
lib/libpam/modules/pam_lastlog/pam_lastlog.c
295
if (pututxline(&utmpx) == NULL)
lib/libpam/modules/pam_lastlog/pam_lastlog.c
298
if (updwtmpx(_PATH_WTMPX, &utmpx) != 0)
lib/libutil/compat/compat_loginx.c
58
struct utmpx ut;
lib/libutil/compat/compat_logoutx.c
58
struct utmpx *utp, ut;
lib/libutil/compat/util.h
44
struct utmpx;
lib/libutil/compat/util.h
59
void __loginx50(const struct utmpx *);
lib/libutil/loginx.c
50
loginx(const struct utmpx *ut)
lib/libutil/logoutx.c
58
struct utmpx *utp, ut;
lib/libutil/logwtmpx.c
59
struct utmpx ut;
libexec/ftpd/extern.h
181
struct utmpx;
libexec/ftpd/extern.h
187
void ftpd_loginx(const struct utmpx *);
libexec/ftpd/ftpd.c
1226
(void)memset(&utmpx, 0, sizeof(utmpx));
libexec/ftpd/ftpd.c
1227
utmpx.ut_tv = tv;
libexec/ftpd/ftpd.c
1228
utmpx.ut_pid = getpid();
libexec/ftpd/ftpd.c
1229
utmpx.ut_id[0] = 'f';
libexec/ftpd/ftpd.c
1230
utmpx.ut_id[1] = 't';
libexec/ftpd/ftpd.c
1231
utmpx.ut_id[2] = 'p';
libexec/ftpd/ftpd.c
1232
utmpx.ut_id[3] = '*';
libexec/ftpd/ftpd.c
1233
utmpx.ut_type = USER_PROCESS;
libexec/ftpd/ftpd.c
1234
(void)strncpy(utmpx.ut_name, name, sizeof(utmpx.ut_name));
libexec/ftpd/ftpd.c
1235
(void)strncpy(utmpx.ut_line, line, sizeof(utmpx.ut_line));
libexec/ftpd/ftpd.c
1236
(void)strncpy(utmpx.ut_host, host, sizeof(utmpx.ut_host));
libexec/ftpd/ftpd.c
1237
(void)memcpy(&utmpx.ut_ss, &haddr->si_su, haddr->su_len);
libexec/ftpd/ftpd.c
1238
ftpd_loginx(&utmpx);
libexec/ftpd/ftpd.c
206
static struct utmpx utmpx; /* for utmpx */
libexec/ftpd/logutmp.c
162
ftpd_loginx(const struct utmpx *ut)
libexec/ftpd/logwtmp.c
121
struct utmpx ut;
libexec/ftpd/logwtmp.c
139
if(write(fdx, (char *)&ut, sizeof(struct utmpx)) !=
libexec/ftpd/logwtmp.c
140
sizeof(struct utmpx))
libexec/utmp_update/utmp_update.c
149
struct utmpx utold, *utoldp;
libexec/utmp_update/utmp_update.c
76
struct utmpx *utx;
sbin/init/init.c
1345
struct utmpx ut;
sbin/init/init.c
1390
struct utmpx ut;
usr.bin/last/last.c
392
#define utmp utmpx
usr.bin/login/common.c
241
struct utmpx utmpx;
usr.bin/login/common.c
244
memset((void *)&utmpx, 0, sizeof(utmpx));
usr.bin/login/common.c
245
utmpx.ut_tv = now;
usr.bin/login/common.c
246
(void)strncpy(utmpx.ut_name, username, sizeof(utmpx.ut_name));
usr.bin/login/common.c
248
(void)strncpy(utmpx.ut_host, hostname, sizeof(utmpx.ut_host));
usr.bin/login/common.c
249
utmpx.ut_ss = ss;
usr.bin/login/common.c
251
(void)strncpy(utmpx.ut_line, tty, sizeof(utmpx.ut_line));
usr.bin/login/common.c
252
utmpx.ut_type = USER_PROCESS;
usr.bin/login/common.c
253
utmpx.ut_pid = getpid();
usr.bin/login/common.c
255
if ((size_t)(t - tty) >= sizeof(utmpx.ut_id)) {
usr.bin/login/common.c
256
(void)strncpy(utmpx.ut_id, t - sizeof(utmpx.ut_id),
usr.bin/login/common.c
257
sizeof(utmpx.ut_id));
usr.bin/login/common.c
259
(void)strncpy(utmpx.ut_id, tty, sizeof(utmpx.ut_id));
usr.bin/login/common.c
261
if (pututxline(&utmpx) == NULL)
usr.bin/login/common.c
264
if (updwtmpx(_PATH_WTMPX, &utmpx) != 0)
usr.bin/w/w.c
146
struct utmpx *utx;
usr.bin/who/utmpentry.c
178
struct utmpx *utx;
usr.bin/who/utmpentry.c
298
getentryx(struct utmpentry *e, struct utmpx *up)
usr.bin/who/utmpentry.c
64
static void getentryx(struct utmpentry *, struct utmpx *);