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