Home | History | Annotate | Download | only in cts

Lines Matching refs:statusCode

1196             int statusCode = DeviceObserver.FAIL;
1202 statusCode = DeviceObserver.SUCCESS;
1205 statusCode = DeviceObserver.FAIL;
1210 statusCode = DeviceObserver.FAIL;
1219 mDeviceObserver.notifyInstallingComplete(statusCode);
1430 int statusCode = getStatusCode(line);
1431 processTestResult(statusCode);
1439 * @param statusCode The status code of a single test's test result.
1441 public void processTestResult(int statusCode) {
1449 if ((statusCode == STATUS_FAIL) || (statusCode == STATUS_ERROR)) {
1462 Log.d(testFullName + "...(" + statusCode + ")");
1467 switch (statusCode) {
1531 int statusCode = getStatusCode(line);
1532 processTestResult(statusCode);
1560 * @param statusCode The status code of a single test's test result.
1562 public void processTestResult(int statusCode) {
1571 if ((statusCode == STATUS_FAIL) || ((statusCode == STATUS_ERROR))) {
1576 Log.d(testFullName + "...(" + statusCode + ")");
1582 if (statusCode == STATUS_STARTING) {
1588 switch(statusCode) {
1807 * @param statusCode the status code of {@link TestDevice}
1809 public void setStatus(final int statusCode) {
1810 if (statusCode != STATUS_IDLE && statusCode != STATUS_BUSY
1811 && statusCode != STATUS_OFFLINE) {
1814 mStatus = statusCode;