Home
last modified time | relevance | path

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

12

/external/chromium_org/third_party/openssl/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/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/openssh/openbsd-compat/
Dbsd-cray.c103 void cray_retain_utmp(struct utmp *, int);
106 void cray_set_tmpdir(struct utmp *);
691 cray_retain_utmp(struct utmp *ut, int pid) in cray_retain_utmp()
694 struct utmp utmp; in cray_retain_utmp() local
698 while (read(fd, (char *)&utmp, sizeof(utmp)) == sizeof(utmp)) { in cray_retain_utmp()
699 if (pid == utmp.ut_pid) { in cray_retain_utmp()
700 ut->ut_jid = utmp.ut_jid; in cray_retain_utmp()
701 strncpy(ut->ut_tpath, utmp.ut_tpath, sizeof(utmp.ut_tpath)); in cray_retain_utmp()
702 strncpy(ut->ut_host, utmp.ut_host, sizeof(utmp.ut_host)); in cray_retain_utmp()
703 strncpy(ut->ut_name, utmp.ut_name, sizeof(utmp.ut_name)); in cray_retain_utmp()
[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/libppp/src/
Did.h30 struct utmp;
44 extern void ID0login(struct utmp *);
75 struct utmp ut; \
Did.c205 ID0login(struct utmp *ut) in ID0login()
222 struct utmp ut; in ID0logout()
DREADME.changes60 utmp host field in -direct mode.
Dphysical.c924 struct utmp ut; in physical_Login()
/external/openssh/
Dloginrec.c192 void set_utmp_time(struct logininfo *li, struct utmp *ut);
193 void construct_utmp(struct logininfo *li, struct utmp *ut);
633 set_utmp_time(struct logininfo *li, struct utmp *ut) in set_utmp_time()
645 struct utmp *ut) in construct_utmp()
824 utmp_write_library(struct logininfo *li, struct utmp *ut) in utmp_write_library()
840 utmp_write_direct(struct logininfo *li, struct utmp *ut) in utmp_write_direct()
842 struct utmp old_ut; in utmp_write_direct()
873 pos = (off_t)tty * sizeof(struct utmp); in utmp_write_direct()
925 struct utmp ut; in utmp_perform_login()
946 struct utmp ut; in utmp_perform_logout()
[all …]
Dconfigure.ac338 utmp.h \
569 [Define if you don't want to use utmp])
690 conf_utmp_location=/etc/utmp
729 AC_MSG_CHECKING([for obsolete utmp and wtmp in solaris2.x])
764 conf_utmp_location=/etc/utmp
1653 dnl Checks for utmp functions
3005 OSSH_CHECK_HEADER_FOR_FIELD([ut_host], [utmp.h], [HAVE_HOST_IN_UTMP])
3008 OSSH_CHECK_HEADER_FOR_FIELD([ut_pid], [utmp.h], [HAVE_PID_IN_UTMP])
3009 OSSH_CHECK_HEADER_FOR_FIELD([ut_type], [utmp.h], [HAVE_TYPE_IN_UTMP])
3011 OSSH_CHECK_HEADER_FOR_FIELD([ut_tv], [utmp.h], [HAVE_TV_IN_UTMP])
[all …]
Dconfig.h.in86 /* Define if you want to specify the path to your utmp file */
113 /* Define if you don't want to use utmp */
161 /* Define if you have ut_addr in utmp.h */
167 /* Define if you have ut_addr_v6 in utmp.h */
341 /* Define if you have ut_exit in utmp.h */
503 /* Define if you have ut_host in utmp.h */
515 /* Define if you have ut_id in utmp.h */
702 /* Define if you have ut_pid in utmp.h */
1077 /* Define if you have ut_time in utmp.h */
1095 /* Define if you have ut_tv in utmp.h */
[all …]
DOVERVIEW120 Logging in (updating utmp, lastlog, etc.)
123 login.c. This includes things such as updating the utmp, wtmp,
DTODO48 - utmp/wtmp get corrupted (something in loginrec?)
Dsshd.0129 -u len This option is used to specify the size of the field in the utmp
135 into the utmp file. -u0 may also be used to prevent sshd from
Dconfigure1389 --disable-utmp disable use of utmp even if detected no
6058 utmp.h \
6901 conf_utmp_location=/etc/utmp
7093 conf_utmp_location=/etc/utmp
16016 char *utmp = UTMP_FILE;
16033 for f in /etc/utmp /usr/adm/utmp /var/run/utmp; do
/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/libpcap/lbl/
Dos-sunos4.h118 struct utmp;
120 void login(struct utmp *);
/external/tcpdump/lbl/
Dos-sunos4.h118 struct utmp;
120 void login(struct utmp *);
/external/libgsm/src/
Dpreprocess.c53 ulongword utmp; /* for L_ADD */ variable
/external/ipsec-tools/
DNEWS40 o system accounting (utmp)

12