Lines Matching defs:pDir
40 * @param pDir The directory handle.
43 typedef DECLCALLBACK(bool) FNRTDIRFILTER(PRTDIR pDir, const char *pszName);
130 DIR *pDir;
144 DECLINLINE(bool) rtDirValidHandle(PRTDIR pDir)
146 AssertMsgReturn(VALID_PTR(pDir), ("%p\n", pDir), false);
147 AssertMsgReturn(pDir->u32Magic == RTDIR_MAGIC, ("%#RX32\n", pDir->u32Magic), false);
157 * @param pDir The directory to open. The pszPath member contains the
163 int rtDirNativeOpen(PRTDIR pDir, char *pszPathBuf);