Home
last modified time | relevance | path

Searched refs:pbContents (Results 1 – 1 of 1) sorted by relevance

/reactos/dll/win32/browseui/shellfind/
H A DCFindFolder.cpp338 LPBYTE pbContents = (LPBYTE)MapViewOfFile(hFileMap, FILE_MAP_READ, 0, 0, size); in SearchFile() local
340 if (!pbContents) in SearchFile()
344 IsDataUnicode(pbContents, size, &encoding, NULL); in SearchFile()
351 bFound = StrFindNIW((LPCWSTR)pbContents, pSearchData->szQueryW, size / sizeof(WCHAR)); in SearchFile()
355 … bFound = StrFindNIW((LPCWSTR)pbContents, pSearchData->szQueryU16BE, size / sizeof(WCHAR)); in SearchFile()
359 bFound = StrFindNIA((LPCSTR)pbContents, pSearchData->szQueryU8, size / sizeof(CHAR)); in SearchFile()
364 bFound = StrFindNIA((LPCSTR)pbContents, pSearchData->szQueryA, size / sizeof(CHAR)); in SearchFile()
366 … bFound = StrFindNIA((LPCSTR)pbContents, pSearchData->szQueryU8, size / sizeof(CHAR)); in SearchFile()
370 UnmapViewOfFile(pbContents); in SearchFile()