OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SensorEventConnection
(Results
1 - 4
of
4
) sorted by null
/frameworks/native/services/sensorservice/
SensorService.h
77
class
SensorEventConnection
: public BnSensorEventConnection, public LooperCallback {
79
virtual ~
SensorEventConnection
();
172
SensorEventConnection
(const sp<SensorService>& service, uid_t uid);
176
SensorEventConnection
const * const * mapFlushEventsToConnections = NULL);
191
SortedVector< wp<
SensorEventConnection
> > mConnections;
194
Vector< wp<
SensorEventConnection
> > mPendingFlushConnections;
196
SensorRecord(const sp<
SensorEventConnection
>& connection);
197
bool addConnection(const sp<
SensorEventConnection
>& connection);
198
bool removeConnection(const wp<
SensorEventConnection
>& connection);
201
void addPendingFlushConnection(const sp<
SensorEventConnection
>& connection)
[
all
...]
SensorService.cpp
192
mMapFlushEventsToConnections = new
SensorEventConnection
const * [minBufferSize];
347
sp<
SensorEventConnection
> connection(mActiveConnections[i].promote());
358
void SensorService::cleanupAutoDisabledSensorLocked(const sp<
SensorEventConnection
>& connection,
408
// result in a deadlock as ~
SensorEventConnection
() needs to acquire mLock again for
410
SortedVector< sp<
SensorEventConnection
> > activeConnections;
415
// sending events to clients (incrementing
SensorEventConnection
::mWakeLockRefCount) should
416
// not be interleaved with decrementing
SensorEventConnection
::mWakeLockRefCount and
482
//
SensorEventConnection
mapped to the corresponding flush_complete_event in
529
SortedVector< sp<
SensorEventConnection
> > activeConnections;
664
sp<
SensorEventConnection
> result(new SensorEventConnection(this, uid))
[
all
...]
/frameworks/native/include/gui/
ISensorEventConnection.h
36
DECLARE_META_INTERFACE(
SensorEventConnection
);
/frameworks/native/libs/gui/
ISensorEventConnection.cpp
88
IMPLEMENT_META_INTERFACE(
SensorEventConnection
, "android.gui.
SensorEventConnection
");
Completed in 319 milliseconds