Lines Matching refs:utx
101 struct utmpx *utx;
103 utx = (struct utmpx *) nbuf;
107 (void) strcpy(utx->ut_user, ut->ut_name);
108 (void) memset(utx->ut_id, 0, sizeof (utx->ut_id));
109 (void) strcpy(utx->ut_line, ut->ut_line);
110 utx->ut_pid = 0;
111 if ((strcmp(utx->ut_user, "") == 0) &&
112 (strcmp(utx->ut_host, "") == 0))
113 utx->ut_type = DEAD_PROCESS;
115 utx->ut_type = USER_PROCESS;
116 utx->ut_exit.e_termination = 0;
117 utx->ut_exit.e_exit = 0;
118 utx->ut_tv.tv_sec = ut->ut_time;
119 utx->ut_tv.tv_usec = 0;
120 utx->ut_session = 0;
121 utx->ut_syslen = sizeof (ut->ut_name) + 1;
122 (void) strcpy(utx->ut_host, ut->ut_host);
124 utx++;
126 return ((char *) utx - nbuf);