HomeSort by relevance Sort by last modified time
    Searched full:dll_path (Results 1 - 25 of 45) sorted by null

1 2

  /external/chromium/base/
file_version_info_unittest.cc 59 FilePath dll_path = GetTestDataPath(); local
60 dll_path = dll_path.Append(kDLLNames[i]);
63 FileVersionInfo::CreateFileVersionInfo(dll_path));
101 FilePath dll_path = GetTestDataPath(); local
102 dll_path = dll_path.Append(kDLLNames[i]);
105 FileVersionInfo::CreateFileVersionInfo(dll_path));
114 FilePath dll_path = GetTestDataPath(); local
115 dll_path = dll_path.AppendASCII("FileVersionInfoTest1.dll")
    [all...]
  /external/chromium_org/base/
file_version_info_unittest.cc 58 FilePath dll_path = GetTestDataPath(); local
59 dll_path = dll_path.Append(kDLLNames[i]);
62 FileVersionInfo::CreateFileVersionInfo(dll_path));
100 FilePath dll_path = GetTestDataPath(); local
101 dll_path = dll_path.Append(kDLLNames[i]);
104 FileVersionInfo::CreateFileVersionInfo(dll_path));
113 FilePath dll_path = GetTestDataPath(); local
114 dll_path = dll_path.AppendASCII("FileVersionInfoTest1.dll")
    [all...]
  /external/chromium_org/chrome_frame/
