Lines Matching refs:fid

93         def v9fs_attach(self, tag, id, fid, afid, uname, aname):  argument
94 …print("TATTACH (tag =", tag, ", fid =", fid, ", afid =", afid, ", uname =", uname, ", aname =", an…
99 def v9fs_stat(self, tag, id, fid): argument
100 print("TSTAT (tag =", tag, ", fid =", fid, ")")
105 def v9fs_getattr(self, tag, id, fid, request_mask): argument
106 … print("TGETATTR (tag =", tag, ", fid =", fid, ", request_mask =", hex(request_mask), ")")
111 def v9fs_walk(self, tag, id, fid, newfid, nwnames): argument
112 … print("TWALK (tag =", tag, ", fid =", fid, ", newfid =", newfid, ", nwnames =", nwnames, ")")
117 def v9fs_open(self, tag, id, fid, mode): argument
118 print("TOPEN (tag =", tag, ", fid =", fid, ", mode =", oct(mode), ")")
129 def v9fs_fsync(self, tag, id, fid, datasync): argument
130 print("TFSYNC (tag =", tag, ", fid =", fid, ", datasync =", datasync, ")")
132 def v9fs_clunk(self, tag, id, fid): argument
133 print("TCLUNK (tag =", tag, ", fid =", fid, ")")
135 def v9fs_read(self, tag, id, fid, off, max_count): argument
136 … print("TREAD (tag =", tag, ", fid =", fid, ", off =", off, ", max_count =", max_count, ")")
141 def v9fs_readdir(self, tag, id, fid, offset, max_count): argument
142 …print("TREADDIR (tag =", tag, ", fid =", fid, ", offset =", offset, ", max_count =", max_count, ")…
147 def v9fs_write(self, tag, id, fid, off, count, cnt): argument
148 …print("TWRITE (tag =", tag, ", fid =", fid, ", off =", off, ", count =", count, ", cnt =", cnt, ")…
153 def v9fs_create(self, tag, id, fid, name, perm, mode): argument
154 …print("TCREATE (tag =", tag, ", fid =", fid, ", perm =", oct(perm), ", name =", name, ", mode =", …
159 def v9fs_symlink(self, tag, id, fid, name, symname, gid): argument
160 …print("TSYMLINK (tag =", tag, ", fid =", fid, ", name =", name, ", symname =", symname, ", gid =",…
171 def v9fs_remove(self, tag, id, fid): argument
172 print("TREMOVE (tag =", tag, ", fid =", fid, ")")
174 def v9fs_wstat(self, tag, id, fid, mode, atime, mtime): argument
175 …print("TWSTAT (tag =", tag, ", fid =", fid, ", mode =", oct(mode), ", atime =", atime, "mtime =", …
177 def v9fs_mknod(self, tag, id, fid, mode, major, minor): argument
178 …print("TMKNOD (tag =", tag, ", fid =", fid, ", mode =", oct(mode), ", major =", major, ", minor ="…
180 def v9fs_lock(self, tag, id, fid, type, start, length): argument
181 …print("TLOCK (tag =", tag, ", fid =", fid, "type =", type, ", start =", start, ", length =", lengt…
186 def v9fs_getlock(self, tag, id, fid, type, start, length): argument
187 …print("TGETLOCK (tag =", tag, ", fid =", fid, "type =", type, ", start =", start, ", length =", le…
192 def v9fs_mkdir(self, tag, id, fid, name, mode, gid): argument
193 …print("TMKDIR (tag =", tag, ", fid =", fid, ", name =", name, ", mode =", mode, ", gid =", gid, ")…
198 def v9fs_xattrwalk(self, tag, id, fid, newfid, name): argument
199 … print("TXATTRWALK (tag =", tag, ", fid =", fid, ", newfid =", newfid, ", xattr name =", name, ")")
204 def v9fs_xattrcreate(self, tag, id, fid, name, size, flags): argument
205 …print("TXATTRCREATE (tag =", tag, ", fid =", fid, ", name =", name, ", xattrsize =", size, ", flag…
207 def v9fs_readlink(self, tag, id, fid): argument
208 print("TREADLINK (tag =", tag, ", fid =", fid, ")")