Searched defs:ncall (Results 1 - 9 of 9) sorted by relevance

/illumos-gate/usr/src/lib/libbc/csu/common/
H A Dmon.h50 long ncall; member in struct:cnt
/illumos-gate/usr/src/uts/common/avs/ncall/
H A Dncall_stub.c35 #include "ncall.h"
95 ncall_stub_timedsend(ncall_t *ncall, int flags, int svc_id, argument
103 ncall_stub_timedsendnotify(ncall_t *ncall, int flags, int svc_id, argument
112 ncall_stub_broadcast(ncall_t *ncall, int flags, int svc_id, argument
120 ncall_stub_read_reply(ncall_t *ncall, int n, va_list ap) argument
127 ncall_stub_reset(ncall_t *ncall) argument
134 ncall_stub_free(ncall_t *ncall) argument
141 ncall_stub_put_data(ncall_t *ncall, void *data, int len) argument
148 ncall_stub_get_data(ncall_t *ncall, void *data, int len) argument
155 ncall_stub_sender(ncall_t *ncall) argument
162 ncall_stub_reply(ncall_t *ncall, va_list ap) argument
169 ncall_stub_pend(ncall_t *ncall) argument
176 ncall_stub_done(ncall_t *ncall) argument
213 ncall_stub_errcode(ncall_t *ncall, int *result) argument
[all...]
H A Dncall.c45 #include "ncall.h"
179 if (ddi_create_minor_node(dip, "c,ncall", S_IFCHR,
492 ncall_timedsend(ncall_t *ncall, int flags, int svc_id, argument
501 rc = (*ncall_modules->module->ncall_timedsend)(ncall, flags,
510 ncall_timedsendnotify(ncall_t *ncall, int flags, int svc_id, argument
520 rc = (*ncall_modules->module->ncall_timedsendnotify)(ncall,
528 ncall_broadcast(ncall_t *ncall, int flags, int svc_id, argument
537 rc = (*ncall_modules->module->ncall_broadcast)(ncall, flags,
546 ncall_send(ncall_t *ncall, int flags, int svc_id, ...) argument
554 rc = (*ncall_modules->module->ncall_timedsend)(ncall, flag
564 ncall_read_reply(ncall_t *ncall, int n, ...) argument
581 ncall_reset(ncall_t *ncall) argument
589 ncall_free(ncall_t *ncall) argument
597 ncall_put_data(ncall_t *ncall, void *data, int len) argument
609 ncall_get_data(ncall_t *ncall, void *data, int len) argument
621 ncall_sender(ncall_t *ncall) argument
633 ncall_reply(ncall_t *ncall, ...) argument
648 ncall_pend(ncall_t *ncall) argument
656 ncall_done(ncall_t *ncall) argument
694 ncall_errcode(ncall_t *ncall, int *result) argument
[all...]
/illumos-gate/usr/src/uts/common/avs/ns/nsctl/
H A Dnsc_ncallio.c35 #include <sys/ncall/ncall.h>
54 * ncall-io io provider - client side.
89 * of the form "<node>:<pathname>", where <node> is the decimal ncall
216 ncall_t *ncall; local
263 rc = ncall_alloc(rw->rw_snode, 0, 0, &ncall);
270 rc = ncall_put_data(ncall, rw, ncall_len);
275 rc = ncall_send(ncall, ncall_flag, ncall_proc);
280 rc = ncall_read_reply(ncall, 1, &err);
286 rc = ncall_get_data(ncall, r
487 ncall_t *ncall; local
552 nsc_rncio_partsize(ncall_t *ncall, int *ap) argument
639 nsc_rncio_io(ncall_t *ncall, int *ap, const int read) argument
711 nsc_rncio_read(ncall_t *ncall, int *ap) argument
718 nsc_rncio_write(ncall_t *ncall, int *ap) argument
[all...]
H A Dnsc_dev.c34 #include <sys/ncall/ncall.h>
1125 ncall_t *ncall; local
1199 * phoenix: ncall the new value to the other node now.
1212 rc = ncall_alloc(ncall_mirror(ncall_self()), 0, 0, &ncall);
1218 rc = ncall_put_data(ncall, rval, sizeof (*rval));
1228 if (ncall_send(ncall, 0, NSC_SETVAL) == 0)
1229 (void) ncall_read_reply(ncall, 1, &rc);
1232 ncall_free(ncall);
1246 r_nsc_setval(ncall_t *ncall, in argument
1276 r_nsc_setval_all(ncall_t *ncall, int *ap) argument
1988 ncall_t *ncall; local
[all...]
/illumos-gate/usr/src/uts/common/avs/ns/sdbc/
H A Dsd_ft.c44 #include <sys/ncall/ncall.h>
626 ncall_t *ncall; local
629 if (ncall_alloc(_SD_MIRROR_HOST, 0, _SD_NO_NET, &ncall)) {
635 r = ncall_send(ncall, 0, SD_ENABLE, _SD_SELF_HOST);
636 if (!r) (void) ncall_read_reply(ncall, 1, &r);
637 ncall_free(ncall);
656 ncall_t *ncall; local
658 if (ncall_alloc(_SD_MIRROR_HOST, 0, 0, &ncall) == 0)
659 (void) ncall_send(ncall, NCALL_ASYN
664 r_sd_ifs_cache_enable(ncall_t *ncall, int *ap) argument
672 r_sd_ifs_cache_disable(ncall_t *ncall, int *ap) argument
906 ncall_t *ncall; local
913 r_cd_discard(ncall_t *ncall, int *ap) argument
[all...]
/illumos-gate/usr/src/cmd/sgs/gprof/common/
H A Dgprof.h240 actype ncall; /* how many times called */ member in struct:nl
/illumos-gate/usr/src/cmd/awk/
H A Drun.c186 int i, ncall, ndef, freed = 0; local
203 for (ncall = 0, x = a[1]; x != NULL; x = x->nnext) /* args in call */
204 ncall++;
207 s, ncall, ndef, fp-frame));
208 if (ncall > ndef) {
210 s, ncall, ndef WARNING;
212 if (ncall + ndef > NARGS) {
214 s, ncall+ndef, NARGS FATAL;
261 if (i >= ncall) {
/illumos-gate/usr/src/cmd/truss/
H A Dramdata.h272 uint_t ncall; /* number of elements in stack */ member in struct:callstack

Completed in 102 milliseconds