/src/lib/libc/compat/include/ |
utmp.h | 51 utmp_to_utmp50(const struct utmp *ut, struct utmp50 *ut50) 53 (void)memcpy(ut50, ut, sizeof(*ut50)); 54 ut50->ut_time = (int32_t)ut->ut_time; 58 utmp50_to_utmp(const struct utmp50 *ut50, struct utmp *ut) 60 (void)memcpy(ut, ut50, sizeof(*ut50)); 61 ut->ut_time = ut50->ut_time;
|
utmp.h | 51 utmp_to_utmp50(const struct utmp *ut, struct utmp50 *ut50) 53 (void)memcpy(ut50, ut, sizeof(*ut50)); 54 ut50->ut_time = (int32_t)ut->ut_time; 58 utmp50_to_utmp(const struct utmp50 *ut50, struct utmp *ut) 60 (void)memcpy(ut, ut50, sizeof(*ut50)); 61 ut->ut_time = ut50->ut_time;
|
utmpx.h | 63 utmpx50_to_utmpx(const struct utmpx50 *ut50, struct utmpx *ut) 65 (void)memcpy(ut, ut50, sizeof(*ut)); 66 timeval50_to_timeval(&ut50->ut_tv, &ut->ut_tv); 70 utmpx_to_utmpx50(const struct utmpx *ut, struct utmpx50 *ut50) 72 (void)memcpy(ut50, ut, sizeof(*ut50)); 73 timeval_to_timeval50(&ut->ut_tv, &ut50->ut_tv);
|
utmpx.h | 63 utmpx50_to_utmpx(const struct utmpx50 *ut50, struct utmpx *ut) 65 (void)memcpy(ut, ut50, sizeof(*ut)); 66 timeval50_to_timeval(&ut50->ut_tv, &ut->ut_tv); 70 utmpx_to_utmpx50(const struct utmpx *ut, struct utmpx50 *ut50) 72 (void)memcpy(ut50, ut, sizeof(*ut50)); 73 timeval_to_timeval50(&ut->ut_tv, &ut50->ut_tv);
|
/src/lib/libc/compat/gen/ |
compat_utmp.c | 55 struct utmp50 *ut50 = (void *)ut; variable in typeref:struct:utmp50 * 58 ut50->ut_time = (int32_t)ut->ut_time; 59 return ut50;
|
compat_utmp.c | 55 struct utmp50 *ut50 = (void *)ut; variable in typeref:struct:utmp50 * 58 ut50->ut_time = (int32_t)ut->ut_time; 59 return ut50;
|
compat_utmpx.c | 102 getutxid(const struct utmpx50 *ut50) 105 utmpx50_to_utmpx(ut50, &ut); 110 getutxline(const struct utmpx50 *ut50) 113 utmpx50_to_utmpx(ut50, &ut); 118 pututxline(const struct utmpx50 *ut50) 121 utmpx50_to_utmpx(ut50, &ut); 126 updwtmpx(const char *fname, const struct utmpx50 *ut50) 129 utmpx50_to_utmpx(ut50, &ut);
|
compat_utmpx.c | 102 getutxid(const struct utmpx50 *ut50) 105 utmpx50_to_utmpx(ut50, &ut); 110 getutxline(const struct utmpx50 *ut50) 113 utmpx50_to_utmpx(ut50, &ut); 118 pututxline(const struct utmpx50 *ut50) 121 utmpx50_to_utmpx(ut50, &ut); 126 updwtmpx(const char *fname, const struct utmpx50 *ut50) 129 utmpx50_to_utmpx(ut50, &ut);
|
/src/lib/libutil/compat/ |
compat_loginx.c | 56 loginx(const struct utmpx50 *ut50) 59 utmpx50_to_utmpx(ut50, &ut);
|
compat_loginx.c | 56 loginx(const struct utmpx50 *ut50) 59 utmpx50_to_utmpx(ut50, &ut);
|
compat_login.c | 60 login(const struct utmp50 *ut50) 66 utmp50_to_utmp(ut50, &ut);
|
compat_login.c | 60 login(const struct utmp50 *ut50) 66 utmp50_to_utmp(ut50, &ut);
|