Searched refs:wide_filename (Results 1 – 2 of 2) sorted by relevance
149 let wide_filename: Vec<u16> = filename.as_ref().encode_wide().chain(Some(0)).collect(); in open_already_loaded() localVariable156 … let result = libloaderapi::GetModuleHandleExW(0, wide_filename.as_ptr(), &mut handle); in open_already_loaded()165 drop(wide_filename); // Drop wide_filename here to ensure it doesn’t get moved and dropped in open_already_loaded()190 let wide_filename: Vec<u16> = filename.as_ref().encode_wide().chain(Some(0)).collect(); in load_with_flags() localVariable197 libloaderapi::LoadLibraryExW(wide_filename.as_ptr(), std::ptr::null_mut(), flags); in load_with_flags()204 drop(wide_filename); // Drop wide_filename here to ensure it doesn’t get moved and dropped in load_with_flags()
43 std::wstring wide_filename(filename.begin(), filename.end()); in LLVMFuzzerTestOneInput() local44 cmd_data->AddArcName(wide_filename.c_str()); in LLVMFuzzerTestOneInput()