Searched defs:MockFs (Results  1 – 4 of 4) sorted by relevance
| /build/soong/finder/fs/ | 
| D | fs.go | 177 type MockFs struct {  struct179 	viewId       string //
 180 	deviceNumber uint64
 183 	root            mockDir
 184 	Clock           *Clock
 185 	workDir         string
 186 	nextInodeNumber uint64
 189 	StatCalls      []string
 190 	ReadDirCalls   []string
 191 	aggregatesLock sync.Mutex
 [all …]
 
 | 
| D | test.go | 26 func Write(t *testing.T, path string, content string, filesystem *MockFs) {35 func Create(t *testing.T, path string, filesystem *MockFs) {
 39 func Delete(t *testing.T, path string, filesystem *MockFs) {
 46 func RemoveAll(t *testing.T, path string, filesystem *MockFs) {
 53 func Move(t *testing.T, oldPath string, newPath string, filesystem *MockFs) {
 60 func Link(t *testing.T, newPath string, oldPath string, filesystem *MockFs) {
 72 func Read(t *testing.T, path string, filesystem *MockFs) string {
 85 func ModTime(t *testing.T, path string, filesystem *MockFs) time.Time {
 93 func SetReadable(t *testing.T, path string, readable bool, filesystem *MockFs) {
 100 func SetReadErr(t *testing.T, path string, readErr error, filesystem *MockFs) {
 
 | 
| /build/soong/finder/ | 
| D | finder_test.go | 35 func newFinder(t *testing.T, filesystem *fs.MockFs, cacheParams CacheParams) *Finder {39 func newFinderWithNumThreads(t *testing.T, filesystem *fs.MockFs, cacheParams CacheParams, numThrea…
 47 func newFinderAndErr(t *testing.T, filesystem *fs.MockFs, cacheParams CacheParams, numThreads int) …
 1140 func runFsReplacementTest(t *testing.T, fs1 *fs.MockFs, fs2 *fs.MockFs) {
 
 | 
| /build/blueprint/pathtools/ | 
| D | fs.go | 41 func MockFs(files map[string][]byte) FileSystem {  func
 |