Home
last modified time | relevance | path

Searched refs:ExecService (Results 1 – 6 of 6) sorted by relevance

/external/deqp/framework/platform/android/
DtcuAndroidExecService.hpp108 class ExecService class
111ExecService (JavaVM* vm, jobject context, deSocketFamily family = (deSocketFamily)DEFAULT_SOCKET…
112 ~ExecService (void);
118 ExecService (const ExecService& other);
119 ExecService& operator= (const ExecService& other);
DtcuAndroidJNI.cpp51 static tcu::Android::ExecService* getExecService (JNIEnv* env, jobject obj) in getExecService()
54 return (tcu::Android::ExecService*)(deIntptr)env->GetLongField(obj, field); in getExecService()
57 static void setExecService (JNIEnv* env, jobject obj, tcu::Android::ExecService* service) in setExecService()
72 tcu::Android::ExecService* service = DE_NULL; in Java_com_drawelements_deqp_execserver_ExecService_onCreateNative()
82 service = new tcu::Android::ExecService(vm, obj); in Java_com_drawelements_deqp_execserver_ExecService_onCreateNative()
99 tcu::Android::ExecService* service = getExecService(env, obj); in Java_com_drawelements_deqp_execserver_ExecService_onDestroyNative()
DtcuAndroidExecService.cpp353 ExecService::ExecService (JavaVM* vm, jobject context, deSocketFamily family, int port) in ExecService() function in tcu::Android::ExecService
359 ExecService::~ExecService (void) in ~ExecService()
363 void ExecService::start (void) in start()
368 void ExecService::stop (void) in stop()
/external/deqp/android/package/src/com/drawelements/deqp/execserver/
DExecService.java36 public class ExecService extends Service { class
45 ExecService getService () { in getService()
46 return ExecService.this; in getService()
DServiceStarter.java40 Intent svc = new Intent(this, com.drawelements.deqp.execserver.ExecService.class); in onCreate()
DExecServerActivity.java57 Intent svc = new Intent(this, com.drawelements.deqp.execserver.ExecService.class); in onStart()