chrome_frame_reporting.cc 28 google_breakpad::CustomClientInfo* GetCustomInfo(const wchar_t* dll_path) {
32 FileVersionInfo::CreateFileVersionInfo(base::FilePath(dll_path)));
72 wchar_t dll_path[MAX_PATH * 2] = {0}; local
73 GetModuleFileName(reinterpret_cast<HMODULE>(&__ImageBase), dll_path, local
74 arraysize(dll_path));
78 true, kChromePipeName, temp_directory.value(), GetCustomInfo(dll_path));
85 if (InstallUtil::IsPerUserInstall(dll_path)) {
93 false, user_sid.c_str(), temp_directory.value(), GetCustomInfo(dll_path));
test_utils.cc 38 base::FilePath dll_path = build_path.Append(kChromeFrameDllName); local
40 if (!base::PathExists(dll_path)) {
42 dll_path = build_path.Append(kChromeFrameDllName);
45 if (!base::PathExists(dll_path)) {
47 dll_path = base::FilePath();
50 return dll_path;
182 const wchar_t* dll_path = argv[2]; local
194 HMODULE dll_module = ::LoadLibrary(dll_path);
  /external/chromium_org/cloud_print/virtual_driver/win/port_monitor/
port_monitor_dll.cc 83 base::FilePath dll_path(cloud_print::GetPortMonitorDllName());
84 monitor_info.pDLLName = const_cast<LPWSTR>(dll_path.value().c_str());
85 monitor_info.pName = const_cast<LPWSTR>(dll_path.value().c_str());
97 base::FilePath dll_path(cloud_print::GetPortMonitorDllName());
100 const_cast<LPWSTR>(dll_path.value().c_str()))) {
  /external/chromium_org/tools/win/sizeviewer/
sizeviewer.py 46 dll_path = os.path.normpath(os.path.join(out_dir, dll))
47 if os.path.exists(dll_path):
48 print 'Tallying %s...' % dll_path
49 json_path = dll_path + '.json'
51 '--input-image=' + dll_path,
52 '--input-pdb=' + dll_path + '.pdb',
  /external/chromium_org/chrome/installer/util/
self_reg_work_item.h 26 // dll_path: The path to the DLL.
32 SelfRegWorkItem(const std::wstring& dll_path, bool do_register,
35 // Examines the DLL at dll_path looking for either DllRegisterServer (if
self_reg_work_item.cc 20 SelfRegWorkItem::SelfRegWorkItem(const std::wstring& dll_path,
23 : do_register_(do_register), dll_path_(dll_path),
work_item.cc 121 SelfRegWorkItem* WorkItem::CreateSelfRegWorkItem(const std::wstring& dll_path,
124 return new SelfRegWorkItem(dll_path, do_register, user_level_registration);
  /external/chromium/chrome/browser/importer/
firefox_importer_unittest_utils.h 29 // -> Msg_Decryptor_Init(dll_path, db_path)
41 bool DecryptorInit(const FilePath& dll_path, const FilePath& db_path);
75 bool FFUnitTestDecryptorProxy::DecryptorInit(const FilePath& dll_path,
77 return decryptor_.Init(dll_path, db_path);
firefox_importer_unittest_messages_internal.h 14 FilePath /* dll_path */,
nss_decryptor_null.h 26 bool Init(const FilePath& dll_path, const FilePath& db_path) { return false; }
nss_decryptor_mac.mm 22 bool NSSDecryptor::Init(const FilePath& dll_path, const FilePath& db_path) {
27 FilePath nss3_path = dll_path.Append("libnss3.dylib");
nss_decryptor_system_nss.h 29 bool Init(const FilePath& dll_path, const FilePath& db_path);
nss_decryptor_win.cc 40 bool NSSDecryptor::Init(const FilePath& dll_path, const FilePath& db_path) {
52 if (!set_dll_directory(dll_path.value().c_str()))
62 FilePath path = dll_path.Append(kNSS3Library);
78 path = FilePath(dll_path).Append(kSoftokn3Library);
firefox_importer_unittest_utils_mac.cc 187 bool FFUnitTestDecryptorProxy::DecryptorInit(const FilePath& dll_path,
189 channel_->Send(new Msg_Decryptor_Init(dll_path, db_path));
221 void OnDecryptor_Init(FilePath dll_path, FilePath db_path) {
222 bool ret = decryptor_.Init(dll_path, db_path);
  /external/chromium_org/chrome/app/
client_util.h 47 // |dll_path| refers to the path of the Chrome dll being loaded.
48 virtual void OnBeforeLaunch(const string16& dll_path) {}
52 // |dll_path| refers to the path of the Chrome dll being loaded.
53 virtual int OnBeforeExit(int return_code, const string16& dll_path) {
client_util.cc 179 void RecordDidRun(const string16& dll_path) {
180 bool system_level = !InstallUtil::IsPerUserInstall(dll_path.c_str());
184 void ClearDidRun(const string16& dll_path) {
185 bool system_level = !InstallUtil::IsPerUserInstall(dll_path.c_str());
328 virtual void OnBeforeLaunch(const string16& dll_path) {
329 RecordDidRun(dll_path);
332 virtual int OnBeforeExit(int return_code, const string16& dll_path) {
337 ClearDidRun(dll_path);
  /external/chromium_org/chrome/utility/importer/
firefox_importer_unittest_utils.h 32 // -> Msg_Decryptor_Init(dll_path, db_path)
44 bool DecryptorInit(const base::FilePath& dll_path,
79 bool FFUnitTestDecryptorProxy::DecryptorInit(const base::FilePath& dll_path,
81 return decryptor_.Init(dll_path, db_path);
firefox_importer_unittest_messages_internal.h 14 base::FilePath /* dll_path */,
nss_decryptor_null.h 27 bool Init(const base::FilePath& dll_path, const base::FilePath& db_path) {
nss_decryptor_mac.mm 22 bool NSSDecryptor::Init(const base::FilePath& dll_path,
28 base::FilePath nss3_path = dll_path.Append("libnss3.dylib");
nss_decryptor_win.cc 40 bool NSSDecryptor::Init(const base::FilePath& dll_path,
53 if (!set_dll_directory(dll_path.value().c_str()))
63 base::FilePath path = dll_path.Append(kNSS3Library);
79 path = base::FilePath(dll_path).Append(kSoftokn3Library);
  /external/chromium_org/chrome_frame/test/reliability/
run_all_unittests.cc 35 std::wstring dll_path = cmd_line->GetSwitchValueNative(kRegisterDllFlag); local
40 dll_path, ScopedChromeFrameRegistrar::SYSTEM_LEVEL);
  /external/chromium_org/sandbox/win/sandbox_poc/
main_ui_window.cc 177 base::string16 dll_path = base::string16(current_dir) + local
179 ::SetWindowText(edit_box_dll_name, dll_path.c_str());
207 base::string16 dll_path = host->OnShowBrowseForDllDlg(dialog); local
208 if (dll_path.length() > 0) {
211 ::SetWindowText(edit_box_dll_path, dll_path.c_str());
322 wchar_t dll_path[MAX_PATH]; local
326 int dll_name_len = ::GetWindowText(edit_box_dll_name, dll_path, MAX_PATH);
340 if (GetFileAttributes(dll_path) == INVALID_FILE_ATTRIBUTES) {
358 dll_path_ = dll_path;

Completed in 275 milliseconds

1 2