Lines Matching refs:fid
212 def autoclunk(self, fid): argument
216 self._autoclunk.append(fid)
281 for fid in self._autoclunk:
282 self._acconn.clunk(fid, ignore_error=True)
449 fid, qid = clnt.lookup(clnt.rootfid, [b''])
452 clnt.clunk(fid)
459 fid, qid = clnt.lookup(clnt.rootfid, [b'/'])
460 tc.autoclunk(fid)
503 fid, qid = clnt.uxlookup(b'/dir', None)
504 tc.autoclunk(fid)
555 fid, _, _, _ = clnt.uxopen(b'/dir/file', os.O_CREAT | os.O_RDWR, 0o666,
557 tc.autoclunk(fid)
558 written = clnt.write(fid, 0, 'bytes\n')
562 attrs = clnt.Tgetattr(fid)
569 clnt.Tsetattr(fid, size=0, mtime=set_time_to)
570 attrs = clnt.Tgetattr(fid)
594 fid, _, _, _ = clnt.uxopen(b'file', os.O_CREAT | os.O_RDWR,
596 tc.autoclunk(fid)
597 written = clnt.write(fid, 0, 'filedata\n')