Lines Matching refs:rendezvous
318 char rendezvous[128] = ""; in svc_door_create() local
340 (void) sprintf(rendezvous, RPC_DOOR_RENDEZVOUS, (int)prognum, in svc_door_create()
343 fd = open(rendezvous, O_WRONLY|O_CREAT|O_EXCL|O_TRUNC, 0644); in svc_door_create()
347 if (unlink(rendezvous) < 0) { in svc_door_create()
349 "svc_door_create: %s %s:%m", rendezvous, in svc_door_create()
354 fd = open(rendezvous, O_WRONLY | O_CREAT | O_EXCL | in svc_door_create()
360 "could not create", rendezvous); in svc_door_create()
366 rendezvous); in svc_door_create()
378 if (fattach(did, rendezvous) < 0) { in svc_door_create()
379 if (errno != EBUSY || fdetach(rendezvous) < 0 || in svc_door_create()
380 fattach(did, rendezvous) < 0) { in svc_door_create()
413 xprt->xp_tp = strdup(rendezvous); in svc_door_create()
429 (void) fdetach(rendezvous); in svc_door_create()
430 (void) unlink(rendezvous); in svc_door_create()