Lines Matching refs:uuid
57 struct afs_uuid *uuid;
76 uuid = (struct afs_uuid *)&entry->fs_server[n];
77 uuid->time_low = xdr->time_low;
78 uuid->time_mid = htons(ntohl(xdr->time_mid));
79 uuid->time_hi_and_version = htons(ntohl(xdr->time_hi_and_version));
80 uuid->clock_seq_hi_and_reserved = (u8)ntohl(xdr->clock_seq_hi_and_reserved);
81 uuid->clock_seq_low = (u8)ntohl(xdr->clock_seq_low);
83 uuid->node[j] = (u8)ntohl(xdr->node[j]);
126 * Dispatch a get volume entry by name or ID operation (uuid variant). If the
197 /* Extract the returned uuid, uniquifier, nentries and
269 const uuid_t *uuid)
272 const struct afs_uuid *u = (const struct afs_uuid *)uuid;
298 r->uuid.time_low = u->time_low;
299 r->uuid.time_mid = htonl(ntohs(u->time_mid));
300 r->uuid.time_hi_and_version = htonl(ntohs(u->time_hi_and_version));
301 r->uuid.clock_seq_hi_and_reserved = htonl(u->clock_seq_hi_and_reserved);
302 r->uuid.clock_seq_low = htonl(u->clock_seq_low);
304 r->uuid.node[i] = htonl(u->node[i]);
416 * OUT opr_uuid *uuid,
436 /* Extract the returned uuid, uniquifier, fsEndpoints count and
620 const uuid_t *uuid)
629 sizeof(__be32) * 2 + sizeof(*uuid),
642 memcpy(bp, uuid, sizeof(*uuid)); /* Type opr_uuid */