Home
last modified time | relevance | path

Searched refs:hndl (Results 1 – 9 of 9) sorted by relevance

/hardware/google/gfxstream/host/gl/
DEmulatedEglContext.cpp35 HandleType hndl, in create() argument
37 return createImpl(display, config, sharedContext, hndl, version, nullptr); in create()
44 HandleType hndl, in createImpl() argument
84 new EmulatedEglContext(display, context, hndl, clientVersion, nullptr)); in createImpl()
89 HandleType hndl, in EmulatedEglContext() argument
94 mHndl(hndl), in EmulatedEglContext()
116 HandleType hndl = static_cast<HandleType>(stream->getBe32()); in onLoad() local
119 return createImpl(display, (EGLConfig)0, EGL_NO_CONTEXT, hndl, version, in onLoad()
DEmulatedEglContext.h54 HandleType hndl,
80 HandleType hndl,
90 HandleType hndl,
DEmulatedEglWindowSurface.cpp39 HandleType hndl) : in EmulatedEglWindowSurface() argument
42 mHndl(hndl) {} in EmulatedEglWindowSurface()
55 HandleType hndl) { in create() argument
57 new EmulatedEglWindowSurface(display, config, hndl)); in create()
236 HandleType hndl = stream->getBe32(); in onLoad() local
248 auto surface = create(display, config, width, height, hndl); in onLoad()
DBufferGl.h33 static std::unique_ptr<BufferGl> create(uint64_t sizeBytes, HandleType hndl,
50 BufferGl(uint64_t size, HandleType hndl, ContextHelper* helper);
DEmulatedEglWindowSurface.h48 HandleType hndl);
111 EmulatedEglWindowSurface(EGLDisplay display, EGLConfig config, HandleType hndl);
DColorBufferGl.cpp217 HandleType hndl, ContextHelper* helper, in create() argument
238 new ColorBufferGl(p_display, hndl, p_width, p_height, helper, textureDraw)}; in create()
253 GL_SCOPED_DEBUG_GROUP("ColorBufferGl::create(handle:%d)", hndl); in create()
327 ColorBufferGl::ColorBufferGl(EGLDisplay display, HandleType hndl, GLuint width, GLuint height, in ColorBufferGl() argument
334 mHndl(hndl) {} in ColorBufferGl()
962 HandleType hndl = static_cast<HandleType>(stream->getBe32()); in onLoad() local
974 hndl, helper, textureDraw, fastBlitSupported, features); in onLoad()
977 new ColorBufferGl(p_display, hndl, width, height, helper, textureDraw)); in onLoad()
DColorBufferGl.h231 ColorBufferGl(EGLDisplay display, HandleType hndl, GLuint width, GLuint height,
/hardware/google/gfxstream/host/gl/glestranslator/EGL/
DEglDisplay.cpp358 unsigned int hndl = SafeUIntFromPointer(surface); in getSurface() local
359 SurfacesHndlMap::const_iterator it = m_surfaces.find(hndl); in getSurface()
368 unsigned int hndl = SafeUIntFromPointer(ctx); in getContext() local
369 ContextsHndlMap::const_iterator it = m_contexts.find(hndl); in getContext()
386 unsigned int hndl = SafeUIntFromPointer(s); in removeSurface() local
387 SurfacesHndlMap::iterator it = m_surfaces.find(hndl); in removeSurface()
398 unsigned int hndl = SafeUIntFromPointer(ctx); in removeContext() local
399 ContextsHndlMap::iterator it = m_contexts.find(hndl); in removeContext()
494 unsigned int hndl = s.get()->getHndl(); in addSurface() local
495 EGLSurface ret =reinterpret_cast<EGLSurface> (hndl); in addSurface()
[all …]
/hardware/knowles/athletico/sound_trigger_hal/tests/
Doslo_sound_model_control.cpp78 static bool osloLoadSoundModel(SoundModelHandle *hndl) { in osloLoadSoundModel() argument
102 *hndl = handle; in osloLoadSoundModel()
107 ALOGI("Loaded oslo %d", *hndl); in osloLoadSoundModel()
124 static void osloUnloadSoundModel(SoundModelHandle hndl) { in osloUnloadSoundModel() argument
125 ALOGD("Unloading oslo sound model %d", hndl); in osloUnloadSoundModel()
131 Return<int32_t> hidlResult = stHal->unloadSoundModel(hndl); in osloUnloadSoundModel()