Home
last modified time | relevance | path

Searched refs:ISensorTestNode (Results 1 – 14 of 14) sorted by relevance

/cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensoroperations/
DSensorOperation.java21 import android.hardware.cts.helpers.reporting.ISensorTestNode;
65 public abstract void execute(ISensorTestNode parent) throws InterruptedException; in execute()
92 protected ISensorTestNode asTestNode(ISensorTestNode parent) { in asTestNode()
96 private class SensorTestNode implements ISensorTestNode {
97 private final ISensorTestNode mParent;
100 public SensorTestNode(ISensorTestNode parent, SensorOperation operation) { in SensorTestNode()
DRepeatingSensorOperation.java21 import android.hardware.cts.helpers.reporting.ISensorTestNode;
52 public void execute(ISensorTestNode parent) throws InterruptedException { in execute()
53 ISensorTestNode currentNode = asTestNode(parent); in execute()
76 private class TestNode implements ISensorTestNode {
77 private final ISensorTestNode mTestNode;
80 public TestNode(ISensorTestNode parent, int iteration) { in TestNode()
DSequentialSensorOperation.java20 import android.hardware.cts.helpers.reporting.ISensorTestNode;
51 public void execute(ISensorTestNode parent) throws InterruptedException { in execute()
52 ISensorTestNode currentNode = asTestNode(parent); in execute()
DDelaySensorOperation.java20 import android.hardware.cts.helpers.reporting.ISensorTestNode;
51 public void execute(ISensorTestNode parent) throws InterruptedException { in execute()
DWakeLockOperation.java20 import android.hardware.cts.helpers.reporting.ISensorTestNode;
63 public void execute(ISensorTestNode parent) throws InterruptedException { in execute()
DFakeSensorOperation.java20 import android.hardware.cts.helpers.reporting.ISensorTestNode;
60 public void execute(ISensorTestNode parent) { in execute()
DAlarmOperation.java25 import android.hardware.cts.helpers.reporting.ISensorTestNode;
79 public void execute(ISensorTestNode parent) throws InterruptedException { in execute()
DParallelSensorOperation.java22 import android.hardware.cts.helpers.reporting.ISensorTestNode;
84 public void execute(final ISensorTestNode parent) throws InterruptedException { in execute()
95 final ISensorTestNode currentNode = asTestNode(parent); in execute()
DSensorOperationTest.java23 import android.hardware.cts.helpers.reporting.ISensorTestNode;
36 private final ISensorTestNode mTestNode = new ISensorTestNode() {
240 public void execute(ISensorTestNode parent) {
DTestSensorOperation.java33 import android.hardware.cts.helpers.reporting.ISensorTestNode;
122 public void execute(ISensorTestNode parent) throws InterruptedException { in execute()
198 private void trySaveCollectedEvents(ISensorTestNode parent, TestSensorEventListener listener) { in trySaveCollectedEvents()
/cts/tests/tests/hardware/src/android/hardware/cts/
DSensorTestCase.java22 import android.hardware.cts.helpers.reporting.ISensorTestNode;
45 private volatile ISensorTestNode mCurrentTestNode = new TestClassNode(getClass());
67 public void setCurrentTestNode(ISensorTestNode value) { in setCurrentTestNode()
71 protected ISensorTestNode getCurrentTestNode() { in getCurrentTestNode()
75 private class TestClassNode implements ISensorTestNode {
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/base/
DSensorCtsVerifierTestActivity.java22 import android.hardware.cts.helpers.reporting.ISensorTestNode;
40 private volatile ISensorTestNode mCurrentTestNode;
69 protected ISensorTestNode getCurrentTestNode() { in getCurrentTestNode()
124 private class TestNode implements ISensorTestNode {
DSensorCtsTestResult.java30 import android.hardware.cts.helpers.reporting.ISensorTestNode;
151 private class TestNode implements ISensorTestNode {
/cts/tests/tests/hardware/src/android/hardware/cts/helpers/reporting/
DISensorTestNode.java26 public interface ISensorTestNode { interface