Lines Matching refs:_module
20 if (_module == NULL) in Free()
22 if (!::FreeLibrary(_module)) in Free()
24 _module = NULL; in Free()
35 _module = ::LoadLibraryEx(fs2fas(path), NULL, flags); in LoadEx()
40 _module = ::LoadLibraryExW(fs2us(path), NULL, flags); in LoadEx()
42 return (_module != NULL); in LoadEx()
52 _module = ::LoadLibrary(fs2fas(path)); in Load()
57 _module = ::LoadLibraryW(fs2us(path)); in Load()
59 return (_module != NULL); in Load()
133 if (!_module) in Free()
135 const int ret = dlclose(_module); in Free()
138 _module = NULL; in Free()
163 _module = dlopen(path, options); in Load()
164 return (_module != NULL); in Load()