Lines Matching refs:darg
154 door_arg_t darg; in handshake() local
161 if ((err = post_req(&darg, &req, sizeof (picl_reqinit_t), NULL, in handshake()
165 if (darg.rbuf != (char *)&outargs) in handshake()
166 (void) munmap(darg.rbuf, darg.rsize); in handshake()
272 door_arg_t darg; in picl_shutdown() local
282 err = post_req(&darg, &req_fini, sizeof (picl_reqfini_t), in picl_shutdown()
290 if (darg.rbuf != (char *)&outargs) in picl_shutdown()
291 (void) munmap(darg.rbuf, darg.rsize); in picl_shutdown()
302 door_arg_t darg; in picl_wait() local
310 err = trysend_req(&darg, &req_wait, sizeof (picl_reqwait_t), in picl_wait()
316 ret = (picl_service_t *)darg.rbuf; in picl_wait()
318 if (darg.rbuf != (char *)&outargs) in picl_wait()
319 (void) munmap(darg.rbuf, darg.rsize); in picl_wait()
330 door_arg_t darg; in picl_get_root() local
337 err = trysend_req(&darg, &req_root, sizeof (picl_reqroot_t), NULL, in picl_get_root()
342 ret = (picl_service_t *)darg.rbuf; in picl_get_root()
344 if (darg.rbuf != (char *)&outargs) in picl_get_root()
345 (void) munmap(darg.rbuf, darg.rsize); in picl_get_root()
356 door_arg_t darg; in picl_get_propval() local
369 err = trysend_req(&darg, &req_attrval, sizeof (picl_reqattrval_t), in picl_get_propval()
376 ret = (picl_service_t *)darg.rbuf; in picl_get_propval()
382 if (darg.rbuf != (char *)outargs) in picl_get_propval()
383 (void) munmap(darg.rbuf, darg.rsize); in picl_get_propval()
395 door_arg_t darg; in picl_get_propval_by_name() local
409 err = trysend_req(&darg, &req_attrvalbyname, in picl_get_propval_by_name()
416 ret = (picl_service_t *)darg.rbuf; in picl_get_propval_by_name()
422 if (darg.rbuf != (char *)outargs) in picl_get_propval_by_name()
423 (void) munmap(darg.rbuf, darg.rsize); in picl_get_propval_by_name()
434 door_arg_t darg; in picl_set_propval() local
450 err = trysend_req(&darg, inargs, sizeof (picl_reqsetattrval_t) + in picl_set_propval()
456 if (darg.rbuf != (char *)&ret_setattrval) in picl_set_propval()
457 (void) munmap(darg.rbuf, darg.rsize); in picl_set_propval()
469 door_arg_t darg; in picl_set_propval_by_name() local
486 err = trysend_req(&darg, inargs, in picl_set_propval_by_name()
493 if (darg.rbuf != (char *)&ret_setattrvalbyname) in picl_set_propval_by_name()
494 (void) munmap(darg.rbuf, darg.rsize); in picl_set_propval_by_name()
505 door_arg_t darg; in picl_get_propinfo() local
514 err = trysend_req(&darg, &req_attrinfo, in picl_get_propinfo()
521 ret = (picl_service_t *)darg.rbuf; in picl_get_propinfo()
526 if (darg.rbuf != (char *)&outargs) in picl_get_propinfo()
527 (void) munmap(darg.rbuf, darg.rsize); in picl_get_propinfo()
538 door_arg_t darg; in picl_get_first_prop() local
547 err = trysend_req(&darg, &req_firstattr, in picl_get_first_prop()
554 ret = (picl_service_t *)darg.rbuf; in picl_get_first_prop()
556 if (darg.rbuf != (char *)&outargs) in picl_get_first_prop()
557 (void) munmap(darg.rbuf, darg.rsize); in picl_get_first_prop()
568 door_arg_t darg; in picl_get_next_prop() local
578 err = trysend_req(&darg, &req_nextattr, in picl_get_next_prop()
585 ret = (picl_service_t *)darg.rbuf; in picl_get_next_prop()
587 if (darg.rbuf != (char *)&outargs) in picl_get_next_prop()
588 (void) munmap(darg.rbuf, darg.rsize); in picl_get_next_prop()
600 door_arg_t darg; in picl_get_prop_by_name() local
610 err = trysend_req(&darg, &req_attrbyname, in picl_get_prop_by_name()
617 ret = (picl_service_t *)darg.rbuf; in picl_get_prop_by_name()
619 if (darg.rbuf != (char *)&outargs) in picl_get_prop_by_name()
620 (void) munmap(darg.rbuf, darg.rsize); in picl_get_prop_by_name()
633 door_arg_t darg; in picl_get_next_by_row() local
642 err = trysend_req(&darg, &req_attrbyrow, in picl_get_next_by_row()
649 ret = (picl_service_t *)darg.rbuf; in picl_get_next_by_row()
651 if (darg.rbuf != (char *)&outargs) in picl_get_next_by_row()
652 (void) munmap(darg.rbuf, darg.rsize); in picl_get_next_by_row()
665 door_arg_t darg; in picl_get_next_by_col() local
674 err = trysend_req(&darg, (char *)&req_attrbycol, in picl_get_next_by_col()
681 ret = (picl_service_t *)darg.rbuf; in picl_get_next_by_col()
683 if (darg.rbuf != (char *)&outargs) in picl_get_next_by_col()
684 (void) munmap(darg.rbuf, darg.rsize); in picl_get_next_by_col()
784 door_arg_t darg; in picl_get_node_by_path() local
796 err = trysend_req(&darg, &req, sizeof (req), NULL, 0, &out, in picl_get_node_by_path()
802 ret = (picl_service_t *)darg.rbuf; in picl_get_node_by_path()
804 if (darg.rbuf != (char *)&out) in picl_get_node_by_path()
805 (void) munmap(darg.rbuf, darg.rsize); in picl_get_node_by_path()
813 door_arg_t darg; in picl_find_node() local
831 err = trysend_req(&darg, req, sizeof (picl_reqfindnode_t) + valsize, in picl_find_node()
837 ret = (picl_service_t *)darg.rbuf; in picl_find_node()
839 if (darg.rbuf != (char *)&out) in picl_find_node()
840 (void) munmap(darg.rbuf, darg.rsize); in picl_find_node()
847 door_arg_t darg; in picl_get_frutree_parent() local
856 err = trysend_req(&darg, &req, sizeof (req), NULL, 0, &out, in picl_get_frutree_parent()
862 ret = (picl_service_t *)darg.rbuf; in picl_get_frutree_parent()
864 if (darg.rbuf != (char *)&out) in picl_get_frutree_parent()
865 (void) munmap(darg.rbuf, darg.rsize); in picl_get_frutree_parent()