Lines Matching defs:ab
47 struct acct ab;
291 struct acct *a = &ab;
310 if (fread((char *)&ab, sizeof(struct acct), 1, stdin) != 1)
312 else if (ab.ac_flag & AEXPND)
433 fwrite(&ab, sizeof(ab), 1, ostrm);
458 ab.ac_flag = oab.ac_flag | AEXPND;
459 ab.ac_stat = oab.ac_stat;
460 ab.ac_uid = (uid_t) oab.ac_uid;
461 ab.ac_gid = (gid_t) oab.ac_gid;
462 ab.ac_tty = (dev_t) oab.ac_tty;
463 ab.ac_btime = oab.ac_btime;
464 ab.ac_utime = oab.ac_utime;
465 ab.ac_stime = oab.ac_stime;
466 ab.ac_mem = oab.ac_mem;
467 ab.ac_io = oab.ac_io;
468 ab.ac_rw = oab.ac_rw;
469 strcpy(ab.ac_comm, oab.ac_comm);
472 ret = fread((char *)&ab, sizeof(struct acct), 1, stdin);
538 struct acct *a = &ab;