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

1 2

  /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 70 void RecordDidRun(const string16& dll_path) {
71 bool system_level = !InstallUtil::IsPerUserInstall(dll_path.c_str());
75 void ClearDidRun(const string16& dll_path) {
76 bool system_level = !InstallUtil::IsPerUserInstall(dll_path.c_str());
216 virtual void OnBeforeLaunch(const string16& dll_path) {
217 RecordDidRun(dll_path);
220 virtual int OnBeforeExit(int return_code, const string16& dll_path) {
225 ClearDidRun(dll_path);
  /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;
183 const wchar_t* dll_path = argv[2]; local
195 HMODULE dll_module = ::LoadLibrary(dll_path);
simple_resource_loader.cc 206 base::FilePath dll_path = locales_path.Append(*scan + dll_suffix); local
209 base::PathExists(dll_path)) {
215 HMODULE locale_dll_handle = LoadLibraryEx(dll_path.value().c_str(), NULL,
219 *language = dll_path.BaseName().RemoveExtension().value();
  /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/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/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);
nss_decryptor_null.h 26 bool Init(const FilePath& dll_path, const FilePath& db_path) { return false; }
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/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/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);
nss_decryptor_null.h 27 bool Init(const base::FilePath& dll_path, const base::FilePath& db_path) {
nss_decryptor_system_nss.h 30 bool Init(const base::FilePath& dll_path, const base::FilePath& db_path);
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);
firefox_importer_unittest_utils_mac.cc 201 bool FFUnitTestDecryptorProxy::DecryptorInit(const base::FilePath& dll_path,
203 channel_->Send(new Msg_Decryptor_Init(dll_path, db_path));
235 void OnDecryptor_Init(base::FilePath dll_path, base::FilePath db_path) {
236 bool ret = decryptor_.Init(dll_path, db_path);
  /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/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_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/third_party/libjingle/source/talk/base/
latebindingsymboltable.h 67 bool LoadFromPath(const char *dll_path);
latebindingsymboltable.cc 100 bool LateBindingSymbolTable::LoadFromPath(const char *dll_path) {
112 handle_ = dlopen(dll_path, RTLD_NOW);
118 LOG(LS_WARNING) << "Can't load " << dll_path << ": "

Completed in 456 milliseconds

1 2