OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:autoDisable
(Results
1 - 4
of
4
) sorted by null
/frameworks/native/services/sensorservice/
SensorInterface.h
57
virtual void
autoDisable
(void *ident, int handle) { }
82
virtual void
autoDisable
(void *ident, int handle);
SensorInterface.cpp
67
void HardwareSensor::
autoDisable
(void *ident, int handle) {
68
mSensorDevice.
autoDisable
(ident, handle);
SensorDevice.cpp
121
void SensorDevice::
autoDisable
(void *ident, int handle) {
/frameworks/av/media/common_time/
ICommonTimeConfig.cpp
276
virtual status_t getAutoDisable(bool *
autoDisable
) {
285
*
autoDisable
= (0 != reply.readInt32());
292
virtual status_t setAutoDisable(bool
autoDisable
) {
295
data.writeInt32(
autoDisable
? 1 : 0);
481
bool
autoDisable
;
482
status_t status = getAutoDisable(&
autoDisable
);
485
reply->writeInt32(
autoDisable
? 1 : 0);
492
bool
autoDisable
= (0 != data.readInt32());
493
status_t status = setAutoDisable(
autoDisable
);
Completed in 1062 milliseconds