Lines Matching refs:temp
230 int temp, i; in load_utmpx_struct() local
253 (void) sscanf(pid, "%d", &temp); in load_utmpx_struct()
254 entryx->ut_pid = temp; in load_utmpx_struct()
256 (void) sscanf(type, "%d", &temp); in load_utmpx_struct()
257 entryx->ut_type = temp; in load_utmpx_struct()
259 (void) sscanf(term, "%d", &temp); in load_utmpx_struct()
260 entryx->ut_exit.e_termination = temp; in load_utmpx_struct()
262 (void) sscanf(exitstatus, "%d", &temp); in load_utmpx_struct()
263 entryx->ut_exit.e_exit = temp; in load_utmpx_struct()
272 (void) sscanf(xtime, "%d", &temp); in load_utmpx_struct()
273 entryx->ut_tv.tv_sec = temp; in load_utmpx_struct()
275 (void) sscanf(time_usec, "%d", &temp); in load_utmpx_struct()
276 entryx->ut_tv.tv_usec = temp; in load_utmpx_struct()
278 (void) sscanf(session, "%d", &temp); in load_utmpx_struct()
279 entryx->ut_session = temp; in load_utmpx_struct()
281 temp = strlen(pad); in load_utmpx_struct()
283 for (i = 0; i < temp && (i>>1) < sizeof (entryx->pad); i += 2) in load_utmpx_struct()
286 (void) sscanf(syslen, "%d", &temp); in load_utmpx_struct()
287 entryx->ut_syslen = temp; in load_utmpx_struct()