Lines Matching refs:activity
45 static std::string getWaiverPath(ANativeActivity* activity)
47 return tcu::Android::getIntentStringExtra(activity, "waivers");
50 static std::string getLogPath(ANativeActivity* activity)
52 std::string path = tcu::Android::getIntentStringExtra(activity, "logdir");
56 static deUint32 getFlags(ANativeActivity* activity)
59 if (tcu::Android::getIntentStringExtra(activity, "verbose") == "true")
61 else if (tcu::Android::getIntentStringExtra(activity, "summary") == "true")
66 TestThread::TestThread(NativeActivity& activity, tcu::Android::AssetArchive& archive, const std::string& waiverPath,
68 : RenderThread(activity)
69 , m_platform(activity)
112 TestActivity::TestActivity(ANativeActivity* activity, glu::ApiType runType)
113 : RenderActivity(activity)
114 , m_archive(activity->assetManager)
115 , m_cmdLine(tcu::Android::getIntentStringExtra(activity, "cmdLine"))
116 , m_testThread(*this, m_archive, getWaiverPath(activity), getLogPath(activity), runType, getFlags(activity))
124 ANativeActivity_setWindowFlags(activity,