Home
last modified time | relevance | path

Searched refs:call (Results 76 – 100 of 566) sorted by relevance

12345678910>>...23

/illumos-gate/usr/src/tools/smatch/src/
H A Dsmatch_constraints_required.c217 struct expression *call, *arg; in match_alloc() local
219 call = strip_expr(expr->right); in match_alloc()
220 arg = get_argument_from_call_expr(call->args, size_arg); in match_alloc()
227 struct expression *pointer, *call, *size; in match_calloc() local
233 call = strip_expr(expr->right); in match_calloc()
235 size = get_argument_from_call_expr(call->args, start_arg); in match_calloc()
238 count = get_argument_from_call_expr(call->args, start_arg + 1); in match_calloc()
240 size = get_argument_from_call_expr(call->args, start_arg + 1); in match_calloc()
243 count = get_argument_from_call_expr(call->args, start_arg); in match_calloc()
H A Dcheck_deref.c155 static void set_param_dereferenced(struct expression *call, struct expression *arg, char *key, char… in set_param_dereferenced() argument
225 static int called_with_no_fail(struct expression *call, int param) in called_with_no_fail() argument
232 call = strip_expr(call); in called_with_no_fail()
233 if (call->type != EXPR_CALL) in called_with_no_fail()
235 arg = get_argument_from_call_expr(call->args, param); in called_with_no_fail()
H A Dcheck_struct_type.c26 struct expression *call; in match_assign() local
39 call = strip_expr(expr->right); in match_assign()
40 arg = get_argument_from_call_expr(call->args, size_arg); in match_assign()
H A Dcheck_snprintf.c31 struct expression *call; in match_snprintf() local
35 call = strip_expr(expr->right); in match_snprintf()
36 arg = get_argument_from_call_expr(call->args, 1); in match_snprintf()
H A Dsmatch_buf_comparison.c208 struct expression *pointer, *call, *arg; in match_alloc() local
211 call = strip_expr(expr->right); in match_alloc()
212 arg = get_argument_from_call_expr(call->args, size_arg); in match_alloc()
219 struct expression *pointer, *call, *arg; in match_calloc() local
225 call = strip_expr(expr->right); in match_calloc()
226 arg = get_argument_from_call_expr(call->args, start_arg); in match_calloc()
229 arg = get_argument_from_call_expr(call->args, start_arg + 1); in match_calloc()
564 static void match_call(struct expression *call) in match_call() argument
573 FOR_EACH_PTR(call->args, arg) { in match_call()
577 compare = buf_size_param_comparison(arg, call->args, &limit_type); in match_call()
[all …]
/illumos-gate/usr/src/uts/common/rpc/
H A Dclnt_clts.c662 resp = call->call_reply; in clnt_clts_kcallit_addr()
663 call->call_reply = NULL; in clnt_clts_kcallit_addr()
664 status = call->call_status; in clnt_clts_kcallit_addr()
673 call->call_notified = FALSE; in clnt_clts_kcallit_addr()
844 call_table_remove(call); in clnt_clts_kcallit_addr()
846 freemsg(call->call_reply); in clnt_clts_kcallit_addr()
847 call->call_reply = NULL; in clnt_clts_kcallit_addr()
936 call_table_remove(call); in clnt_clts_kcallit_addr()
938 freemsg(call->call_reply); in clnt_clts_kcallit_addr()
939 call->call_reply = NULL; in clnt_clts_kcallit_addr()
[all …]
/illumos-gate/usr/src/cmd/fs.d/nfs/lib/
H A Dnfs_tbind.c1305 struct t_call *call; in cots_listen_event() local
1328 call = conn->conn_call; in cots_listen_event()
1347 call->udata.len = 0; in cots_listen_event()
1348 (void) t_snddis(fd, call); in cots_listen_event()
1358 call->udata.len = 0; in cots_listen_event()
1359 (void) t_snddis(fd, call); in cots_listen_event()
1370 call->udata.len = 0; in cots_listen_event()
1371 (void) t_snddis(fd, call); in cots_listen_event()
1398 call->udata.len = 0; in cots_listen_event()
1399 (void) t_snddis(fd, call); in cots_listen_event()
[all …]
/illumos-gate/usr/src/uts/common/sys/
H A Dtiuser.h197 extern int t_accept(int fildes, int resfd, struct t_call *call);
208 extern int t_listen(int fildes, struct t_call *call);
214 extern int t_rcvconnect(int fildes, struct t_call *call);
220 extern int t_snddis(int fildes, struct t_call *call);
/illumos-gate/usr/src/lib/libc/amd64/sys/
H A Ddoor.S113 call door_depletion_cb@PLT
122 call *%rax
125 call _thrp_terminate
140 call getpid /* get current process id */
H A Dgetcontext.S51 call func; /* call syscall */ \
95 call setcontext
124 call setcontext
/illumos-gate/usr/src/common/bignum/i386/
H A Dbignum_i386_asm.S405 call big_mul_set_vec_sse2_r
416 call big_mul_set_vec_sse2_r
439 call big_mul_set_vec_sse2_r
464 call big_mul_set_vec_sse2_r
693 call big_mul_add_vec_sse2_r
704 call big_mul_add_vec_sse2_r
727 call big_mul_add_vec_sse2_r
744 call big_mul_add_vec_sse2_r
787 call big_mul_set_vec_sse2
808 call big_mul_add_vec_sse2
[all …]
/illumos-gate/usr/src/lib/libnsl/nsl/
H A Dt_alloc.c59 struct t_call *call; in _tx_alloc() member
123 if ((p.call = calloc(1, sizeof (struct t_call))) == NULL) in _tx_alloc()
126 if (_alloc_buf(&p.call->addr, in _tx_alloc()
138 if (_alloc_buf(&p.call->opt, optsize, in _tx_alloc()
145 if (_alloc_buf(&p.call->udata, (t_scalar_t)dsize, in _tx_alloc()
150 return ((char *)p.call); in _tx_alloc()
/illumos-gate/usr/src/cmd/sgs/gprof/common/
H A Dgprof.flat.blurb17 ms/call function per call, if this function is profiled,
21 ms/call function and its descendents per call, if this
/illumos-gate/usr/src/lib/libc/i386/threads/
H A Dasm_subr.S37 call _thrp_terminate
41 / All we need to do now is (carefully) call lwp_exit().
103 call *20(%ebp)
128 call __csigsetjmp
/illumos-gate/usr/src/psm/stand/bootlst/sparc/
H A Dsrt0.S77 call bzero
82 call main
85 call prom_exit_to_mon
/illumos-gate/usr/src/cmd/sgs/rtld/amd64/
H A Dboot_elf.S377 call *(%r10)
422 call audit_pltenter@PLT
457 call *(%r10)
542 call *(%r10)
559 call *SPDESTOFF(%rbp)
564 / prepare for call to audit_pltenter()
572 call audit_pltexit@PLT
583 call *(%r10)
711 call *(%r10)
720 call elf_bndr@PLT /* call elf_rtbndr(lmp, relndx, pc) */
[all …]
/illumos-gate/usr/src/uts/sun4v/ml/
H A Dmach_locore.S228 ! call krtld to link the world together
230 call kobj_start
318 call mlsetup
328 call main
335 call panic
925 call kpreempt
1032 call panic
1045 call panic
1447 nop ! skip recursive call
1450 call ptl1_recurse
[all …]
H A Dmach_subr_asm.S90 call hv_cpu_qconf
95 call hv_cpu_qconf
100 call hv_cpu_qconf
105 call hv_cpu_qconf
/illumos-gate/usr/src/lib/libc/i386/sys/
H A Dgetcontext.S54 call func; /* call syscall */ \
93 call setcontext
124 call setcontext
H A Dsyscall.S41 popl %eax / system call number
46 call 8f
78 popl %eax / system call number
H A Ddoor.S161 call door_depletion_cb@PLT
166 call *%eax
170 call _thrp_terminate
189 call getpid
/illumos-gate/usr/src/boot/sys/i386/include/
H A Dasm.h44 call 1f; \
80 call PIC_PLT(HIDENAME(mcount)); \
85 call PIC_PLT(HIDENAME(mcount)); \
/illumos-gate/usr/src/uts/sun4u/ml/
H A Dmach_locore.S219 ! call krtld to link the world together
221 call kobj_start
309 call mlsetup
319 call main
326 call panic
760 call kpreempt
859 call panic
872 call panic
907 call panic
1356 nop ! skip recursive call
[all …]
/illumos-gate/usr/src/cmd/bnu/
H A Dconn.c1304 altconn(call) in altconn() argument
1305 struct call *call; in altconn()
1314 alt[F_CLASS] = call->speed;
1328 if(call->line != NULL ) {
1329 if ( strncmp(call->line, "/dev/", 5) == 0 ) {
1330 Myline = (call->line + 5);
1332 Myline = call->line;
1337 if(call->telno != NULL) {
1338 alt[F_PHONE] = call->telno;
1344 if (call->type != NULL)
[all …]
/illumos-gate/usr/src/uts/i86xpv/sys/
H A Dmachprivregs.h99 call panic; \
134 call panic; \
529 call HYPERVISOR_fpu_taskswitch; \
535 call HYPERVISOR_fpu_taskswitch; \
542 call HYPERVISOR_fpu_taskswitch; \
547 call HYPERVISOR_fpu_taskswitch; \

12345678910>>...23