Lines Matching refs:ncall

45 #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,
501 rc = (*ncall_modules->module->ncall_timedsend)(ncall, flags,
510 ncall_timedsendnotify(ncall_t *ncall, int flags, int svc_id,
520 rc = (*ncall_modules->module->ncall_timedsendnotify)(ncall,
528 ncall_broadcast(ncall_t *ncall, int flags, int svc_id,
537 rc = (*ncall_modules->module->ncall_broadcast)(ncall, flags,
546 ncall_send(ncall_t *ncall, int flags, int svc_id, ...)
554 rc = (*ncall_modules->module->ncall_timedsend)(ncall, flags,
564 ncall_read_reply(ncall_t *ncall, int n, ...)
572 rc = (*ncall_modules->module->ncall_read_reply)(ncall, n, ap);
581 ncall_reset(ncall_t *ncall)
584 (*ncall_modules->module->ncall_reset)(ncall);
589 ncall_free(ncall_t *ncall)
592 (*ncall_modules->module->ncall_free)(ncall);
597 ncall_put_data(ncall_t *ncall, void *data, int len)
602 rc = (*ncall_modules->module->ncall_put_data)(ncall, data, len);
609 ncall_get_data(ncall_t *ncall, void *data, int len)
614 rc = (*ncall_modules->module->ncall_get_data)(ncall, data, len);
621 ncall_sender(ncall_t *ncall)
626 rc = (*ncall_modules->module->ncall_sender)(ncall);
633 ncall_reply(ncall_t *ncall, ...)
638 va_start(ap, ncall);
640 (*ncall_modules->module->ncall_reply)(ncall, ap);
648 ncall_pend(ncall_t *ncall)
651 (*ncall_modules->module->ncall_pend)(ncall);
656 ncall_done(ncall_t *ncall)
659 (*ncall_modules->module->ncall_done)(ncall);
694 ncall_errcode(ncall_t *ncall, int *result)
698 rc = (*ncall_modules->module->ncall_errcode)(ncall, result);