Home | History | Annotate | Download | only in solaris

Lines Matching defs:did

47 static int test_app_small_request(int did)
66 if (door_call(did, &params) != 0) {
74 static int test_app_uninitialized_request(int did)
103 if (door_call(did, &params) != 0) {
123 static int test_app_proto_icmp(int did)
185 if (door_call(did, &params) != 0) {
244 int did = open(DOOR_FILE, O_RDONLY);
245 if (did < 0) {
253 if (door_info(did, &info) != 0) {
255 close(did);
260 test_app_small_request(did);
263 test_app_uninitialized_request(did);
266 test_app_proto_icmp(did);
268 close(did);