| /src/sys/arch/m68k/fpsp/ |
| L_ENTRY.AWK | 57 utmp = 100 69 utmp += 1 70 printf "sed 's/_TMP_/" PREFIX utmp "/g'\n " 78 utmp += 1 79 printf "sed 's/_TMP_/" PREFIX utmp "/g'\n"
|
| /src/lib/libc/gen/ |
| utmp.c | 1 /* $NetBSD: utmp.c,v 1.10 2011/10/15 23:00:02 christos Exp $ */ 34 __RCSID("$NetBSD: utmp.c,v 1.10 2011/10/15 23:00:02 christos Exp $"); 43 #include <utmp.h> 46 static struct utmp utmp; variable in typeref:struct:utmp 58 struct utmp * 69 * If we have a an old version utmp file bail. 71 numentries = st.st_size / sizeof(utmp); 72 if ((off_t)(numentries * sizeof(utmp)) != st.st_size) 75 if (fread(&utmp, sizeof(utmp), 1, ut) == 1 [all...] |
| /src/lib/libutil/ |
| login.c | 50 #include <utmp.h> 53 login(const struct utmp *ut) 62 (void)lseek(fd, (off_t)(tty * sizeof(struct utmp)), SEEK_SET); 63 (void)write(fd, ut, sizeof(struct utmp)); 67 (void)write(fd, ut, sizeof(struct utmp));
|
| logwtmp.c | 50 #include <utmp.h> 56 struct utmp ut; 71 if (write(fd, &ut, sizeof(struct utmp)) != sizeof(struct utmp))
|
| loginx.c | 46 #include <utmp.h>
|
| /src/crypto/external/apache2/openssl/dist/crypto/asn1/ |
| x_int64.c | 50 uint64_t utmp; local 56 memcpy(&utmp, cp, sizeof(utmp)); 59 && utmp == 0) 62 && (int64_t)utmp < 0) { 64 utmp = 0 - utmp; 68 return ossl_i2c_uint64_int(cont, utmp, neg); 74 uint64_t utmp = 0; local 92 if (!ossl_c2i_uint64_int(&utmp, &neg, &cont, len) 143 uint32_t utmp; local 174 uint64_t utmp = 0; local [all...] |
| x_long.c | 88 unsigned long utmp, sign; local 101 utmp = 0 - (unsigned long)ltmp - 1; 104 utmp = ltmp; 106 clen = num_bits_ulong(utmp); 120 cont[i] = (unsigned char)(utmp ^ sign); 121 utmp >>= 8; 132 unsigned long utmp = 0, sign = 0x100; local 168 utmp = 0; 170 utmp <<= 8; 171 utmp |= cont[i] ^ sign [all...] |
| /src/crypto/external/bsd/openssl/dist/crypto/asn1/ |
| x_int64.c | 52 uint64_t utmp; local 58 memcpy(&utmp, cp, sizeof(utmp)); 61 && utmp == 0) 64 && (int64_t)utmp < 0) { 66 utmp = 0 - utmp; 70 return ossl_i2c_uint64_int(cont, utmp, neg); 76 uint64_t utmp = 0; local 94 if (!ossl_c2i_uint64_int(&utmp, &neg, &cont, len) 147 uint32_t utmp; local 178 uint64_t utmp = 0; local [all...] |
| x_long.c | 89 unsigned long utmp, sign; local 102 utmp = 0 - (unsigned long)ltmp - 1; 105 utmp = ltmp; 107 clen = num_bits_ulong(utmp); 121 cont[i] = (unsigned char)(utmp ^ sign); 122 utmp >>= 8; 133 unsigned long utmp = 0, sign = 0x100; local 169 utmp = 0; 171 utmp <<= 8; 172 utmp |= cont[i] ^ sign [all...] |
| /src/crypto/external/bsd/openssl.old/dist/crypto/asn1/ |
| x_int64.c | 52 uint64_t utmp; local 58 memcpy(&utmp, cp, sizeof(utmp)); 61 && utmp == 0) 64 && (int64_t)utmp < 0) { 66 utmp = 0 - utmp; 70 return i2c_uint64_int(cont, utmp, neg); 76 uint64_t utmp = 0; local 94 if (!c2i_uint64_int(&utmp, &neg, &cont, len) 147 uint32_t utmp; local 178 uint64_t utmp = 0; local [all...] |
| x_long.c | 93 unsigned long utmp, sign; 106 utmp = 0 - (unsigned long)ltmp - 1; 109 utmp = ltmp; 111 clen = num_bits_ulong(utmp); 125 cont[i] = (unsigned char)(utmp ^ sign); 126 utmp >>= 8; 137 unsigned long utmp = 0, sign = 0x100; 173 utmp = 0; 175 utmp <<= 8; 176 utmp |= cont[i] ^ sign [all...] |
| /src/lib/libc/compat/gen/ |
| compat_utmp.c | 46 #include <utmp.h> 47 #include <compat/include/utmp.h> 50 "warning: reference to compatibility getutent(); include <utmp.h> for correct reference") 53 cvt(struct utmp *ut)
|
| /src/lib/libc/compat/include/ |
| utmp.h | 1 /* $NetBSD: utmp.h,v 1.2 2009/01/11 02:46:25 christos Exp $ */ 36 * @(#)utmp.h 8.2 (Berkeley) 1/21/94 51 utmp_to_utmp50(const struct utmp *ut, struct utmp50 *ut50) 58 utmp50_to_utmp(const struct utmp50 *ut50, struct utmp *ut) 65 struct utmp *__getutent50(void);
|
| utmpx.h | 88 struct utmp; 89 void getutmp(const struct utmpx50 *, struct utmp *); 90 void __getutmp50(const struct utmpx *, struct utmp *); 91 void getutmpx(const struct utmp *, struct utmpx50 *); 92 void __getutmpx50(const struct utmp *, struct utmpx *);
|
| /src/lib/libutil/compat/ |
| compat_login.c | 53 #include <utmp.h> 54 #include <compat/include/utmp.h> 64 struct utmp ut; 70 (void)lseek(fd, (off_t)(tty * sizeof(struct utmp)), SEEK_SET);
|
| util.h | 43 struct utmp; 58 void __login50(const struct utmp *);
|
| /src/include/ |
| utmp.h | 1 /* $NetBSD: utmp.h,v 1.13 2016/01/22 23:59:44 dholland Exp $ */ 36 * @(#)utmp.h 8.2 (Berkeley) 1/21/94 45 #define _PATH_UTMP "/var/run/utmp" 59 struct utmp { struct 70 struct utmp *getutent(void) __RENAME(__getutent50);
|
| /src/external/gpl3/gcc/dist/libgcc/ |
| unwind-dw2-execute_cfa.h | 48 _uleb128_t reg, utmp; variable 56 insn_ptr = read_uleb128 (insn_ptr, &utmp); 57 offset = (_Unwind_Sword) utmp * DATA_ALIGN; 99 insn_ptr = read_uleb128 (insn_ptr, &utmp); 100 offset = (_Unwind_Sword) utmp * DATA_ALIGN; 175 insn_ptr = read_uleb128 (insn_ptr, &utmp); 176 fs->regs.cfa_reg = (_Unwind_Word)utmp; 177 insn_ptr = read_uleb128 (insn_ptr, &utmp); 178 fs->regs.cfa_offset = (_Unwind_Word)utmp; 183 insn_ptr = read_uleb128 (insn_ptr, &utmp); [all...] |
| /src/distrib/utils/libhack/ |
| utmp.c | 1 /* $NetBSD: utmp.c,v 1.5 2003/07/26 17:07:37 salo Exp $ */ 10 #include <utmp.h> 15 const struct utmp *ut;
|
| /src/etc/ |
| newsyslog.conf | 14 /var/log/wtmp root:utmp 664 7 * 168 ZBN 15 /var/log/wtmpx root:utmp 664 7 * 168 ZBN
|
| /src/crypto/external/cpl/trousers/dist/src/tcsd/ |
| platform.c | 17 #include <utmp.h> 43 struct utmp ut, save, *next = NULL; 49 memset(&ut, 0, sizeof(struct utmp)); 50 memset(&save, 0, sizeof(struct utmp));
|
| /src/etc/rc.d/ |
| sysdb | 16 extra_commands="devdb utmp services netgroup password" 77 # Re-create /var/run/utmp and /var/run/utmpx, which are 84 if ! [ -f /var/run/utmp$i ]; then 85 $echo -n "${comma}utmp$i" 87 install -c -m 664 -g utmp /dev/null /var/run/utmp$i
|
| /src/external/gpl2/groff/dist/src/utils/afmtodit/ |
| afmtodit.pl | 6251 my $utmp = $AGL_to_unicode{$field[0]}; 6252 if (defined $utmp && $utmp =~ /^[0-9A-F]{4}$/) { 6253 foreach my $unicodepsname ("uni" . $utmp, "u" . $utmp) { 6290 my $utmp = ""; # temporary value 6328 $utmp = $AGL_to_unicode{$component}; 6329 if ($utmp) { 6330 $utmp = "U+" . $utmp; [all...] |
| /src/lib/libpam/modules/pam_lastlog/ |
| pam_lastlog.c | 78 #include <utmp.h> 240 logit(LOG_NOTICE, "%s(): no utmp record for %s", 338 struct utmp utmp; local 340 (void)memset((void *)&utmp, 0, sizeof(utmp)); 341 utmp.ut_time = now->tv_sec; 342 (void)strncpy(utmp.ut_name, username, sizeof(utmp.ut_name)); 344 (void)strncpy(utmp.ut_host, hostname, sizeof(utmp.ut_host)) [all...] |
| /src/usr.bin/login/ |
| common.c | 61 #include <utmp.h> 302 struct utmp utmp; local 304 (void)memset((void *)&utmp, 0, sizeof(utmp)); 305 utmp.ut_time = now.tv_sec; 306 (void)strncpy(utmp.ut_name, username, sizeof(utmp.ut_name)); 308 (void)strncpy(utmp.ut_host, hostname, sizeof(utmp.ut_host)) [all...] |