Home
last modified time | relevance | path

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

/external/deqp/framework/platform/android/
DtcuAndroidExecService.hpp108 class ExecService class
111ExecService (JavaVM* vm, jobject context, int port, deSocketFamily family = (deSocketFamily)DEFA…
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_startServer()
82 service = new tcu::Android::ExecService(vm, obj, port); in Java_com_drawelements_deqp_execserver_ExecService_startServer()
99 tcu::Android::ExecService* service = getExecService(env, obj); in Java_com_drawelements_deqp_execserver_ExecService_stopServer()
DtcuAndroidExecService.cpp353 ExecService::ExecService (JavaVM* vm, jobject context, int port, deSocketFamily family) 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/
DServiceStarter.java29 import com.drawelements.deqp.execserver.ExecService;
43 final int port = getIntent().getIntExtra("port", ExecService.DEFAULT_PORT); in onStart()
46 Intent svc = new Intent(this, ExecService.class); in onStart()
51 Log.e(ExecService.LOG_TAG, "Failed to start ExecService", e); in onStart()
DExecService.java38 public class ExecService extends Service { class
54 ExecService getService () { in getService()
55 return ExecService.this; in getService()