HomeSort by relevance Sort by last modified time
    Searched defs:HandleType (Results 1 - 3 of 3) sorted by null

  /external/libnfc-nxp/Linux_x86/
phOsalNfc_Common.h 59 phOsalNfc_eHandleType_t HandleType;
  /external/llvm/lib/Support/Windows/
Windows.h 65 template <class HandleType, uintptr_t InvalidHandle,
68 HandleType Handle;
72 ScopedHandle(HandleType handle) : Handle(handle) {}
75 if (Handle != HandleType(InvalidHandle))
79 HandleType take() {
80 HandleType temp = Handle;
81 Handle = HandleType(InvalidHandle);
85 operator HandleType() const { return Handle; }
87 ScopedHandle &operator=(HandleType handle) {
97 return Handle == HandleType(InvalidHandle) ? 0 : unspecified_bool_true
    [all...]
  /development/tools/emulator/opengl/host/libs/libOpenglRender/
FrameBuffer.h 28 typedef uint32_t HandleType;
29 typedef std::map<HandleType, RenderContextPtr> RenderContextMap;
30 typedef std::map<HandleType, WindowSurfacePtr> WindowSurfaceMap;
31 typedef std::map<HandleType, ColorBufferPtr> ColorBufferMap;
58 HandleType createRenderContext(int p_config, HandleType p_share, bool p_isGL2 = false);
59 HandleType createWindowSurface(int p_config, int p_width, int p_height);
60 HandleType createColorBuffer(int p_width, int p_height, GLenum p_internalFormat);
61 void DestroyRenderContext(HandleType p_context);
62 void DestroyWindowSurface(HandleType p_surface)
    [all...]

Completed in 346 milliseconds