Home
last modified time | relevance | path

Searched refs:utmp (Results 1 – 15 of 15) sorted by relevance

/external/openssl/crypto/asn1/
Dx_long.c108 unsigned long utmp; in long_i2c() local
121 if(ltmp < 0) utmp = -ltmp - 1; in long_i2c()
122 else utmp = ltmp; in long_i2c()
123 clen = BN_num_bits_word(utmp); in long_i2c()
134 cont[i] = (unsigned char)(utmp & 0xff); in long_i2c()
136 utmp >>= 8; in long_i2c()
147 unsigned long utmp = 0; in long_c2i() local
156 utmp = 0; in long_c2i()
158 utmp <<= 8; in long_c2i()
159 if(neg) utmp |= cont[i] ^ 0xff; in long_c2i()
[all …]
/external/dropbear/
Dloginrec.c166 void set_utmp_time(struct logininfo *li, struct utmp *ut);
167 void construct_utmp(struct logininfo *li, struct utmp *ut);
477 set_utmp_time(struct logininfo *li, struct utmp *ut) in set_utmp_time()
491 struct utmp *ut) in construct_utmp()
665 utmp_write_library(struct logininfo *li, struct utmp *ut) in utmp_write_library()
680 utmp_write_direct(struct logininfo *li, struct utmp *ut) in utmp_write_direct()
682 struct utmp old_ut; in utmp_write_direct()
712 (void)lseek(fd, (off_t)(tty * sizeof(struct utmp)), SEEK_SET); in utmp_write_direct()
725 (void)lseek(fd, (off_t)(tty * sizeof(struct utmp)), SEEK_SET); in utmp_write_direct()
741 struct utmp ut; in utmp_perform_login()
[all …]
Dconfigure.in43 AC_MSG_CHECKING(for obsolete utmp and wtmp in solaris2.x)
47 AC_DEFINE(DISABLE_UTMP,,Disable utmp)
212 ….h unistd.h crypt.h pty.h ioctl.h libutil.h libgen.h inttypes.h stropts.h utmp.h utmpx.h lastlog.h…
338utmp.ut_host, struct utmp.ut_pid, struct utmp.ut_type, struct utmp.ut_tv, struct utmp.ut_id, struc…
341 #include <utmp.h>
371 AC_ARG_ENABLE(utmp, optenable
372 [ --disable-utmp Disable use of utmp even if detected [no]],
373 [ AC_DEFINE(DISABLE_UTMP,,Disable use of utmp) ]
427 #include <utmp.h>
445 #include <utmp.h>
[all …]
Dconfig.h.in15 /* utmp file location */
39 /* Disable use of utmp */
273 /* Define to 1 if `ut_addr' is member of `struct utmp'. */
276 /* Define to 1 if `ut_addr_v6' is member of `struct utmp'. */
279 /* Define to 1 if `ut_exit' is member of `struct utmp'. */
282 /* Define to 1 if `ut_host' is member of `struct utmp'. */
285 /* Define to 1 if `ut_id' is member of `struct utmp'. */
288 /* Define to 1 if `ut_pid' is member of `struct utmp'. */
291 /* Define to 1 if `ut_time' is member of `struct utmp'. */
294 /* Define to 1 if `ut_tv' is member of `struct utmp'. */
[all …]
Dfilelist.txt53 loginrec.c From OpenSSH, handles utmp/wtmp logging
Dconfigure854 --disable-utmp Disable use of utmp even if detected no
5107 ….h unistd.h crypt.h pty.h ioctl.h libutil.h libgen.h inttypes.h stropts.h utmp.h utmpx.h lastlog.h…
6468 static struct utmp ac_aggr;
6518 static struct utmp ac_aggr;
6589 static struct utmp ac_aggr;
6639 static struct utmp ac_aggr;
6710 static struct utmp ac_aggr;
6760 static struct utmp ac_aggr;
6831 static struct utmp ac_aggr;
6881 static struct utmp ac_aggr;
[all …]
DCHANGES576 - Login recording (utmp/wtmp) support, so last/w/who work - taken from OpenSSH
/external/libgsm/inc/
Dprivate.h104 : (utmp = (ulongword)-((a) + 1) + (ulongword)-((b) + 1)) \
105 >= MAX_LONGWORD ? MIN_LONGWORD : -(longword)utmp-2 ) \
107 : (utmp = (ulongword)(a) + (ulongword)(b)) >= MAX_LONGWORD \
108 ? MAX_LONGWORD : utmp))
/external/tcpdump/lbl/
Dos-sunos4.h118 struct utmp;
120 void login(struct utmp *);
/external/libpcap/lbl/
Dos-sunos4.h118 struct utmp;
120 void login(struct utmp *);
/external/libgsm/src/
Dpreprocess.c53 ulongword utmp; /* for L_ADD */ variable
/external/netcat/
Dstupidh45 stddef dirent direct dir ndir utmp wtmp utmpx wtmpx lastlog login paths \
/external/ipsec-tools/
DNEWS42 o system accounting (utmp)
DChangeLog274 * src/racoon/isakmp_cfg.c: moved from utmp.h to utmpx.h (patch
/external/ppp/pppd/
Dsys-linux.c2148 struct utmp ut, *utp; in logwtmp()