Home
last modified time | relevance | path

Searched refs:m_dev (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/lldb/source/Plugins/Platform/MacOSX/objcxx/
DPlatformiOSSimulatorCoreSimulatorSupport.mm70 : m_dev(nil), m_model_identifier() {} function
73 : m_dev(d), m_model_identifier() {} function
75 CoreSimulatorSupport::DeviceType::operator bool() { return m_dev != nil; }
78 return ConstString([[m_dev identifier] UTF8String]);
82 return ConstString([[m_dev productFamily] UTF8String]);
87 return ProductFamilyID([m_dev productFamilyID]);
91 : m_dev(nil), m_os_version() {} function
94 : m_dev(d), m_os_version() {} function
96 CoreSimulatorSupport::DeviceRuntime::operator bool() { return m_dev != nil; }
99 return [m_dev available];
[all …]
DPlatformiOSSimulatorCoreSimulatorSupport.h96 id m_dev;
132 id m_dev;
172 id m_dev;
214 DeviceSet(id arr) : m_dev(arr) {} in DeviceSet()
216 id m_dev; variable
/external/libkmsxx/kmscube/
Dcube-gbm.cpp30 m_dev = gbm_create_device(card.fd()); in GbmDevice()
31 FAIL_IF(!m_dev, "failed to create gbm device"); in GbmDevice()
36 gbm_device_destroy(m_dev); in ~GbmDevice()
42 struct gbm_device* handle() const { return m_dev; } in handle()
45 struct gbm_device* m_dev; member in GbmDevice