Lines Matching defs:ut
65 struct utmpx ut, *oldu;
81 (void) memset(&ut, 0, sizeof (ut));
82 (void) strncpy(ut.ut_user, ".startd", sizeof (ut.ut_user));
83 ut.ut_pid = pid;
85 ut.ut_id[0] = ut.ut_id[1] = ut.ut_id[2] = ut.ut_id[3] = (char)SC_WILDC;
88 ut.ut_id[ret] = prefix[ret];
90 ut.ut_type = INIT_PROCESS;
91 (void) time(&ut.ut_tv.tv_sec);
97 if ((oldu = getutxid(&ut)) != NULL) {
101 bcopy(oldu->ut_line, ut.ut_line, sizeof (ut.ut_line));
102 bcopy(oldu->ut_host, ut.ut_host, sizeof (ut.ut_host));
103 ut.ut_syslen = (tmplen = strlen(ut.ut_host)) ?
104 min(tmplen + 1, sizeof (ut.ut_host)) : 0;
107 if (makeutx(&ut) != NULL)
119 updwtmpx(WTMPX_FILE, &ut);