Home
last modified time | relevance | path

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

/external/python/cpython3/PC/
Dgetpathp.c513 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/
Dlatebindingsymboltable.cc83 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()
Dlatebindingsymboltable.h50 bool LoadFromPath(const char *dll_path);
/external/python/cpython2/Tools/msi/
Dmsi.py135 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/
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)
/external/python/cpython3/Include/internal/
Dpystate.h45 wchar_t *dll_path; member
/external/python/cpython3/Python/
Dpathconfig.c34 CLEAR(config->dll_path); in _PyPathConfig_Clear()
147 new_config.dll_path = _PyMem_RawWcsdup(L""); in Py_SetPath()