Searched defs:call (Results 1 - 25 of 54) sorted by relevance

123

/illumos-gate/usr/src/lib/libast/common/misc/
H A Dastintercept.c36 astintercept(Shbltin_t* call, int set) argument
38 if (call->shgetenv)
41 intercepts.intercept_getenv = call->shgetenv;
45 if (call->shsetenv)
48 intercepts.intercept_setenviron = call->shsetenv;
/illumos-gate/usr/src/lib/libnsl/nsl/
H A Dt_rcvconnect.c52 _tx_rcvconnect(int fd, struct t_call *call, int api_semantics) argument
87 retval = _t_rcv_conn_con(tiptr, call, &ctlbuf, api_semantics);
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,
80 creq->DEST_length = call->addr.len;
82 creq->OPT_length = call->opt.len;
86 if (call->addr.len) {
87 if (_t_aligned_copy(ctlbufp, call->addr.len, size,
88 call->addr.buf, &creq->DEST_offset) < 0) {
99 if (call->opt.len) {
100 if (_t_aligned_copy(ctlbufp, call->opt.len, size,
101 call
57 _t_snd_conn_req( struct _ti_user *tiptr, const struct t_call *call, struct strbuf *ctlbufp) argument
152 _t_rcv_conn_con( struct _ti_user *tiptr, struct t_call *call, struct strbuf *ctlbufp, int api_semantics) argument
[all...]
H A Dt_accept.c52 const struct t_call *call,
190 cres->OPT_length = call->opt.len;
192 cres->SEQ_number = call->sequence;
204 if (call->opt.len) {
205 if (_t_aligned_copy(&ctlbuf, call->opt.len, size,
206 call->opt.buf, &cres->OPT_offset) < 0) {
218 if (call->udata.len) {
221 (call->udata.len > (uint32_t)tiptr->ti_cdatasize))) {
245 (struct strbuf *)(call->udata.len? &call
49 _tx_accept( int fd, int resfd, const struct t_call *call, int api_semantics ) argument
[all...]
H A Dt_free.c46 struct t_call *call; member in union:structptrs
69 p.call = (struct t_call *)ptr;
70 if (p.call->addr.buf != NULL)
71 free(p.call->addr.buf);
72 if (p.call->opt.buf != NULL)
73 free(p.call->opt.buf);
74 if (p.call->udata.buf != NULL)
75 free(p.call->udata.buf);
H A Dt_listen.c47 _tx_listen(int fd, struct t_call *call, int api_semantics) argument
134 * This is a call that may block indefinitely so we drop the
198 call->sequence = pptr->conn_ind.SEQ_number;
200 if (_T_IS_TLI(api_semantics) || call->addr.maxlen > 0) {
202 call->addr.maxlen)) {
206 (void) memcpy(call->addr.buf, ctlbuf.buf +
209 call->addr.len = pptr->conn_ind.SRC_length;
211 if (_T_IS_TLI(api_semantics) || call->opt.maxlen > 0) {
213 call->opt.maxlen)) {
217 (void) memcpy(call
[all...]
H A Dt_snddis.c47 _tx_snddis(int fd, const struct t_call *call, int api_semantics) argument
89 if (call != NULL && call->udata.len) {
92 (call->udata.len >
106 * If disconnect is done on a listener, the 'call' parameter
110 (call == NULL)) {
126 if ((tiptr->ti_lookcnt > 0) && (call == 0))
145 dreq.SEQ_number = (call? call->sequence: -1);
147 databuf.maxlen = (call
[all...]
H A Dt_alloc.c59 struct t_call *call; member in union:structptrs
123 if ((p.call = calloc(1, sizeof (struct t_call))) == NULL)
126 if (_alloc_buf(&p.call->addr,
138 if (_alloc_buf(&p.call->opt, optsize,
145 if (_alloc_buf(&p.call->udata, (t_scalar_t)dsize,
150 return ((char *)p.call);
H A Dtli_wrappers.c44 t_accept(int fd, int resfd, struct t_call *call) argument
46 return (_tx_accept(fd, resfd, call, TX_TLI_API));
107 t_listen(int fd, struct t_call *call) argument
109 return (_tx_listen(fd, call, TX_TLI_API));
142 t_rcvconnect(int fd, struct t_call *call) argument
144 return (_tx_rcvconnect(fd, call, TX_TLI_API));
178 t_snddis(int fd, struct t_call *call) argument
180 return (_tx_snddis(fd, call, TX_TLI_API));
H A Dxti_wrappers.c58 _xti_accept(int fd, int resfd, const struct t_call *call) argument
60 return (_tx_accept(fd, resfd, call, TX_XTI_API));
64 _xti_xns5_accept(int fd, int resfd, const struct t_call *call) argument
66 return (_tx_accept(fd, resfd, call, TX_XTI_XNS5_API));
128 _xti_listen(int fd, struct t_call *call) argument
130 return (_tx_listen(fd, call, TX_XTI_API));
158 _xti_rcvconnect(int fd, struct t_call *call) argument
160 return (_tx_rcvconnect(fd, call, TX_XTI_API));
220 _xti_snddis(int fd, const struct t_call *call) argument
222 return (_tx_snddis(fd, call, TX_XTI_AP
[all...]
/illumos-gate/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...]
/illumos-gate/usr/src/uts/common/ktli/
H A Dt_kfree.c71 struct t_call *call; member in union:structptrs
95 p.call = (struct t_call *)ptr;
96 if (p.call->addr.buf != NULL)
97 kmem_free(p.call->addr.buf, p.call->addr.maxlen);
98 if (p.call->opt.buf != NULL)
99 kmem_free(p.call->opt.buf, p.call->opt.maxlen);
100 if (p.call->udata.buf != NULL)
101 kmem_free(p.call
[all...]
H A Dt_kalloc.c74 struct t_call *call; member in union:structptrs
100 p.call = kmem_zalloc(sizeof (struct t_call), KM_SLEEP);
102 _alloc_buf(&p.call->addr, tiptr->tp_info.addr);
104 _alloc_buf(&p.call->opt, tiptr->tp_info.options);
108 _alloc_buf(&p.call->opt, dsize);
110 *ptr = ((char *)p.call);
/illumos-gate/usr/src/lib/libnls/common/
H A Dnlsenv.c131 struct t_call *call; local
134 if (!(call = (struct t_call *) calloc(1, sizeof(struct t_call))))
141 call->addr.len = nlsenv(&call->addr, NLSADDR);
142 call->opt.len = nlsenv(&call->opt, NLSOPT);
143 call->udata.len = nlsenv(&call->udata, NLSUDATA);
145 return (call);
/illumos-gate/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) argument
173 if (call.attr != NULL) {
174 if (call.attr->c_cflag & PARENB) {
175 Evenflag = ((call
[all...]
/illumos-gate/usr/src/lib/libtsol/common/
H A Dstob.c104 labeld_data_t call; local
105 labeld_data_t *callp = &call;
146 if (callp != &call) {
165 if (callp != &call) {
180 if (callp != &call) {
231 labeld_data_t call; local
232 labeld_data_t *callp = &call;
264 if (callp != &call) {
285 if (callp != &call) {
302 if (callp != &call) {
[all...]
H A Dbtos.c148 labeld_data_t call; local
149 labeld_data_t *callp = &call;
158 call.callop = BSLTOS;
176 if (callp != &call)
243 labeld_data_t call; local
244 labeld_data_t *callp = &call;
253 call.callop = BCLEARTOS;
270 if (callp != &call)
H A Dsetflabel.c56 * This is the library interface to the door call.
80 labeld_data_t call; local
81 labeld_data_t *callp = &call;
128 if (callp != &call) {
149 if (callp != &call) {
180 labeld_data_t call; local
181 labeld_data_t *callp = &call;
233 if (callp != &call) {
248 if (callp != &call) {
H A Dmisc.c90 labeld_data_t call; local
91 labeld_data_t *callp = &call;
95 call.callop = BLINSET;
138 labeld_data_t call; local
139 labeld_data_t *callp = &call;
156 call.callop = BSLVALID;
191 labeld_data_t call; local
192 labeld_data_t *callp = &call;
209 call.callop = BCLEARVALID;
239 labeld_data_t call; local
279 labeld_data_t call; local
343 labeld_data_t call; local
[all...]
/illumos-gate/usr/src/cmd/lp/cmd/lpsched/
H A Dports.c81 CALL call; local
91 call.attr = 0;
92 call.speed = speed;
93 call.line = 0;
94 call.telno = pp->dial_info;
96 if ((fd = dial(call)) < 0)
/illumos-gate/usr/src/common/tsol/
H A Dltos.c177 * Caller must call free() to free.
188 labeld_data_t call; local
189 labeld_data_t *callp = &call;
205 call.callop = LTOS;
217 if (callp != &call) {
261 call.callop = BLTOCOLOR;
271 if (callp != &call) {
290 call.callop = PR_TOP;
293 call.callop = PR_LABEL;
296 call
[all...]
/illumos-gate/usr/src/grub/grub-0.97/netboot/
H A Dnfs.h41 uint8_t data[300]; /* longest RPC call must fit!!!! */
50 } call; member in union:rpc_t::__anon2093
/illumos-gate/usr/src/lib/abi/apptrace/common/
H A Dabienv.c46 bugout(char const *call) argument
50 call);
/illumos-gate/usr/src/cmd/sgs/m4/common/
H A Dm4.h57 #define DEF_STKSIZE 100 /* default call stack size */
85 struct call { struct
150 extern struct call *Cp;
151 extern struct call *callst;
/illumos-gate/usr/src/lib/libsecdb/common/
H A Dgetexecattr.c222 typedef struct call { struct
226 } call; typedef in typeref:struct:call
238 call *c = ctxt;
266 call call; local
277 call.type = type;
278 call.id = id;
279 call.sflag = search_flag;
281 (void) _enum_profs(username, findexecattr, &call, &result);

Completed in 59 milliseconds

123