Home
last modified time | relevance | path

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

/external/chromium_org/sandbox/win/src/
Dwin_utils.cc161 DWORD vol_length = ::QueryDosDeviceW(drive, vol_name, MAX_PATH); in SameObject() local
162 if (vol_length < 2 || vol_length == MAX_PATH) in SameObject()
166 vol_length = static_cast<DWORD>(wcslen(vol_name)); in SameObject()
169 if (vol_length + path.size() - (colon_pos + 1) != actual_path.size()) in SameObject()
173 if (0 != _wcsnicmp(actual_path.c_str(), vol_name, vol_length)) in SameObject()
177 if (0 != _wcsicmp(&actual_path[vol_length], &path[colon_pos + 1])) in SameObject()