(dirPath string, fid uint32)
| 860 | } |
| 861 | |
| 862 | func vlogFilePath(dirPath string, fid uint32) string { |
| 863 | return fmt.Sprintf("%s%s%06d.vlog", dirPath, string(os.PathSeparator), fid) |
| 864 | } |
| 865 | |
| 866 | func (vlog *valueLog) fpath(fid uint32) string { |
| 867 | return vlogFilePath(vlog.dirPath, fid) |
no outgoing calls
searching dependent graphs…