Home | History | Annotate | Download | only in WinQuake

Lines Matching refs:pMap

51     char	    *pMap;
103 sys_handles[i].pMap = mmap( 0, sys_handles[i].nLen, PROT_READ, MAP_SHARED, fileno( sys_handles[i].hFile ), 0 );
104 if (!sys_handles[i].pMap || (sys_handles[i].pMap == (char *)-1))
107 sys_handles[i].pMap = NULL;
128 sys_handles[i].pMap = NULL;
135 if (sys_handles[handle].pMap)
136 if (munmap( sys_handles[handle].pMap, sys_handles[handle].nLen ) != 0)
145 if (sys_handles[handle].pMap)
154 if (sys_handles[handle].pMap)
160 memcpy( dest, &sys_handles[handle].pMap[nPos], count );
169 if (sys_handles[handle].pMap)