Lines Matching defs:clients
77 * Returns a one-word flag. '1' means that multiple clients may
79 * meaning that only two clients could access a lock page.
279 * clients (not just two) to access a lock page
328 struct segproc *clients; /* list of clients of this lock */
375 * All fields in list of SegProc (lp->clients)
913 lp->clients = NULL;
937 ASSERT(lp->clients == NULL);
966 ASSERT(lp->clients == NULL);
1004 for (sdp = lp->clients; sdp != NULL; sdp = sdp->next) {
1031 sdp->next = lp->clients;
1032 lp->clients = sdp;
1052 if (lp->clients == sdp) {
1053 lp->clients = sdp->next;
1055 SegProc *tmp = lp->clients;
1082 if ((lp->clients == NULL) && (lp->alloccount == 0)) {
1097 /* multiple clients per lock supported - see comments up top */
1590 ASSERT(lp->clients == NULL);
1616 lp->clients ? 'Y' : 'N',
1627 lp->clients ? 'Y' : 'N',
1650 "style=%d, lockptr=%p, timeout=%ld, clients=%p, owner=%p\n",
1652 (void *)lp->clients, (void *)lp->owner);
1655 for (sdp = lp->clients; sdp != NULL; sdp = sdp->next) {