Lines Matching defs:astcCustomizedSoHandle_
2279 astcCustomizedSoHandle_ = nullptr;
2286 if (!astcCustomizedSoOpened_ || astcCustomizedSoHandle_ == nullptr)
2292 if (!FreeLibrary(astcCustomizedSoHandle_))
2297 if (dlclose(astcCustomizedSoHandle_) != 0)
2316 astcCustomizedSoHandle_ = LoadLibrary(g_astcCustomizedSo);
2317 if (astcCustomizedSoHandle_ == nullptr)
2323 reinterpret_cast<IsCustomizedBlockMode>(GetProcAddress(astcCustomizedSoHandle_,
2328 if (!FreeLibrary(astcCustomizedSoHandle_))
2335 reinterpret_cast<CustomizedMaxPartitions>(GetProcAddress(astcCustomizedSoHandle_,
2340 if (!FreeLibrary(astcCustomizedSoHandle_))
2347 reinterpret_cast<CustomizedBlockMode>(GetProcAddress(astcCustomizedSoHandle_,
2352 if (!FreeLibrary(astcCustomizedSoHandle_))
2365 astcCustomizedSoHandle_ = dlopen(g_astcCustomizedSo.c_str(), 1);
2366 if (astcCustomizedSoHandle_ == nullptr)
2372 reinterpret_cast<IsCustomizedBlockMode>(dlsym(astcCustomizedSoHandle_,
2377 dlclose(astcCustomizedSoHandle_);
2378 astcCustomizedSoHandle_ = nullptr;
2382 reinterpret_cast<CustomizedMaxPartitions>(dlsym(astcCustomizedSoHandle_,
2387 dlclose(astcCustomizedSoHandle_);
2388 astcCustomizedSoHandle_ = nullptr;
2392 reinterpret_cast<CustomizedBlockMode>(dlsym(astcCustomizedSoHandle_,
2397 dlclose(astcCustomizedSoHandle_);
2398 astcCustomizedSoHandle_ = nullptr;
2410 HINSTANCE astcCustomizedSoHandle_;
2412 void *astcCustomizedSoHandle_;