Home
last modified time | relevance | path

Searched refs:configId (Results 1 – 7 of 7) sorted by relevance

/cts/hostsidetests/appcompat/host/lib/src/android/compat/cts/
DCompatChangeGatingTestCase.java150 final long configId = getClass().getCanonicalName().hashCode(); in runDeviceCompatTestReported() local
151 createAndUploadStatsdConfig(configId, pkgName); in runDeviceCompatTestReported()
189 validatePostRunStatsdReport(configId, pkgName, reportedEnabledChanges, in runDeviceCompatTestReported()
198 …private List<ConfigMetricsReport> getReportList(long configId) throws DeviceNotAvailableException { in getReportList() argument
201 getDevice().executeShellCommand(String.format(DUMP_REPORT_CMD, configId), receiver); in getReportList()
219 protected void createAndUploadStatsdConfig(long configId, String pkgName) in createAndUploadStatsdConfig() argument
227 .setId(configId) in createAndUploadStatsdConfig()
249 device.executeShellCommand(String.format(UPDATE_CONFIG_CMD, remotePath, configId)); in createAndUploadStatsdConfig()
255 getReportList(configId); in createAndUploadStatsdConfig()
305 private void removeStatsdConfig(long configId) throws DeviceNotAvailableException { in removeStatsdConfig() argument
[all …]
/cts/tests/tests/opengl/src/android/opengl/cts/
DEglConfigCtsActivity.java102 for (int configId : configIds) { in runConfigTests()
108 … setTitle("EGL Config Id: " + configId + " Client Version: " + contextClientVersion); in runConfigTests()
109 … mView = new EglConfigGLSurfaceView(context, configId, contextClientVersion, new Runnable() { in runConfigTests()
DEglConfigGLSurfaceView.java45 public EglConfigGLSurfaceView(Context context, int configId, int contextClientVersion, in EglConfigGLSurfaceView() argument
48 mConfigId = configId; in EglConfigGLSurfaceView()
/cts/common/device-side/bedstead/metricsrecorder/src/main/java/com/android/bedstead/metricsrecorder/
DEnterpriseMetricsRecorder.java156 private void removeConfig(long configId) { in removeConfig() argument
158 ShellCommand.builder("cmd stats config remove").addOperand(configId) in removeConfig()
161 throw new NeneException("Error removing config " + configId, e); in removeConfig()
/cts/hostsidetests/devicepolicy/src/com/android/cts/devicepolicy/metrics/
DAtomMetricTester.java96 private void removeConfig(long configId) throws Exception { in removeConfig() argument
97 mDevice.executeShellCommand(String.format(REMOVE_CONFIG_CMD, configId)); in removeConfig()
/cts/hostsidetests/appcompat/compatchanges/src/com/android/cts/appcompat/
DCompatChangesSelinuxTest.java66 final long configId = getClass().getCanonicalName().hashCode(); in testTargetSdkQAppIsInLatestDomainWithLatestOptin() local
/cts/hostsidetests/statsdatom/src/android/cts/statsdatom/statsd/
DAtomTestCase.java296 protected void removeConfig(long configId) throws Exception { in removeConfig() argument
298 String.join(" ", REMOVE_CONFIG_CMD, String.valueOf(configId))); in removeConfig()