Home | History | Annotate | Download | only in common

Lines Matching refs:m_file

51 	m_file = fopen(filename, "rb");
52 if (!m_file)
58 fclose(m_file);
63 int numRead = (int)fread(dst, 1, numBytes, m_file);
69 long curPos = ftell(m_file);
70 fseek(m_file, 0, SEEK_END);
71 int size = (int)ftell(m_file);
72 fseek(m_file, curPos, SEEK_SET);
78 return (int)ftell(m_file);
83 fseek(m_file, (size_t)position, SEEK_SET);