HomeSort by relevance Sort by last modified time
    Searched refs:i_shell_link (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/base/win/
shortcut.cc 23 // Initializes |i_shell_link| and |i_persist_file| (releasing them first if they
26 // If any of the above steps fail, both |i_shell_link| and |i_persist_file| will
30 ScopedComPtr<IShellLink>* i_shell_link,
32 i_shell_link->Release();
34 if (FAILED(i_shell_link->CreateInstance(CLSID_ShellLink, NULL,
36 FAILED(i_persist_file->QueryFrom(*i_shell_link)) ||
38 i_shell_link->Release();
64 ScopedComPtr<IShellLink> i_shell_link; local
68 InitializeShortcutInterfaces(NULL, &i_shell_link, &i_persist_file);
71 InitializeShortcutInterfaces(shortcut_path.value().c_str(), &i_shell_link,
185 ScopedComPtr<IShellLink> i_shell_link; local
    [all...]
  /external/chromium_org/base/test/
test_shortcut_win.cc 52 ScopedComPtr<IShellLink> i_shell_link; local
65 EXPECT_TRUE(SUCCEEDED(hr = i_shell_link.CreateInstance(
70 EXPECT_TRUE(SUCCEEDED(hr = i_persist_file.QueryFrom(i_shell_link)));
83 i_shell_link->GetPath(read_target, MAX_PATH, NULL, SLGP_SHORTPATH)));
89 i_shell_link->GetWorkingDirectory(read_working_dir, MAX_PATH)));
96 i_shell_link->GetArguments(read_arguments, MAX_PATH)));
102 i_shell_link->GetDescription(read_description, MAX_PATH)));
108 i_shell_link->GetIconLocation(read_icon, MAX_PATH, &read_icon_index)));
115 EXPECT_TRUE(SUCCEEDED(hr = property_store.QueryFrom(i_shell_link)));
  /external/chromium_org/win8/metro_driver/
winrt_utils.cc 175 base::win::ScopedComPtr<IShellLink> i_shell_link; local
182 result = i_shell_link.CreateInstance(CLSID_ShellLink, NULL,
187 result = persist.QueryFrom(i_shell_link);
193 result = i_shell_link->GetArguments(temp_arguments, MAX_PATH);

Completed in 81 milliseconds