Searched refs:dll_path (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython3/PC/ |
D | getpathp.c | 513 wchar_t dll_path[MAXPATHLEN+1]; in get_dll_path() local 514 memset(dll_path, 0, sizeof(dll_path)); in get_dll_path() 519 if (!GetModuleFileNameW(PyWin_DLLhModule, dll_path, MAXPATHLEN)) { in get_dll_path() 520 dll_path[0] = 0; in get_dll_path() 524 dll_path[0] = 0; in get_dll_path() 527 config->dll_path = _PyMem_RawWcsdup(dll_path); in get_dll_path() 528 if (config->dll_path == NULL) { in get_dll_path() 670 if (config->dll_path[0]) { in get_pth_filename() 671 if (!change_ext(spbuffer, config->dll_path, L"._pth") && in get_pth_filename() 988 config->dll_path[0] ? config->dll_path : config->program_full_path, in calculate_path_impl() [all …]
|
/external/webrtc/webrtc/base/ |
D | latebindingsymboltable.cc | 83 bool LateBindingSymbolTable::LoadFromPath(const char *dll_path) { in LoadFromPath() argument 95 handle_ = dlopen(dll_path, in LoadFromPath() 117 LOG(LS_WARNING) << "Can't load " << dll_path << ": " in LoadFromPath()
|
D | latebindingsymboltable.h | 50 bool LoadFromPath(const char *dll_path);
|
/external/python/cpython2/Tools/msi/ |
D | msi.py | 135 def build_mingw_lib(dll_path, def_file, dll_file, mingw_lib): argument 144 gendef_command = '%s - %s' % (gendef, dll_path) 170 dll_path = os.path.join(srcdir, PCBUILD, "python%s%s.dll" % (major, minor)) variable 178 dll_path = os.path.join(srcdir, PCBUILD, dll_file) variable 179 msilib.set_arch_from_file(dll_path) 180 if msilib.pe_type(dll_path) != msilib.pe_type("msisupport.dll"): 190 have_mingw = build_mingw_lib(dll_path, def_file, dll_file, mingw_lib)
|
/external/sonivox/jet_tools/JetCreator/ |
D | eas.py | 131 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)
|
/external/python/cpython3/Include/internal/ |
D | pystate.h | 45 wchar_t *dll_path; member
|
/external/python/cpython3/Python/ |
D | pathconfig.c | 34 CLEAR(config->dll_path); in _PyPathConfig_Clear() 147 new_config.dll_path = _PyMem_RawWcsdup(L""); in Py_SetPath()
|