Home | History | Annotate | Download | only in include

Lines Matching defs:pEntry

205         struct dirent* pEntry;
207 while (NULL != pDir && NULL != (pEntry = readdir(pDir))) {
208 if (!isPlugIn(pEntry)) {
214 plugInPath += pEntry->d_name;
229 bool isPlugIn(const struct dirent* pEntry) const {
230 String8 sName(pEntry->d_name);
239 bool isDotOrDDot(const struct dirent* pEntry) const {
240 String8 sName(pEntry->d_name);
247 bool isDirectory(const struct dirent* pEntry) const {
248 return DT_DIR == pEntry->d_type;
254 bool isRegularFile(const struct dirent* pEntry) const {
255 return DT_REG == pEntry->d_type;
261 bool isLink(const struct dirent* pEntry) const {
262 return DT_LNK == pEntry->d_type;