Home | History | Annotate | Download | only in decpp

Lines Matching refs:m_handle

43 	m_handle	= _findfirst32((std::string(m_path.getPath()) + "/*").c_str(), &m_fileInfo);
44 m_hasItem = m_handle != -1;
51 if (m_handle != -1)
52 _findclose(m_handle);
68 m_hasItem = (_findnext32(m_handle, &m_fileInfo) == 0);
75 m_hasItem = (_findnext32(m_handle, &m_fileInfo) == 0);
82 , m_handle (DE_NULL)
88 m_handle = opendir(m_path.getPath());
89 DE_CHECK_RUNTIME_ERR(m_handle);
97 closedir(m_handle);
115 m_curEntry = readdir(m_handle);