Home
last modified time | relevance | path

Searched refs:call (Results 1 – 25 of 452) sorted by relevance

12345678910>>...19

/titanic_51/usr/src/cmd/bnu/
H A Ddial.c35 * terminate, and call undial(). This will release the `lock'
38 * system call, nor issue a `signal(SIGALRM, xxx)' call.
46 * int dial(call);
47 * CALL call;
96 * any `lock-file' entry, so no need to call undial().
167 dial(call) in dial() argument
168 CALL call; in dial()
183 if (call.attr != NULL) {
184 if ( call
[all...]
/titanic_51/usr/src/lib/libnsl/dial/
H A Ddial.c37 * terminate, and call undial(). This will release the `lock'
40 * system call, nor issue a `signal(SIGALRM, xxx)' call.
48 * int dial(call);
49 * CALL call;
98 * any `lock-file' entry, so no need to call undial().
158 dial(CALL call) in dial() argument
173 if (call.attr != NULL) { in dial()
174 if (call.attr->c_cflag & PARENB) { in dial()
175 Evenflag = ((call in dial()
[all...]
/titanic_51/usr/src/lib/libnsl/nsl/
H A D_conn_util.c52 * All signals for the caller are blocked during the call to simplify design.
59 const struct t_call *call, in _t_snd_conn_req() argument
80 creq->DEST_length = call->addr.len; in _t_snd_conn_req()
82 creq->OPT_length = call->opt.len; in _t_snd_conn_req()
86 if (call->addr.len) { in _t_snd_conn_req()
87 if (_t_aligned_copy(ctlbufp, call->addr.len, size, in _t_snd_conn_req()
88 call->addr.buf, &creq->DEST_offset) < 0) { in _t_snd_conn_req()
99 if (call->opt.len) { in _t_snd_conn_req()
100 if (_t_aligned_copy(ctlbufp, call->opt.len, size, in _t_snd_conn_req()
101 call in _t_snd_conn_req()
154 _t_rcv_conn_con(struct _ti_user * tiptr,struct t_call * call,struct strbuf * ctlbufp,int api_semantics) _t_rcv_conn_con() argument
[all...]
H A Dt_snddis.c47 _tx_snddis(int fd, const struct t_call *call, int api_semantics) in _tx_snddis() argument
89 if (call != NULL && call->udata.len) { in _tx_snddis()
92 (call->udata.len > in _tx_snddis()
106 * If disconnect is done on a listener, the 'call' parameter in _tx_snddis()
110 (call == NULL)) { in _tx_snddis()
126 if ((tiptr->ti_lookcnt > 0) && (call == 0)) in _tx_snddis()
145 dreq.SEQ_number = (call? call->sequence: -1); in _tx_snddis()
147 databuf.maxlen = (call in _tx_snddis()
[all...]
H A Dt_listen.c47 _tx_listen(int fd, struct t_call *call, int api_semantics) in _tx_listen() argument
134 * This is a call that may block indefinitely so we drop the in _tx_listen()
198 call->sequence = pptr->conn_ind.SEQ_number; in _tx_listen()
200 if (_T_IS_TLI(api_semantics) || call->addr.maxlen > 0) { in _tx_listen()
202 call->addr.maxlen)) { in _tx_listen()
206 (void) memcpy(call->addr.buf, ctlbuf.buf + in _tx_listen()
209 call->addr.len = pptr->conn_ind.SRC_length; in _tx_listen()
211 if (_T_IS_TLI(api_semantics) || call->opt.maxlen > 0) { in _tx_listen()
213 call->opt.maxlen)) { in _tx_listen()
217 (void) memcpy(call in _tx_listen()
[all...]
H A Dt_accept.c52 const struct t_call *call, in _tx_accept() argument
190 cres->OPT_length = call->opt.len; in _tx_accept()
192 cres->SEQ_number = call->sequence; in _tx_accept()
204 if (call->opt.len) { in _tx_accept()
205 if (_t_aligned_copy(&ctlbuf, call->opt.len, size, in _tx_accept()
206 call->opt.buf, &cres->OPT_offset) < 0) { in _tx_accept()
218 if (call->udata.len) { in _tx_accept()
221 (call->udata.len > (uint32_t)tiptr->ti_cdatasize))) { in _tx_accept()
245 (struct strbuf *)(call->udata.len? &call in _tx_accept()
[all...]
H A Dt_free.c46 struct t_call *call; in _tx_free() member
69 p.call = (struct t_call *)ptr; in _tx_free()
70 if (p.call->addr.buf != NULL) in _tx_free()
71 free(p.call->addr.buf); in _tx_free()
72 if (p.call->opt.buf != NULL) in _tx_free()
73 free(p.call->opt.buf); in _tx_free()
74 if (p.call->udata.buf != NULL) in _tx_free()
75 free(p.call->udata.buf); in _tx_free()
H A Dxti_wrappers.c58 _xti_accept(int fd, int resfd, const struct t_call *call) in _xti_accept() argument
60 return (_tx_accept(fd, resfd, call, TX_XTI_API)); in _xti_accept()
64 _xti_xns5_accept(int fd, int resfd, const struct t_call *call) in _xti_xns5_accept() argument
66 return (_tx_accept(fd, resfd, call, TX_XTI_XNS5_API)); in _xti_xns5_accept()
128 _xti_listen(int fd, struct t_call *call) in _xti_listen() argument
130 return (_tx_listen(fd, call, TX_XTI_API)); in _xti_listen()
158 _xti_rcvconnect(int fd, struct t_call *call) in _xti_rcvconnect() argument
160 return (_tx_rcvconnect(fd, call, TX_XTI_API)); in _xti_rcvconnect()
220 _xti_snddis(int fd, const struct t_call *call) in _xti_snddis() argument
222 return (_tx_snddis(fd, call, TX_XTI_AP in _xti_snddis()
[all...]
H A Dtli_wrappers.c44 t_accept(int fd, int resfd, struct t_call *call) in t_accept() argument
46 return (_tx_accept(fd, resfd, call, TX_TLI_API)); in t_accept()
107 t_listen(int fd, struct t_call *call) in t_listen() argument
109 return (_tx_listen(fd, call, TX_TLI_API)); in t_listen()
142 t_rcvconnect(int fd, struct t_call *call) in t_rcvconnect() argument
144 return (_tx_rcvconnect(fd, call, TX_TLI_API)); in t_rcvconnect()
178 t_snddis(int fd, struct t_call *call) in t_snddis() argument
180 return (_tx_snddis(fd, call, TX_TLI_API)); in t_snddis()
/titanic_51/usr/src/lib/libtsol/common/
H A Dmisc.c90 labeld_data_t call; in blinset() local
91 labeld_data_t *callp = &call; in blinset()
95 call.callop = BLINSET; in blinset()
138 labeld_data_t call; in bslvalid() local
139 labeld_data_t *callp = &call; in bslvalid()
156 call.callop = BSLVALID; in bslvalid()
191 labeld_data_t call; in bclearvalid() local
192 labeld_data_t *callp = &call; in bclearvalid()
209 call.callop = BCLEARVALID; in bclearvalid()
239 labeld_data_t call; in labelinfo() local
279 labeld_data_t call; labelvers() local
343 labeld_data_t call; bltocolor_r() local
[all...]
H A Dprivate.c238 labeld_data_t call; in bslcvtfull() local
239 labeld_data_t *callp = &call; in bslcvtfull()
245 call.callop = BSLCVT; in bslcvtfull()
274 if (callp != &call) in bslcvtfull()
280 /* save for bslcvt call */ in bslcvtfull()
290 if (callp != &call) in bslcvtfull()
305 * corresponding bslcvtfull call or the results may
329 labeld_data_t call; in bslcvt() local
330 labeld_data_t *callp = &call; in bslcvt()
338 call in bslcvt()
415 labeld_data_t call; bclearcvtfull() local
509 labeld_data_t call; bclearcvt() local
576 labeld_data_t call; labelfields() local
642 labeld_data_t call; userdefs() local
[all...]
H A Dstob.c104 labeld_data_t call; in stobsl() local
105 labeld_data_t *callp = &call; in stobsl()
146 if (callp != &call) { in stobsl()
165 if (callp != &call) { in stobsl()
180 if (callp != &call) { in stobsl()
231 labeld_data_t call; in stobclear() local
232 labeld_data_t *callp = &call; in stobclear()
264 if (callp != &call) { in stobclear()
285 if (callp != &call) { in stobclear()
302 if (callp != &call) { in stobclear()
[all...]
/titanic_51/usr/src/cmd/cmd-inet/usr.lib/inetd/
H A Dtlx.c387 struct t_call *call; in get_new_conind() local
390 if ((call = (struct t_call *)t_alloc(fd, T_CALL, T_ALL)) == NULL) { in get_new_conind()
394 if (t_listen(fd, call) < 0) { in get_new_conind()
396 (void) t_free((char *)call, T_CALL); in get_new_conind()
400 return (call); in get_new_conind()
403 /* Add 'call' to the connection indication queue 'queue'. */
405 queue_conind(uu_list_t *queue, struct t_call *call) in queue_conind() argument
414 ci->call = call; in queue_conind()
422 * Remove and return a pointer to the first call o
453 struct t_call *call; process_tlook() local
539 struct t_call *call; tlx_accept() local
[all...]
/titanic_51/usr/src/uts/intel/ia32/ml/
H A Dswtch.s104 call __dtrace_probe___sched_off__cpu
134 call tsc_read; \
174 call __dtrace_probe___sched_off__cpu; \
214 call tsc_read; \
261 je .nosavectx /* skip call when zero */
264 call savectx /* call ctx ops */
272 je .nosavepctx /* skip call when zero */
275 call savepctx /* call ct
[all...]
/titanic_51/usr/src/lib/libnls/common/
H A Dnlsenv.c131 struct t_call *call; in nlsgetcall() local
134 if (!(call = (struct t_call *) calloc(1, sizeof(struct t_call)))) in nlsgetcall()
141 call->addr.len = nlsenv(&call->addr, NLSADDR); in nlsgetcall()
142 call->opt.len = nlsenv(&call->opt, NLSOPT); in nlsgetcall()
143 call->udata.len = nlsenv(&call->udata, NLSUDATA); in nlsgetcall()
145 return (call); in nlsgetcall()
/titanic_51/usr/src/cmd/listen/
H A Dnlsaddr.c46 * Use t_free to release the call structure.
99 * nlscalloc: allocate a call structure large enough to hold the
115 struct t_call *call; local
128 if (!(call = (struct t_call *)t_alloc(fd, T_CALL, T_NONE))) {
136 if (call->addr.maxlen = size)
137 call->addr.buf = p;
142 if (call->opt.maxlen = size)
143 call->opt.buf = p;
148 if (call->udata.maxlen = size)
149 call
[all...]
H A Dlisten.c109 struct call_list *Free_call_p = &Free_call; /* call free list */
110 struct call_list *Priv_call; /* call save pending list */
180 static void clr_call(struct t_call *call);
483 /* set up free call list and pending connection lists */ in net_open()
523 * Following are some general queueing routines. The call list head contains
582 * remove a call from the head of queue
1075 struct t_call *call; in doevent() local
1086 call = current->c_cp; in doevent()
1087 if (t_listen(fd, call) < 0) { in doevent()
1089 clr_call(call); in doevent()
1133 struct t_call *call; send_dis() local
1167 struct t_call *call; trycon() local
1493 senviron(call) senviron() argument
1608 clr_call(struct t_call * call) clr_call() argument
1878 struct t_call *call; global() local
[all...]
/titanic_51/usr/src/lib/libast/common/comp/
H A Dconf.sh184 shift; call=$1
263 ?*) call=$sys ;;
265 case $call in
267 *) sys=$call ;;
273 eval CONF_call_${key}='$'call
300 …printf "%29s %35s %8s %2s %1d %5s %s$nl" "$name" "$key" "$standard" "$call" "$section" "$flags" "$…
450 *R*) case $call in
459 case $call in
474 case $call in
478 case $call in
[all …]
/titanic_51/usr/src/contrib/ast/src/lib/libast/comp/
H A Dconf.sh200 shift; call=$1
279 ?*) call=$sys ;;
281 case $call in
283 *) sys=$call ;;
289 eval CONF_call_${key}='$'call
308 eval call=\"'$'CONF_call_$key\"
316 printf "%29s %35s %8s %2s %1d %5s %s$nl" "$name" "$key" "$standard" "$call" "$section" "$flags" "$define${values:+$sp=$values}${headers:+$sp$headers$nl}${script:+$sp$ob$script$nl$cb}"
420 call=$1
433 call=$1
466 *R*) case $call i
[all...]
/titanic_51/usr/src/uts/common/ktli/
H A Dt_kfree.c71 struct t_call *call; in t_kfree() member
95 p.call = (struct t_call *)ptr; in t_kfree()
96 if (p.call->addr.buf != NULL) in t_kfree()
97 kmem_free(p.call->addr.buf, p.call->addr.maxlen); in t_kfree()
98 if (p.call->opt.buf != NULL) in t_kfree()
99 kmem_free(p.call->opt.buf, p.call->opt.maxlen); in t_kfree()
100 if (p.call->udata.buf != NULL) in t_kfree()
101 kmem_free(p.call in t_kfree()
[all...]
/titanic_51/usr/src/grub/grub-0.97/stage2/
H A Dasm.S154 DATA32 call EXT_C(real_to_prot)
194 call EXT_C(init_bios_info)
198 * This call is special... it never returns... in fact it should simply
203 call EXT_C(prot_to_real)
230 call EXT_C(prot_to_real)
243 lcall *%es:0(%bx) /* Do the UNDI call */
253 DATA32 call EXT_C(real_to_prot)
276 call 1f /* Position-independent access to */
278 pushw %bx /* save for after UNDI call */
293 lcall *%cs:(pxenv_entrypointsp-1b)(%bx) /* Do the UNDI call */
[all...]
/titanic_51/usr/src/common/crypto/aes/amd64/
H A Daes_intel.s452 call _key_expansion_256a
454 call _key_expansion_256b
456 call _key_expansion_256a
458 call _key_expansion_256b
460 call _key_expansion_256a
462 call _key_expansion_256b
464 call _key_expansion_256a
466 call _key_expansion_256b
468 call _key_expansion_256a
470 call _key_expansion_256
[all...]
/titanic_51/usr/src/lib/libast/common/misc/
H A Dastintercept.c36 astintercept(Shbltin_t* call, int set) in astintercept() argument
38 if (call->shgetenv) in astintercept()
41 intercepts.intercept_getenv = call->shgetenv; in astintercept()
45 if (call->shsetenv) in astintercept()
48 intercepts.intercept_setenviron = call->shsetenv; in astintercept()
/titanic_51/usr/src/contrib/ast/src/lib/libast/misc/
H A Dastintercept.c36 astintercept(Shbltin_t* call, int set) in astintercept() argument
38 if (call->shgetenv) in astintercept()
41 intercepts.intercept_getenv = call->shgetenv; in astintercept()
45 if (call->shsetenv) in astintercept()
48 intercepts.intercept_setenviron = call->shsetenv; in astintercept()
/titanic_51/usr/src/cmd/dtrace/test/tst/i386/pid/
H A Dtst.ret.s82 call waiting
90 call ret1
91 call ret2
92 call ret3
93 call ret4
94 call ret5
95 call ret6

12345678910>>...19