OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MPLSensor
(Results
1 - 8
of
8
) sorted by null
/hardware/invensense/65xx/libsensors_iio/
sensors_mpl.cpp
34
#include "
MPLSensor
.h"
48
#define LOCAL_SENSORS (
MPLSensor
::NumSensors + 1)
50
#define LOCAL_SENSORS
MPLSensor
::NumSensors
125
MPLSensor
*
mplSensor
= new
MPLSensor
(mCompassSensor);
130
*
MPLSensor
*
mplSensor
= new
MPLSensor
(mCompassSensor, AccelLoadConfig);
134
setCallbackObject(
mplSensor
);
[
all
...]
MPLSensor.cpp
20
//see also the EXTRA_VERBOSE define in the
MPLSensor
.h header file
41
#include "
MPLSensor
.h"
172
MPLSensor
*
MPLSensor
::gMPLSensor = NULL;
177
if(
MPLSensor
::gMPLSensor) {
178
MPLSensor
::gMPLSensor->cbProcData();
182
void setCallbackObject(
MPLSensor
* gbpt)
184
MPLSensor
::gMPLSensor = gbpt;
187
MPLSensor
* getCallbackObject() {
188
return
MPLSensor
::gMPLSensor
[
all
...]
MPLSensor.h
168
/**
MPLSensor
implementation which fits into the HAL example for crespo provided
170
* WARNING: there may only be one instance of
MPLSensor
, ever.
173
class
MPLSensor
: public SensorBase
175
typedef int (
MPLSensor
::*hfunc_t)(sensors_event_t*);
198
MPLSensor
(CompassSensor *, int (*m_pt2AccelCalLoadFunc)(long*) = 0);
199
virtual ~
MPLSensor
();
224
static
MPLSensor
* gMPLSensor;
576
void setCallbackObject(
MPLSensor
*);
577
MPLSensor
*getCallbackObject();
Android.mk
56
LOCAL_SRC_FILES +=
MPLSensor
.cpp
/hardware/invensense/6515/libsensors_iio/
sensors_mpl.cpp
38
#include "
MPLSensor
.h"
150
MPLSensor
*
mplSensor
= new
MPLSensor
(mCompassSensor);
158
*
MPLSensor
*
mplSensor
= new
MPLSensor
(mCompassSensor, AccelLoadConfig);
166
mplSensor
->populateSensorList(sSensorList, sizeof(sSensorList));
168
mSensor =
mplSensor
;
177
mPollFds[dmpOrient].fd = ((
MPLSensor
*) mSensor)->getDmpOrientFd()
[
all
...]
MPLSensor.cpp
19
//see also the EXTRA_VERBOSE define in the
MPLSensor
.h header file
42
#include "
MPLSensor
.h"
85
*
MPLSensor
class implementation
92
MPLSensor
::
MPLSensor
(CompassSensor *compass, int (*m_pt2AccelCalLoadFunc)(long *))
172
"HAL:
MPLSensor
constructor : NumSensors = %d", NumSensors);
513
mHandlers[RotationVector] = &
MPLSensor
::rvHandler;
514
mHandlers[GameRotationVector] = &
MPLSensor
::grvHandler;
515
mHandlers[LinearAccel] = &
MPLSensor
::laHandler;
516
mHandlers[Gravity] = &
MPLSensor
::gravHandler
[
all
...]
MPLSensor.h
169
/**
MPLSensor
implementation which fits into the HAL example for crespo provided
171
* WARNING: there may only be one instance of
MPLSensor
, ever.
174
class
MPLSensor
: public SensorBase
176
typedef int (
MPLSensor
::*hfunc_t)(sensors_event_t*);
180
MPLSensor
(CompassSensor *, int (*m_pt2AccelCalLoadFunc)(long*) = 0);
181
virtual ~
MPLSensor
();
591
void setCallbackObject(
MPLSensor
*);
592
MPLSensor
*getCallbackObject();
Android.mk
68
LOCAL_SRC_FILES +=
MPLSensor
.cpp
Completed in 314 milliseconds