Home
last modified time | relevance | path

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

/frameworks/native/libs/graphicsenv/
DIGpuService.cpp64 void setUpdatableDriverPath(const std::string& driverPath) override { in setUpdatableDriverPath() argument
67 data.writeUtf8AsUtf16(driverPath); in setUpdatableDriverPath()
78 std::string driverPath; in getUpdatableDriverPath() local
80 error = reply.readUtf8FromUtf16(&driverPath); in getUpdatableDriverPath()
82 return driverPath; in getUpdatableDriverPath()
153 std::string driverPath; in onTransact() local
154 if ((status = data.readUtf8FromUtf16(&driverPath)) != OK) return status; in onTransact()
156 setUpdatableDriverPath(driverPath); in onTransact()
162 std::string driverPath = getUpdatableDriverPath(); in onTransact() local
163 return reply->writeUtf8AsUtf16(driverPath); in onTransact()
/frameworks/base/services/core/jni/
Dcom_android_server_gpu_GpuService.cpp45 ScopedUtfChars driverPath(env, jDriverPath); in setUpdatableDriverPath_native() local
46 gpuService->setUpdatableDriverPath(driverPath.c_str()); in setUpdatableDriverPath_native()
/frameworks/native/services/gpuservice/
DGpuService.cpp77 void GpuService::setUpdatableDriverPath(const std::string& driverPath) { in setUpdatableDriverPath() argument
89 mDeveloperDriverPath = driverPath; in setUpdatableDriverPath()
DGpuService.h55 void setUpdatableDriverPath(const std::string& driverPath) override;
/frameworks/native/libs/graphicsenv/include/graphicsenv/
DIGpuService.h47 virtual void setUpdatableDriverPath(const std::string& driverPath) = 0;
/frameworks/base/services/core/java/com/android/server/gpu/
DGpuService.java345 private static native void nSetUpdatableDriverPath(String driverPath); in nSetUpdatableDriverPath() argument