Home
last modified time | relevance | path

Searched refs:rec (Results 1 – 3 of 3) sorted by relevance

/build/make/tools/atree/
Dfiles.cpp118 FileRecord rec; in add_file() local
119 rec.listFile = listFile; in add_file()
120 rec.listLine = listLine; in add_file()
121 rec.fileOp = fileOp; in add_file()
122 rec.sourceName = sourceName; in add_file()
123 rec.outName = outName; in add_file()
124 files->push_back(rec); in add_file()
331 locate(FileRecord* rec, const vector<string>& search) in locate() argument
333 if (rec->fileOp == FILE_OP_REMOVE) { in locate()
335 rec->sourceMod = 0; in locate()
[all …]
Dfiles.h44 int locate(FileRecord* rec, const vector<string>& search);
45 void stat_out(const string& base, FileRecord* rec);
47 int list_dir(const FileRecord& rec, const vector<string>& excludes,
/build/soong/finder/fs/
Dreaddir.go87 rec := buf[:reclen]
89 ino, ok := direntIno(rec)
96 typ, ok := direntType(rec)
101 namlen, ok := direntNamlen(rec)
102 if !ok || namoff+namlen > uint64(len(rec)) {
105 name := rec[namoff : namoff+namlen]