OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DATA_INJECTION
(Results
1 - 4
of
4
) sorted by null
/hardware/interfaces/sensors/1.0/
types.hal
40
DATA_INJECTION
= 1,
751
* Set this flag if the sensor supports
data_injection
mode and allows data
752
* to be injected from the SensorService. When in
data_injection
ONLY
758
DATA_INJECTION
= 0x10,
805
DATA_INJECTION
= 4,
[
all
...]
/frameworks/native/services/sensorservice/
SensorService.cpp
396
if (mCurrentOperatingMode ==
DATA_INJECTION
) {
401
} else if (args.size() == 2 && args[0] == String16("
data_injection
")) {
404
status_t err = dev.setMode(
DATA_INJECTION
);
406
mCurrentOperatingMode =
DATA_INJECTION
;
413
} else if (mCurrentOperatingMode ==
DATA_INJECTION
) {
414
// Already in
DATA_INJECTION
mode. Treat this as a no_op.
471
case
DATA_INJECTION
:
472
result.appendFormat("
DATA_INJECTION
: %s\n", mWhiteListedPackage.string());
[
all
...]
SensorService.h
147
DATA_INJECTION
= 1,
162
// RESTRICTED <--- NORMAL --->
DATA_INJECTION
171
// 2) Put SensorService in
DATA_INJECTION
mode with packageName .xts. If it is already in
172
//
data_injection
mode it is treated as a NO_OP (and packageName is NOT changed).
174
// $ adb shell dumpsys sensorservice
data_injection
.xts.
301
// This packagaName is set when SensorService is in RESTRICTED or
DATA_INJECTION
mode. Only
/hardware/interfaces/sensors/1.0/vts/functional/
VtsHalSensorsV1_0TargetTest.cpp
898
return (s.flags & SensorFlagBits::
DATA_INJECTION
) != 0;
905
ASSERT_EQ(Result::OK, S()->setOperationMode(OperationMode::
DATA_INJECTION
));
917
bool ret = (s.flags & SensorFlagBits::
DATA_INJECTION
) != 0;
928
ASSERT_EQ(Result::OK, S()->setOperationMode(OperationMode::
DATA_INJECTION
));
[
all
...]
Completed in 364 milliseconds