Home
last modified time | relevance | path

Searched refs:dll_path (Results 1 – 11 of 11) sorted by relevance

/external/chromium/base/
Dfile_version_info_unittest.cc59 FilePath dll_path = GetTestDataPath(); in TEST() local
60 dll_path = dll_path.Append(kDLLNames[i]); in TEST()
63 FileVersionInfo::CreateFileVersionInfo(dll_path)); in TEST()
101 FilePath dll_path = GetTestDataPath(); in TEST() local
102 dll_path = dll_path.Append(kDLLNames[i]); in TEST()
105 FileVersionInfo::CreateFileVersionInfo(dll_path)); in TEST()
114 FilePath dll_path = GetTestDataPath(); in TEST() local
115 dll_path = dll_path.AppendASCII("FileVersionInfoTest1.dll"); in TEST()
118 FileVersionInfo::CreateFileVersionInfo(dll_path)); in TEST()
/external/chromium/chrome/browser/importer/
Dfirefox_importer_unittest_utils.h41 bool DecryptorInit(const FilePath& dll_path, const FilePath& db_path);
75 bool FFUnitTestDecryptorProxy::DecryptorInit(const FilePath& dll_path, in DecryptorInit() argument
77 return decryptor_.Init(dll_path, db_path); in DecryptorInit()
Dnss_decryptor_win.cc40 bool NSSDecryptor::Init(const FilePath& dll_path, const FilePath& db_path) { in Init() argument
52 if (!set_dll_directory(dll_path.value().c_str())) in Init()
62 FilePath path = dll_path.Append(kNSS3Library); in Init()
78 path = FilePath(dll_path).Append(kSoftokn3Library); in Init()
Dfirefox_importer_unittest_utils_mac.cc187 bool FFUnitTestDecryptorProxy::DecryptorInit(const FilePath& dll_path, in DecryptorInit() argument
189 channel_->Send(new Msg_Decryptor_Init(dll_path, db_path)); in DecryptorInit()
221 void OnDecryptor_Init(FilePath dll_path, FilePath db_path) { in OnDecryptor_Init() argument
222 bool ret = decryptor_.Init(dll_path, db_path); in OnDecryptor_Init()
Dnss_decryptor_mac.mm22 bool NSSDecryptor::Init(const FilePath& dll_path, const FilePath& db_path) {
27 FilePath nss3_path = dll_path.Append("libnss3.dylib");
Dnss_decryptor_null.h26 bool Init(const FilePath& dll_path, const FilePath& db_path) { return false; } in Init() argument
Dnss_decryptor_system_nss.h29 bool Init(const FilePath& dll_path, const FilePath& db_path);
Dnss_decryptor_mac.h123 bool Init(const FilePath& dll_path, const FilePath& db_path);
Dnss_decryptor_win.h120 bool Init(const FilePath& dll_path, const FilePath& db_path);
Dnss_decryptor_system_nss.cc27 bool NSSDecryptor::Init(const FilePath& dll_path, const FilePath& db_path) { in Init() argument
/external/sonivox/jet_tools/JetCreator/
Deas.py131 def InitEASModule (dll_path=None): argument
141 if dll_path is None:
142 dll_path=EAS_DLL_PATH
146 eas_dll = cdll.LoadLibrary(dll_path)
551 def __init__ (self, handle=None, dll_path=None, log_file=None): argument
553 InitEASModule(dll_path)