/src/libexec/ftpd/ |
logutmp.c | 93 UTMP ubuf; local in function:ftpd_login 114 if (read(fd, &ubuf, sizeof(UTMP)) == sizeof(UTMP)) { 115 if (!ubuf.ut_name[0]) {
|
/src/sbin/fsck_lfs/ |
bufcache.h | 74 struct ubuf { struct 75 LIST_ENTRY(ubuf) b_hash; /* Hash chain. */ 76 LIST_ENTRY(ubuf) b_vnbufs; /* Buffer's associated vnode. */ 77 TAILQ_ENTRY(ubuf) b_freelist; /* Free list position if not active. */ 107 LIST_HEAD(bufhash_struct, ubuf); 116 void buf_destroy(struct ubuf *); 117 void bremfree(struct ubuf *); 118 struct ubuf *incore(struct uvnode *, daddr_t); 119 struct ubuf *getblk(struct uvnode *, daddr_t, int); 120 void bwrite(struct ubuf *); [all...] |
/src/regress/sys/kern/getcwd/ |
getcwd.c | 435 char ubuf[MAXPATHLEN]; local in function:stress_test_getcwd 448 cp = old_getcwd (ubuf, MAXPATHLEN); 449 if (strcmp(buf, ubuf) != 0) { 451 buf, ubuf); 456 strlen(ubuf)+1, 0);
|
/src/sys/ufs/ext2fs/ |
ext2fs_hash.c | 97 const unsigned char *ubuf = (const unsigned char *)src; local in function:ext2fs_prep_hashbuf 111 buf_byte = (u_int)ubuf[i];
|
/src/usr.sbin/syslogd/ |
tls.c | 408 unsigned char *ubuf; local in function:get_commonname 415 len = ASN1_STRING_to_UTF8(&ubuf, 419 strlcpy(*returnstring, (const char*)ubuf, len+1); 420 OPENSSL_free(ubuf); 423 OPENSSL_free(ubuf); 441 unsigned char *ubuf; local in function:match_hostnames 495 len = ASN1_STRING_to_UTF8(&ubuf, 498 DPRINTF(D_TLS, "found CN: %.*s\n", len, ubuf); 501 (const char*)ubuf, len)) 503 (const char*)ubuf, len))) [all...] |
/src/sys/arch/alpha/alpha/ |
trap.c | 188 char ubuf[64]; local in function:printtrap 212 snprintf(ubuf, sizeof(ubuf), "type %lx", entry); 213 entryname = (const char *) ubuf;
|