Lines Matching refs:Qid
17 // A Qid represents a 9P server's unique identification for a file.
18 type Qid struct {
31 Qid Qid // unique id from server
45 Qid: Qid{
78 b = pbit8(b, d.Qid.Type)
79 b = pbit32(b, d.Qid.Vers)
80 b = pbit64(b, d.Qid.Path)
111 d.Qid.Type, b = gbit8(b)
112 d.Qid.Vers, b = gbit32(b)
113 d.Qid.Path, b = gbit64(b)