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

  /external/chromium_org/base/win/
shortcut.cc 22 // Initializes |i_shell_link| and |i_persist_file| (releasing them first if they
25 // If any of the above steps fail, both |i_shell_link| and |i_persist_file| will
29 ScopedComPtr<IShellLink>* i_shell_link,
31 i_shell_link->Release();
33 if (FAILED(i_shell_link->CreateInstance(CLSID_ShellLink, NULL,
35 FAILED(i_persist_file->QueryFrom(*i_shell_link)) ||
37 i_shell_link->Release();
63 ScopedComPtr<IShellLink> i_shell_link; local
67 InitializeShortcutInterfaces(NULL, &i_shell_link, &i_persist_file);
70 InitializeShortcutInterfaces(shortcut_path.value().c_str(), &i_shell_link,
181 ScopedComPtr<IShellLink> i_shell_link; local
    [all...]
  /external/chromium_org/base/test/
test_shortcut_win.cc 58 ScopedComPtr<IShellLink> i_shell_link; local
71 EXPECT_TRUE(SUCCEEDED(hr = i_shell_link.CreateInstance(
76 EXPECT_TRUE(SUCCEEDED(hr = i_persist_file.QueryFrom(i_shell_link)));
89 i_shell_link->GetPath(read_target, MAX_PATH, NULL, SLGP_SHORTPATH)));
95 i_shell_link->GetWorkingDirectory(read_working_dir, MAX_PATH)));
102 i_shell_link->GetArguments(read_arguments, MAX_PATH)));
108 i_shell_link->GetDescription(read_description, MAX_PATH)));
114 i_shell_link->GetIconLocation(read_icon, MAX_PATH, &read_icon_index)));
121 EXPECT_TRUE(SUCCEEDED(hr = property_store.QueryFrom(i_shell_link)));
  /external/chromium/base/
file_util_win.cc 376 base::win::ScopedComPtr<IShellLink> i_shell_link; local
380 result = i_shell_link.CreateInstance(CLSID_ShellLink, NULL,
385 result = persist.QueryFrom(i_shell_link);
392 result = i_shell_link->Resolve(0, SLR_NO_UI);
394 result = i_shell_link->GetPath(temp_path, MAX_PATH,
416 base::win::ScopedComPtr<IShellLink> i_shell_link; local
420 HRESULT result = i_shell_link.CreateInstance(CLSID_ShellLink, NULL,
426 result = i_persist_file.QueryFrom(i_shell_link);
430 if (FAILED(i_shell_link->SetPath(source)))
433 if (working_dir && FAILED(i_shell_link->SetWorkingDirectory(working_dir))
469 base::win::ScopedComPtr<IShellLink> i_shell_link; local
    [all...]
  /external/chromium_org/win8/metro_driver/
winrt_utils.cc 173 base::win::ScopedComPtr<IShellLink> i_shell_link; local
180 result = i_shell_link.CreateInstance(CLSID_ShellLink, NULL,
185 result = persist.QueryFrom(i_shell_link);
191 result = i_shell_link->GetArguments(temp_arguments, MAX_PATH);

Completed in 748 milliseconds