HomeSort by: relevance | last modified time | path
    Searched defs:call (Results 1 - 23 of 23) sorted by relevancy

  /src/games/robots/
rnd_pos.c 55 static int call = 0; local in function:rnd_pos
62 call++;
  /src/tests/usr.bin/indent/
lsym_rparen_or_rbracket.c 15 int call = function(3); variable in typeref:typename:int
  /src/tests/lib/libcurses/director/
testlang_parse.y 71 /* time delay after a function call - allows the slave time to
104 args_t *args; /* arguments for the call */
196 %token EOL CALL CHECK NOINPUT OR MULTIPLIER LPAREN RPAREN LBRACK RBRACK
212 | call
275 call : CALL result fn_name args { label
732 * when a test function call returns.
1067 * Pass a function call and arguments to the slave and wait for the
1111 errx(2, "%s:%zu: Call to input function "
  /src/usr.bin/xlint/lint1/
emit1.c 329 outchar('c'); /* function call */
338 const function_call *call = tn->u.call; local in function:outcall
340 for (size_t i = 0, n = call->args_len; i < n; i++) {
341 const tnode_t *arg = call->args[i];
379 outname(call->func->u.ops.left->u.sym->s_name);
383 outint((int)call->args_len);
384 for (size_t i = 0, n = call->args_len; i < n; i++)
385 outtype(call->args[i]->tn_type);
ckgetopt.c 55 * 0 means outside a while loop with a getopt call.
56 * 1 means directly inside a while loop with a getopt call.
63 * The options string from the getopt call. Whenever an option is
83 const function_call *call; local in function:is_getopt_condition
95 && tn->u.ops.left->u.ops.right->tn_op == CALL
96 && (call = tn->u.ops.left->u.ops.right->u.call)->func->tn_op == ADDR
97 && call->func->u.ops.left->tn_op == NAME
98 && strcmp(call->func->u.ops.left->u.sym->s_name, "getopt") == 0
99 && call->args_len ==
    [all...]
debug.c 251 case CALL:
255 const function_call *call = tn->u.call; local in function:debug_node
256 debug_node(call->func);
257 for (size_t i = 0, n = call->args_len; i < n; i++)
258 debug_node(call->args[i]);
lint1.h 313 function_call *call; /* if CALL */ member in union:tnode::__anondcf084d0130a
tree.c 618 function_call_descr(const function_call *call)
620 if ((call->func->tn_op == ADDR || call->func->tn_op == LOAD)
621 && call->func->u.ops.left->tn_op == NAME)
622 return call->func->u.ops.left->u.sym->s_name;
623 return type_name(call->func->tn_type->t_subt);
2016 case CALL:;
2017 const function_call *call = tn->u.call; local in function:use
2018 for (size_t i = 0, n = call->args_len; i < n; i++
4889 const function_call *call = tn->u.call; local in function:check_expr_call
4963 const function_call *call = tn->u.call; local in function:check_expr_misc
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/tests/
asan_noinst_test.cc 32 // Please don't call intercepted functions (including malloc() and friends)
258 CB call = cb[is_write][size_log]; local in function:TEST
262 call(p + offset);
  /src/sys/nfs/
nfs_bootparam.c 102 * call because we do not yet know our netmask.
103 * The server address returned by the WHOAMI call
166 * call because we do not yet know our netmask.
167 * The server address returned by the WHOAMI call
291 * after this call is complete. Have to use PMAP_PROC_CALL
293 * know about us (don't want to broadcast a getport call).
305 } *call; local in function:bp_whoami
321 call = mtod(m, struct whoami_call *);
322 m->m_len = sizeof(*call);
323 call->call_prog = txdr_unsigned(BOOTPARAM_PROG)
    [all...]
krpc_subr.c 93 int32_t rp_direction; /* call direction (0) */
105 int32_t rp_direction; /* call direction (1) */
130 * Call portmap to lookup a port number for a particular rpc program
140 u_int32_t prog; /* call program */
141 u_int32_t vers; /* call version */
142 u_int32_t proto; /* call protocol */
143 u_int32_t port; /* call port (unused) */
212 * Do a remote procedure call (RPC) and wait for its reply.
224 struct rpc_call *call; local in function:krpc_call
285 call = mtod(mhead, struct rpc_call *)
    [all...]
  /src/sys/sys/
kernhist.h 55 uint32_t call; /* function call number */ member in struct:kern_history_ent
212 _e_->call = _kernhist_call; \
254 pr("%s#%" PRIu32 "@%" PRIu32 ": ", e->fn, e->call, e->cpunum);
device.h 222 /* Device method call function signature. */
227 device_call_t call; member in struct:device_call_descriptor
234 .name = (_n_), .call = (_c_) \
709 * and the call binding data are automatically generated from device
710 * call interface descriptions by gendevcalls.awk.
720 #define device_call(dev, call) \
721 device_call_generic((dev), device_handle(dev), &(call)->generic)
722 #define devhandle_call(handle, call) \
723 device_call_generic(NULL, (handle), &(call)->generic)
  /src/sys/kern/
subr_device.c 129 device_call_t call; local in function:devhandle_lookup_device_call
132 * The back-end can override the handle to use for the call,
139 call = impl->lookup_device_call(handle, name,
141 if (call != NULL) {
142 return call;
368 device_call_t call; local in function:device_call_generic
371 call = devhandle_lookup_device_call(handle, gen->name, &call_handle);
372 if (call == NULL) {
375 return call(dev, call_handle, gen->args);
  /src/sys/lib/libsa/
rpc.c 85 int32_t rp_direction; /* call direction (0) */
94 int32_t rp_direction; /* call direction (1) */
112 * Make a rpc call; return length of answer
121 struct rpc_call *call; local in function:rpc_call
169 /* RPC call structure. */
170 send_head -= sizeof(*call);
171 call = (struct rpc_call *)send_head;
173 call->rp_xid = htonl(rpc_xid);
174 call->rp_direction = htonl(RPC_CALL);
175 call->rp_rpcvers = htonl(RPC_VER2)
    [all...]
  /src/sys/arch/mips/mips/
db_interface.c 983 bool call; local in function:inst_call
990 call = 1;
992 call = 1;
994 call = 0;
995 return call;
  /src/sys/fs/nfs/common/
krpc_subr.c 90 int32_t rp_direction; /* call direction (0) */
102 int32_t rp_direction; /* call direction (1) */
127 * Call portmap to lookup a port number for a particular rpc program
135 u_int32_t prog; /* call program */
136 u_int32_t vers; /* call version */
137 u_int32_t proto; /* call protocol */
138 u_int32_t port; /* call port (unused) */
183 * Do a remote procedure call (RPC) and wait for its reply.
195 struct krpc_call *call; local in function:krpc_call
278 call = mtod(mhead, struct krpc_call *)
    [all...]
bootp_subr.c 140 struct bootp_packet call; member in struct:bootpc_ifcontext
507 /* This call used for the side effect (badopt flag) */
733 aio.iov_base = (void *) &ifctx->call;
734 aio.iov_len = sizeof(ifctx->call);
741 auio.uio_resid = sizeof(ifctx->call);
808 ifctx->call.secs = htons(gctx->secs);
827 if (gctx->reply.xid != ifctx->call.xid)
831 if (gctx->reply.hlen != ifctx->call.hlen)
836 ifctx->call.chaddr,
837 ifctx->call.hlen) != 0
    [all...]
  /src/usr.bin/xlint/lint2/
chk.c 230 * Print a warning if the return value assumed for a function call
236 * call as it's done for function arguments.
241 fcall_t *call; local in function:chkvtui
255 for (call = hte->h_calls; call != NULL; call = call->f_next) {
256 tp2 = TP(call->f_type)->t_subt;
259 if (!call->f_rused) {
279 mkpos(&def->s_pos), mkpos(&call->f_pos))
343 fcall_t *calls, *call, *call1; local in function:chkfaui
1072 fcall_t *call; local in function:check_return_values
    [all...]
read.c 310 * Process a function call record (c-record).
1140 fcall_t **callp, *call; local in function:mkstatic
1159 for (call = hte->h_calls; call != NULL && !ofnd; call = call->f_next) {
1160 if (call->f_pos.p_src != sym1->s_pos.p_src)
1215 for (callp = &hte->h_calls; (call = *callp) != NULL; ) {
1216 if (call->f_pos.p_src == sym1->s_pos.p_src) {
1217 *callp = call->f_next
    [all...]
  /src/usr.bin/make/filemon/
filemon_ktrace.c 418 struct ktr_syscall *call = &F->payload.syscall; local in function:filemon_dispatch
422 if (call->ktr_code < 0 ||
423 (size_t)call->ktr_code >= __arraycount(filemon_syscalls) ||
424 filemon_syscalls[call->ktr_code] == NULL)
431 S = (*filemon_syscalls[call->ktr_code])(F, &key, call);
441 * sequentially in CALL/RET pairs, but let's be
586 const struct filemon_key *key, const struct ktr_syscall *call,
599 S->syscode = call->ktr_code;
758 const struct ktr_syscall *call)
    [all...]
  /src/usr.bin/telnet/
commands.c 167 static int call(intrtn_t, ...);
1442 (void) call(bye, "bye", "fromquit", 0);
2046 return call(status, "status", "notmuch", 0);
2268 (void) call(status, "status", "notmuch", 0);
2339 * Call routine with argc, argv set from args (terminated by 0).
2344 call(intrtn_t routine, ...)
2336 call(intrtn_t routine, ...) function in typeref:typename:int
  /src/usr.bin/make/unit-tests/
directive-include-guard.mk 606 CASES+= target-call-parenthesized
607 LINES.target-call-parenthesized= \
608 '.if (!target(target-call-parenthesized))' \
609 'target-call-parenthesized: .NOTMAIN' \
611 # expect: Parse_PushInput: target-call-parenthesized.tmp:1
612 # expect: Parse_PushInput: target-call-parenthesized.tmp:1

Completed in 70 milliseconds