Home | History | Annotate | Download | only in compilation

Lines Matching defs:pathSpec

277         String pathSpec = executeSuShellAdbCommand(1, "pm", "path", APPLICATION_PACKAGE)[0];
278 pathSpec = pathSpec.replace("package:", "");
279 assertTrue("Failed find APK " + pathSpec, doesFileExist(pathSpec));
283 "--apk=" + pathSpec,
284 "--dex-location=" + pathSpec,
318 String pathSpec = executeSuShellAdbCommand(1, "pm", "path", APPLICATION_PACKAGE)[0];
319 Matcher matcher = Pattern.compile("^package:(.+/)base\\.apk$").matcher(pathSpec);
321 assertTrue("Malformed spec: " + pathSpec, found);