Searched refs:door_fd (Results 1 - 8 of 8) sorted by relevance

/osnet-11/usr/src/lib/librcm/
H A Dlibrcm_event.h43 int revoke_event_service(int door_fd);
/osnet-11/usr/src/lib/libsmedia/library/common/
H A Dl_misc.c86 int door_fd; local
105 door_fd = open(smedia_service, O_RDONLY, 0644);
106 if (door_fd < 0) {
121 ret_val = door_call(door_fd, &door_args);
122 (void) close(door_fd);
160 door_fd = open(smedia_service, O_RDONLY, 0644);
161 if (door_fd < 0) {
175 ret_val = door_call(door_fd, &door_args);
176 (void) close(door_fd);
337 int door_fd, door_serve local
[all...]
/osnet-11/usr/src/lib/liblldp/common/
H A Dliblldp.c64 int door_fd, err; local
80 door_fd = open(LLDPD_DOOR, O_RDONLY | O_NOFOLLOW | O_NONBLOCK);
81 if (door_fd == -1)
84 if (door_call(door_fd, &darg) == -1) {
86 (void) close(door_fd);
122 (void) close(door_fd);
/osnet-11/usr/src/lib/libdladm/common/
H A Dlibdladm_impl.h52 int door_fd; /* file descriptor to DLMGMT_DOOR */ member in struct:dladm_handle
H A Dlibdladm.c139 (*handle)->door_fd = -1;
149 if (handle->door_fd != -1)
150 (void) close(handle->door_fd);
165 dladm_door_fd(dladm_handle_t handle, int *door_fd) argument
169 if (handle->door_fd == -1) {
172 handle->door_fd = fd;
174 *door_fd = handle->door_fd;
H A Dlibdlmgmt.c61 int door_fd; local
74 if ((status = dladm_door_fd(handle, &door_fd)) != DLADM_STATUS_OK)
76 if (door_call(door_fd, &darg) == -1) {
79 * since last door_fd open so try re-opening door file.
82 (void) close(handle->door_fd);
83 handle->door_fd = -1;
/osnet-11/usr/src/lib/libvscan/common/
H A Dlibvscan.c1346 int door_fd, rc = VS_ERR_NONE; local
1359 if ((door_fd = open(VS_STATS_DOOR_NAME, O_RDONLY)) < 0) {
1375 rc = vs_door_call(door_fd, &arg);
1382 (void) close(door_fd);
1396 int door_fd, rc; local
1407 if ((door_fd = open(VS_STATS_DOOR_NAME, O_RDONLY)) < 0) {
1422 rc = vs_door_call(door_fd, &arg);
1424 (void) close(door_fd);
/osnet-11/usr/src/lib/libhotplug/common/
H A Dlibhotplug.c1703 int door_fd; local
1710 if ((door_fd = open(HOTPLUGD_DOOR, O_RDONLY)) < 0) {
1732 if (door_call(door_fd, &door_arg) != 0) {
1736 (void) close(door_fd);
1788 (void) door_call(door_fd, &door_arg);
1796 (void) close(door_fd);

Completed in 59 milliseconds