Home
last modified time | relevance | path

Searched refs:response (Results 1 – 3 of 3) sorted by relevance

/platform_testing/libraries/health/rules/src/android/platform/test/rule/
DCompilationFilterRule.java86 String response = executeShellCommand(String.format(DUMP_PROFILE_CMD, app)); in finished() local
87 if (!response.isEmpty()) { in finished()
89 String.format("Received dump profile cmd response: %s", response)); in finished()
96 String response = executeShellCommand( in finished() local
98 if (!response.contains(COMPILE_SUCCESS)) { in finished()
99 Log.d(LOG_TAG, String.format("Received compile cmd response: %s", response)); in finished()
DDex2oatPressureRule.java154 String response = executeShellCommand(LIST_PACKAGES_COMMAND); in getInstalledPackages() local
155 return Arrays.asList(response.split("\n")) in getInstalledPackages()
170 String response = in runCompileCommand() local
172 if (!response.equalsIgnoreCase(COMPILE_COMMAND_SUCCESS_RESPONSE)) { in runCompileCommand()
178 pkg, filter, response)); in runCompileCommand()
/platform_testing/libraries/compatibility-common-util/src/com/android/compatibility/common/util/
DMultipartForm.java117 int response = connection.getResponseCode(); in submitForm() local
118 if (response == 302) { in submitForm()
121 return response; in submitForm()