Lines Matching refs:fDIR
127 SkOSFileIterData() : fDIR(nullptr) { }
128 DIR* fDIR;
142 if (self.fDIR) {
143 ::closedir(self.fDIR);
150 if (self.fDIR) {
151 ::closedir(self.fDIR);
152 self.fDIR = nullptr;
157 self.fDIR = ::opendir(path);
160 if (!self.fDIR && ios_get_path_in_bundle(path, &self.fPath)) {
161 self.fDIR = ::opendir(self.fPath.c_str());
181 if (self.fDIR) {
184 while ((entry = ::readdir(self.fDIR)) != nullptr) {