HomeSort by relevance Sort by last modified time
    Searched refs:ISensorTestNode (Results 1 - 14 of 14) sorted by null

  /cts/tests/sensor/src/android/hardware/cts/helpers/reporting/
ISensorTestNode.java 26 public interface ISensorTestNode {
  /cts/tests/sensor/src/android/hardware/cts/helpers/sensoroperations/
SensorOperation.java 21 import android.hardware.cts.helpers.reporting.ISensorTestNode;
29 * <li>{@link #execute(ISensorTestNode)} should only be called once and behavior is undefined for
31 * Once {@link #execute(ISensorTestNode)} is called, the class should not be modified. Generally,
33 * <li>{@link #getStats()} should only be called after {@link #execute(ISensorTestNode)}. If it
65 public abstract void execute(ISensorTestNode parent) throws InterruptedException;
92 protected ISensorTestNode asTestNode(ISensorTestNode parent) {
96 private class SensorTestNode implements ISensorTestNode {
97 private final ISensorTestNode mParent;
100 public SensorTestNode(ISensorTestNode parent, SensorOperation operation)
    [all...]
RepeatingSensorOperation.java 21 import android.hardware.cts.helpers.reporting.ISensorTestNode;
52 public void execute(ISensorTestNode parent) throws InterruptedException {
53 ISensorTestNode currentNode = asTestNode(parent);
76 private class TestNode implements ISensorTestNode {
77 private final ISensorTestNode mTestNode;
80 public TestNode(ISensorTestNode parent, int iteration) {
DelaySensorOperation.java 20 import android.hardware.cts.helpers.reporting.ISensorTestNode;
51 public void execute(ISensorTestNode parent) throws InterruptedException {
SequentialSensorOperation.java 20 import android.hardware.cts.helpers.reporting.ISensorTestNode;
51 public void execute(ISensorTestNode parent) throws InterruptedException {
52 ISensorTestNode currentNode = asTestNode(parent);
FakeSensorOperation.java 20 import android.hardware.cts.helpers.reporting.ISensorTestNode;
60 public void execute(ISensorTestNode parent) {
WakeLockOperation.java 20 import android.hardware.cts.helpers.reporting.ISensorTestNode;
63 public void execute(ISensorTestNode parent) throws InterruptedException {
AlarmOperation.java 25 import android.hardware.cts.helpers.reporting.ISensorTestNode;
79 public void execute(ISensorTestNode parent) throws InterruptedException {
ParallelSensorOperation.java 22 import android.hardware.cts.helpers.reporting.ISensorTestNode;
84 public void execute(final ISensorTestNode parent) throws InterruptedException {
95 final ISensorTestNode currentNode = asTestNode(parent);
SensorOperationTest.java 23 import android.hardware.cts.helpers.reporting.ISensorTestNode;
36 private final ISensorTestNode mTestNode = new ISensorTestNode() {
240 public void execute(ISensorTestNode parent) {
TestSensorOperation.java 33 import android.hardware.cts.helpers.reporting.ISensorTestNode;
55 * depending on sensor type. When {{@link #execute(ISensorTestNode)} is called, the sensor will
125 public void execute(ISensorTestNode parent) throws InterruptedException {
202 private void trySaveCollectedEvents(ISensorTestNode parent, TestSensorEventListener listener) {
  /cts/tests/sensor/src/android/hardware/cts/
SensorTestCase.java 22 import android.hardware.cts.helpers.reporting.ISensorTestNode;
45 private volatile ISensorTestNode mCurrentTestNode = new TestClassNode(getClass());
67 public void setCurrentTestNode(ISensorTestNode value) {
71 protected ISensorTestNode getCurrentTestNode() {
75 private class TestClassNode implements ISensorTestNode {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/base/
SensorCtsVerifierTestActivity.java 22 import android.hardware.cts.helpers.reporting.ISensorTestNode;
40 private volatile ISensorTestNode mCurrentTestNode;
69 protected ISensorTestNode getCurrentTestNode() {
124 private class TestNode implements ISensorTestNode {
SensorCtsTestResult.java 30 import android.hardware.cts.helpers.reporting.ISensorTestNode;
151 private class TestNode implements ISensorTestNode {

Completed in 178 milliseconds