Symbol: ebuf
crypto/openssl/test/afalgtest.c
32
unsigned char ebuf[BUFFER_SIZE + 32];
crypto/openssl/test/afalgtest.c
56
OPENSSL_cleanse(ebuf, sizeof(ebuf));
crypto/openssl/test/afalgtest.c
80
|| !TEST_true(EVP_CipherUpdate(ctx, ebuf, &encl, in, BUFFER_SIZE))
crypto/openssl/test/afalgtest.c
81
|| !TEST_true(EVP_CipherFinal_ex(ctx, ebuf + encl, &encf)))
crypto/openssl/test/afalgtest.c
85
if (!TEST_mem_eq(enc_result, BUFFER_SIZE, ebuf, BUFFER_SIZE))
crypto/openssl/test/afalgtest.c
90
|| !TEST_true(EVP_CipherUpdate(ctx, dbuf, &decl, ebuf, encl))
lib/libc/string/strerror.c
127
static _Thread_local char ebuf[NL_TEXTMAX];
lib/libc/string/strerror.c
129
if (__strerror_rl(num, ebuf, sizeof(ebuf), locale) != 0)
lib/libc/string/strerror.c
131
return (ebuf);
lib/libc/string/strerror.c
137
static char ebuf[NL_TEXTMAX];
lib/libc/string/strerror.c
139
if (__strerror_rl(num, ebuf, sizeof(ebuf), __get_locale()) != 0)
lib/libc/string/strerror.c
141
return (ebuf);
lib/libc/string/strsignal.c
101
ebuf = sig_tlsalloc();
lib/libc/string/strsignal.c
104
n = strlcpy(ebuf,
lib/libc/string/strsignal.c
112
n = strlcpy(ebuf,
lib/libc/string/strsignal.c
131
p = (ebuf + n);
lib/libc/string/strsignal.c
147
return (ebuf);
lib/libc/string/strsignal.c
61
char *ebuf = NULL;
lib/libc/string/strsignal.c
64
ebuf = sig_ebuf;
lib/libc/string/strsignal.c
69
if ((ebuf = thr_getspecific(sig_key)) == NULL) {
lib/libc/string/strsignal.c
70
if ((ebuf = malloc(sizeof(sig_ebuf))) == NULL)
lib/libc/string/strsignal.c
72
if (thr_setspecific(sig_key, ebuf) != 0) {
lib/libc/string/strsignal.c
73
free(ebuf);
lib/libc/string/strsignal.c
74
ebuf = NULL;
lib/libc/string/strsignal.c
80
if (ebuf == NULL)
lib/libc/string/strsignal.c
81
ebuf = sig_ebuf_err;
lib/libc/string/strsignal.c
82
return (ebuf);
lib/libc/string/strsignal.c
89
char *ebuf;
lib/libc/tests/stdtime/detect_tz_changes_test.c
203
char ebuf[1024] = "";
lib/libc/tests/stdtime/detect_tz_changes_test.c
315
if (fds[1].revents & POLLIN && elen < sizeof(ebuf)) {
lib/libc/tests/stdtime/detect_tz_changes_test.c
316
rlen = read(epd[0], ebuf + elen, sizeof(ebuf) - elen);
lib/libc/tests/stdtime/detect_tz_changes_test.c
321
ATF_REQUIRE_EQ(elen, fwrite(ebuf, 1, elen, stderr));
lib/libc/tests/stdtime/detect_tz_changes_test.c
358
ATF_REQUIRE_EQ(elen, fwrite(ebuf, 1, elen, stderr));
lib/libnetbsd/sockaddr_snprintf.c
114
char *ebuf = &sbuf[len - 1], *buf = sbuf;
lib/libnetbsd/sockaddr_snprintf.c
127
#define ADDC(c) do { if (buf < ebuf) *buf++ = c; else buf++; } \
lib/libnetbsd/sockaddr_snprintf.c
309
if (buf < ebuf)
lib/libnetbsd/strsuftoll.c
108
long long min, long long max, char *ebuf, size_t ebuflen)
lib/libnetbsd/strsuftoll.c
114
ebuf[0] = '\0';
lib/libnetbsd/strsuftoll.c
177
num *= strsuftollx(desc, expr + 1, min, max, ebuf, ebuflen);
lib/libnetbsd/strsuftoll.c
178
if (*ebuf != '\0')
lib/libnetbsd/strsuftoll.c
182
snprintf(ebuf, ebuflen,
lib/libnetbsd/strsuftoll.c
188
badnum: snprintf(ebuf, ebuflen,
lib/libnetbsd/strsuftoll.c
194
snprintf(ebuf, ebuflen, "%s %lld is less than %lld.",
lib/libnetbsd/strsuftoll.c
200
snprintf(ebuf, ebuflen,
lib/libnetbsd/strsuftoll.c
205
*ebuf = '\0';
lib/libsecureboot/vets.c
101
static char ebuf[512];
lib/libsecureboot/vets.c
106
return (ebuf);
lib/libsecureboot/vets.c
116
ebuf[0] = '\0';
lib/libsecureboot/vets.c
120
vsprintf(ebuf, fmt, ap); /* no vsnprintf in libstand */
lib/libsecureboot/vets.c
121
ebuf[sizeof(ebuf) - 1] = '\0';
lib/libsecureboot/vets.c
122
rc = strlen(ebuf);
lib/libsecureboot/vets.c
124
rc = vsnprintf(ebuf, sizeof(ebuf), fmt, ap);
libexec/tftpd/tftp-io.c
83
static char ebuf[40];
libexec/tftpd/tftp-io.c
91
snprintf(ebuf, sizeof(ebuf), "error %d", error);
libexec/tftpd/tftp-io.c
92
return (ebuf);
sbin/hastd/ebuf.c
109
ebuf_add_head(struct ebuf *eb, const void *data, size_t size)
sbin/hastd/ebuf.c
136
ebuf_add_tail(struct ebuf *eb, const void *data, size_t size)
sbin/hastd/ebuf.c
163
ebuf_del_head(struct ebuf *eb, size_t size)
sbin/hastd/ebuf.c
174
ebuf_del_tail(struct ebuf *eb, size_t size)
sbin/hastd/ebuf.c
187
ebuf_data(struct ebuf *eb, size_t *sizep)
sbin/hastd/ebuf.c
201
ebuf_size(struct ebuf *eb)
sbin/hastd/ebuf.c
213
ebuf_head_extend(struct ebuf *eb, size_t size)
sbin/hastd/ebuf.c
242
ebuf_tail_extend(struct ebuf *eb, size_t size)
sbin/hastd/ebuf.c
62
static int ebuf_head_extend(struct ebuf *eb, size_t size);
sbin/hastd/ebuf.c
63
static int ebuf_tail_extend(struct ebuf *eb, size_t size);
sbin/hastd/ebuf.c
65
struct ebuf *
sbin/hastd/ebuf.c
68
struct ebuf *eb;
sbin/hastd/ebuf.c
97
ebuf_free(struct ebuf *eb)
sbin/hastd/ebuf.h
36
struct ebuf;
sbin/hastd/ebuf.h
38
struct ebuf *ebuf_alloc(size_t size);
sbin/hastd/ebuf.h
39
void ebuf_free(struct ebuf *eb);
sbin/hastd/ebuf.h
41
int ebuf_add_head(struct ebuf *eb, const void *data, size_t size);
sbin/hastd/ebuf.h
42
int ebuf_add_tail(struct ebuf *eb, const void *data, size_t size);
sbin/hastd/ebuf.h
44
void ebuf_del_head(struct ebuf *eb, size_t size);
sbin/hastd/ebuf.h
45
void ebuf_del_tail(struct ebuf *eb, size_t size);
sbin/hastd/ebuf.h
47
void *ebuf_data(struct ebuf *eb, size_t *sizep);
sbin/hastd/ebuf.h
48
size_t ebuf_size(struct ebuf *eb);
sbin/hastd/hast_proto.c
134
struct ebuf *eb;
sbin/hastd/hast_proto.c
82
struct ebuf *eb;
sbin/hastd/metadata.c
170
struct ebuf *eb;
sbin/hastd/metadata.c
49
struct ebuf *eb;
sbin/hastd/nv.c
337
struct ebuf *
sbin/hastd/nv.c
368
nv_ntoh(struct ebuf *eb)
sbin/hastd/nv.c
89
struct ebuf *nv_ebuf;
sbin/hastd/nv.h
51
struct ebuf *nv_hton(struct nv *nv);
sbin/hastd/nv.h
52
struct nv *nv_ntoh(struct ebuf *eb);
sbin/setkey/parse.y
1376
setvarbuf(char *buf, int *off, struct sadb_ext *ebuf, int elen, caddr_t vbuf,
sbin/setkey/parse.y
1379
memset(buf + *off, 0, PFKEY_UNUNIT64(ebuf->sadb_ext_len));
sbin/setkey/parse.y
1380
memcpy(buf + *off, (caddr_t)ebuf, elen);
sbin/setkey/test-pfkey.c
522
key_setsadbextbuf(dst, off, ebuf, elen, vbuf, vlen)
sbin/setkey/test-pfkey.c
523
caddr_t dst, ebuf, vbuf;
sbin/setkey/test-pfkey.c
527
memcpy(dst + off, (caddr_t)ebuf, elen);
share/examples/ses/srcs/eltsub.c
179
static char ebuf[256], *scode;
share/examples/ses/srcs/eltsub.c
182
sprintf(ebuf, "status: %s%s%s%s (0x%02x 0x%02x 0x%02x 0x%02x)",
share/examples/ses/srcs/eltsub.c
188
return (ebuf);
usr.bin/logins/logins.c
295
char cbuf[16], ebuf[16];
usr.bin/logins/logins.c
319
strftime(ebuf, sizeof(ebuf), pwd->pw_expire ? "%F" : "0", tm);
usr.bin/logins/logins.c
320
printf(o_flag ? "%s:%s:%s" : "%24s%s %s\n", "", cbuf, ebuf);
usr.bin/mail/tests/mailx_signal_test.c
112
if (fds[1].revents == POLLIN && elen < sizeof(ebuf)) {
usr.bin/mail/tests/mailx_signal_test.c
113
rlen = read(epd[0], ebuf + elen, sizeof(ebuf) - elen - 1);
usr.bin/mail/tests/mailx_signal_test.c
144
ATF_CHECK_MATCH("Interrupt -- one more to kill letter", ebuf);
usr.bin/mail/tests/mailx_signal_test.c
151
ATF_CHECK_STREQ("", ebuf);
usr.bin/mail/tests/mailx_signal_test.c
35
char ebuf[1024] = "";
usr.bin/stdbuf/stdbuf.c
101
"_STDBUF_E", ebuf);
usr.bin/stdbuf/stdbuf.c
68
char *ibuf, *obuf, *ebuf;
usr.bin/stdbuf/stdbuf.c
71
ibuf = obuf = ebuf = NULL;
usr.bin/stdbuf/stdbuf.c
75
ebuf = optarg;
usr.bin/stdbuf/stdbuf.c
99
if (ebuf != NULL && setenv("_STDBUF_E", ebuf, 1) == -1)
usr.sbin/dconschat/dconschat.c
359
char ebuf[64];
usr.sbin/dconschat/dconschat.c
379
snprintf(ebuf, sizeof(ebuf), "wrong magic 0x%08x", dbuf.magic);
usr.sbin/dconschat/dconschat.c
380
dconschat_ready(dc, 0, ebuf);
usr.sbin/dconschat/dconschat.c
384
snprintf(ebuf, sizeof(ebuf),
usr.sbin/dconschat/dconschat.c
388
dconschat_ready(dc, 0, ebuf);
usr.sbin/dconschat/dconschat.c
440
char ebuf[64];
usr.sbin/dconschat/dconschat.c
456
snprintf(ebuf, sizeof(ebuf), "wrong magic 0x%08x", ptr[0]);
usr.sbin/dconschat/dconschat.c
457
dconschat_ready(dc, 0, ebuf);