Symbol: expect
sbin/devfsctl/devfsctl.c
332
get_group(const char *name, int expect)
sbin/devfsctl/devfsctl.c
342
if (!expect)
sbin/hammer2/lz4/hammer2_lz4.c
101
#define likely(expr) expect((expr) != 0, 1)
sbin/hammer2/lz4/hammer2_lz4.c
102
#define unlikely(expr) expect((expr) != 0, 0)
sys/vfs/hammer2/hammer2_lz4.c
101
#define likely(expr) expect((expr) != 0, 1)
sys/vfs/hammer2/hammer2_lz4.c
102
#define unlikely(expr) expect((expr) != 0, 0)
usr.bin/at/parsetime.c
288
expect(NUMBER);
usr.bin/at/parsetime.c
344
expect(NUMBER);
usr.bin/at/parsetime.c
471
expect(NUMBER);
usr.bin/at/parsetime.c
512
expect(NUMBER);
usr.bin/at/parsetime.c
515
expect(NUMBER);
usr.bin/at/parsetime.c
584
expect(PLUS);
usr.bin/at/parsetime.c
621
expect(EOF);
usr.bin/chat/chat.c
761
char *expect;
usr.bin/chat/chat.c
808
expect = expect_strtok (s, "-");
usr.bin/chat/chat.c
811
if (expect == NULL)
usr.bin/chat/chat.c
819
if (get_string (expect))
usr.bin/rpcgen/rpc_scan.c
127
peekscan(tok_kind expect, token *tokp)
usr.bin/rpcgen/rpc_scan.c
130
if (tokp->kind == expect) {
usr.bin/rpcgen/rpc_scan.c
68
scan(tok_kind expect, token *tokp)
usr.bin/rpcgen/rpc_scan.c
71
if (tokp->kind != expect)
usr.bin/rpcgen/rpc_scan.c
72
expected1(expect);
usr.sbin/makefs/hammer2/hammer2_lz4.c
101
#define likely(expr) expect((expr) != 0, 1)
usr.sbin/makefs/hammer2/hammer2_lz4.c
102
#define unlikely(expr) expect((expr) != 0, 0)
usr.sbin/ppp/bundle.c
1352
int niov, expect, f;
usr.sbin/ppp/bundle.c
1362
for (f = expect = 0; f < niov; f++)
usr.sbin/ppp/bundle.c
1363
expect += iov[f].iov_len;
usr.sbin/ppp/bundle.c
1365
return expect;
usr.sbin/ppp/bundle.c
1372
int niov, expect, f, *fd, nfd, onfd;
usr.sbin/ppp/bundle.c
1396
for (f = expect = 0; f < niov; f++) {
usr.sbin/ppp/bundle.c
1402
expect += iov[f].iov_len;
usr.sbin/ppp/bundle.c
1488
if ((got = readv(fd[1], iov + 1, niov - 1)) != expect) {
usr.sbin/ppp/bundle.c
1492
log_Printf(LogERROR, "Failed write: Got %zu, not %d\n", got, expect);
usr.sbin/ppp/bundle.c
1539
int niov, f, expect, newsid, fd[SEND_MAXFD], nfd, reply[2];
usr.sbin/ppp/bundle.c
1595
for (f = 1, expect = 0; f < niov; f++)
usr.sbin/ppp/bundle.c
1596
expect += iov[f].iov_len;
usr.sbin/ppp/bundle.c
1598
if (setsockopt(reply[0], SOL_SOCKET, SO_SNDBUF, &expect, sizeof(int)) == -1)
usr.sbin/ppp/bundle.c
1599
log_Printf(LogERROR, "setsockopt(SO_RCVBUF, %d): %s\n", expect,
usr.sbin/ppp/bundle.c
1601
if (setsockopt(reply[1], SOL_SOCKET, SO_RCVBUF, &expect, sizeof(int)) == -1)
usr.sbin/ppp/bundle.c
1602
log_Printf(LogERROR, "setsockopt(SO_RCVBUF, %d): %s\n", expect,
usr.sbin/ppp/bundle.c
1625
log_Printf(LogDEBUG, "Transmitting link (%d bytes)\n", expect);
usr.sbin/ppp/bundle.c
1626
if ((got = writev(reply[0], iov + 1, niov - 1)) != expect) {
usr.sbin/ppp/bundle.c
1632
sun->sun_path, got, expect);