Symbol: call
stand/lib/rpc.c
122
struct rpc_call *call;
stand/lib/rpc.c
171
send_head -= sizeof(*call);
stand/lib/rpc.c
172
call = (struct rpc_call *)send_head;
stand/lib/rpc.c
174
call->rp_xid = htonl(rpc_xid);
stand/lib/rpc.c
175
call->rp_direction = htonl(RPC_CALL);
stand/lib/rpc.c
176
call->rp_rpcvers = htonl(RPC_VER2);
stand/lib/rpc.c
177
call->rp_prog = htonl(prog);
stand/lib/rpc.c
178
call->rp_vers = htonl(vers);
stand/lib/rpc.c
179
call->rp_proc = htonl(proc);
sys/cpu/x86_64/include/asm.h
48
call 1f; \
sys/dev/misc/kbd/atkbdc.c
748
static int call = 0;
sys/dev/misc/kbd/atkbdc.c
758
if (++call > 2000) {
sys/dev/misc/kbd/atkbdc.c
759
call = 0;
sys/dev/misc/kbd/atkbdc.c
786
if (++call > 2000) {
sys/dev/misc/kbd/atkbdc.c
787
call = 0;
sys/vfs/nfs/bootp_subr.c
110
struct bootp_packet call;
sys/vfs/nfs/bootp_subr.c
1187
bzero((caddr_t) &ifctx->call, sizeof(ifctx->call));
sys/vfs/nfs/bootp_subr.c
1190
ifctx->call.op = BOOTP_REQUEST; /* BOOTREQUEST */
sys/vfs/nfs/bootp_subr.c
1191
ifctx->call.htype = 1; /* 10mb ethernet */
sys/vfs/nfs/bootp_subr.c
1192
ifctx->call.hlen = ifctx->sdl->sdl_alen;/* Hardware address length */
sys/vfs/nfs/bootp_subr.c
1193
ifctx->call.hops = 0;
sys/vfs/nfs/bootp_subr.c
1196
ifctx->call.xid = txdr_unsigned(ifctx->xid);
sys/vfs/nfs/bootp_subr.c
1197
bcopy(LLADDR(ifctx->sdl), &ifctx->call.chaddr, ifctx->sdl->sdl_alen);
sys/vfs/nfs/bootp_subr.c
1199
vendp = ifctx->call.vend;
sys/vfs/nfs/bootp_subr.c
1250
ifctx->call.secs = 0;
sys/vfs/nfs/bootp_subr.c
1251
ifctx->call.flags = htons(0x8000); /* We need an broadcast answer */
sys/vfs/nfs/bootp_subr.c
728
aio.iov_base = (caddr_t) &ifctx->call;
sys/vfs/nfs/bootp_subr.c
729
aio.iov_len = sizeof(ifctx->call);
sys/vfs/nfs/bootp_subr.c
736
auio.uio_resid = sizeof(ifctx->call);
sys/vfs/nfs/bootp_subr.c
817
ifctx->call.secs = htons(gctx->secs);
sys/vfs/nfs/bootp_subr.c
838
if (gctx->reply.xid != ifctx->call.xid)
sys/vfs/nfs/bootp_subr.c
842
if (gctx->reply.hlen != ifctx->call.hlen)
sys/vfs/nfs/bootp_subr.c
847
ifctx->call.chaddr,
sys/vfs/nfs/bootp_subr.c
848
ifctx->call.hlen) != 0)
sys/vfs/nfs/krpc_subr.c
195
struct rpc_call *call;
sys/vfs/nfs/krpc_subr.c
277
call = mtod(mhead, struct rpc_call *);
sys/vfs/nfs/krpc_subr.c
278
mhead->m_len = sizeof(*call);
sys/vfs/nfs/krpc_subr.c
279
bzero((caddr_t)call, sizeof(*call));
sys/vfs/nfs/krpc_subr.c
284
call->rp_xid = txdr_unsigned(xid);
sys/vfs/nfs/krpc_subr.c
286
call->rp_rpcvers = txdr_unsigned(2);
sys/vfs/nfs/krpc_subr.c
287
call->rp_prog = txdr_unsigned(prog);
sys/vfs/nfs/krpc_subr.c
288
call->rp_vers = txdr_unsigned(vers);
sys/vfs/nfs/krpc_subr.c
289
call->rp_proc = txdr_unsigned(func);
sys/vfs/nfs/krpc_subr.c
291
call->rpc_auth.authtype = txdr_unsigned(RPCAUTH_UNIX);
sys/vfs/nfs/krpc_subr.c
292
call->rpc_auth.authlen = txdr_unsigned(sizeof(struct auth_unix));
sys/vfs/nfs/krpc_subr.c
294
call->rpc_verf.authtype = 0;
sys/vfs/nfs/krpc_subr.c
295
call->rpc_verf.authlen = 0;
test/nvmm/demo/smallkern/asm.h
73
pushq %rbp; leaq (%rsp),%rbp; call PIC_PLT(__mcount); popq %rbp
usr.bin/telnet/commands.c
1384
(void) call(bye, "bye", "fromquit", 0);
usr.bin/telnet/commands.c
2054
(void) call(status, "status", "notmuch", 0);
usr.bin/telnet/commands.c
2417
(void) call(status, "status", "notmuch", 0);
usr.bin/telnet/commands.c
98
static int call(intrtn_t, ...);
usr.bin/unzip/unzip.c
82
#define ac(call) \
usr.bin/unzip/unzip.c
84
int acret = (call); \