Home
last modified time | relevance | path

Searched refs:ADCInterface (Results 1 – 4 of 4) sorted by relevance

/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/allwinner/adc/
H A Dadcinterface.cpp7 ADCInterface::ADCInterface(const QString &devName, QObject *parent) : QObject(parent), in ADCInterface() function in ADCInterface
22 ADCInterface::~ADCInterface() in ~ADCInterface()
31 void ADCInterface::open(bool bOpen) in open()
41 bool ADCInterface::open() in open()
69 void ADCInterface::close() in close()
80 int ADCInterface::adcIndex() in adcIndex()
H A Dwidget.cpp15 m_adcs << new ADCInterface("/dev/input/event2") in Widget()
16 << new ADCInterface("/dev/input/event3") in Widget()
17 << new ADCInterface("/dev/input/event4") in Widget()
18 << new ADCInterface("/dev/input/event5"); in Widget()
22 ADCInterface *adc =m_adcs[i]; in Widget()
23 connect(adc, &ADCInterface::readRead, this, [=, adc, i](int v){ in Widget()
59 foreach (ADCInterface *adc, m_adcs) { in ~Widget()
H A Dadcinterface.h7 class ADCInterface : public QObject
11 explicit ADCInterface(const QString &devName, QObject *parent = nullptr);
12 ~ADCInterface();
H A Dwidget.h11 class ADCInterface; variable
29 QList<ADCInterface*> m_adcs;