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

  /cts/tests/tests/dynamic_linker/com/android/dynamiclinker/
DynamicLinkerTest.java 37 String apkPath = InstrumentationRegistry.getContext().getPackageResourcePath();
39 System.load(apkPath + "!/lib/arm64-v8a/libdynamiclinker_native_lib_b.so");
41 System.load(apkPath + "!/lib/armeabi-v7a/libdynamiclinker_native_lib_b.so");
43 System.load(apkPath + "!/lib/x86_64/libdynamiclinker_native_lib_b.so");
45 System.load(apkPath + "!/lib/x86/libdynamiclinker_native_lib_b.so");
  /external/deqp/scripts/android/
install_apk.py 127 def install (adbPath, apkPath, extraArgs = [], printPrefix=""):
128 print printPrefix + "Installing %s...\n" % apkPath,
131 apkPath
135 def installToDevice (device, adbPath, packageName, apkPath, printPrefix=""):
142 install(adbPath, apkPath, ['-s', device.serial], printPrefix)
144 def installToDevices (devices, doParallel, adbPath, packageName, apkPath):
147 parallelApply(installToDevice, [(device, adbPath, packageName, apkPath, ("(%s):%s" % (device.model, ' ' * (padLen - len(device.model))))) for device in devices]);
149 serialApply(installToDevice, [(device, adbPath, packageName, apkPath) for device in devices]);
151 def installToAllDevices (doParallel, adbPath, packageName, apkPath):
153 installToDevices(devices, doParallel, adbPath, packageName, apkPath)
    [all...]
build_apk.py 607 def addFilesToAPK (config, apkPath, baseDir, relFilePaths):
622 "-f", apkPath,
629 def addFileToAPK (config, apkPath, baseDir, relFilePath):
630 addFilesToAPK(config, apkPath, baseDir, [relFilePath])
  /cts/hostsidetests/classloaders/useslibrary/app/src/com/android/cts/useslibrary/
UsesLibraryTest.java 79 String apkPath = apkDexFile.getName();
83 String testPath = apkPath + File.pathSeparator + apkPath;
  /external/skia/infra/cts/
run_testlab.go 76 apkPath := flag.Arg(0)
77 if *dumpDevFile == "" && apkPath == "" {
121 if err := runTests(apkPath, devices, ignoredDevices, client, *dryRun); err != nil {
126 if err := uploadAPK(apkPath, *uploadGCSPath, *properties, client); err != nil {
286 func uploadAPK(apkPath, gcsPath, propStr string, client *http.Client) error {
291 apkFile, err := os.Open(apkPath)
  /external/skqp/infra/cts/
run_testlab.go 76 apkPath := flag.Arg(0)
77 if *dumpDevFile == "" && apkPath == "" {
121 if err := runTests(apkPath, devices, ignoredDevices, client, *dryRun); err != nil {
126 if err := uploadAPK(apkPath, *uploadGCSPath, *properties, client); err != nil {
286 func uploadAPK(apkPath, gcsPath, propStr string, client *http.Client) error {
291 apkFile, err := os.Open(apkPath)
  /cts/tests/tests/jni/src/android/jni/cts/
LinkerNamespacesHelper.java 297 String apkPath = getSourcePath("android.jni.cts");
300 apkPath, nativePath, ClassLoader.getSystemClassLoader());
303 apkPath, nativePath, ClassLoader.getSystemClassLoader());
  /cts/tests/tests/jvmti/attaching/src/android.jvmti.attaching.cts/
AttachingTest.java 146 String apkPath = clfile.substring(0, clfile.lastIndexOf('!'));
147 ZipFile zip = new ZipFile(apkPath);
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
CtsApiCoverage.java 275 String apkPath = testApk.getPath();
276 Process process = new ProcessBuilder(dexdeps, "--format=xml", apkPath).start();
282 System.err.println("warning: dexdeps failed for: " + apkPath);
TestCaseReport.java 208 String apkPath = Paths.get(tsPath, apkName).toString();
210 dexFile = DexFileFactory.loadDexFile(apkPath, Opcodes.forApi(api));
212 System.err.println("Unable to load dex file: " + apkPath);
  /cts/tools/release-parser/src/com/android/cts/releaseparser/
TestSuiteParser.java 208 String apkPath = Paths.get(mFolderPath, pkgBuilder.getPackageFile()).toString();
213 dexFile = DexFileFactory.loadDexFile(apkPath, Opcodes.getDefault());
289 System.err.println("Unable to load dex file: " + apkPath);
  /cts/tests/tests/role/src/android/app/role/cts/
RoleManagerTest.java 360 private void installPackage(@NonNull String apkPath) {
361 runShellCommand("pm install -r --user " + mCurrentUserId + " " + apkPath);
  /build/soong/java/
app_test.go 907 apkPath string
914 apkPath: "/target/product/test_device/system/app/foo/foo.apk",
921 apkPath: "/target/product/test_device/system/app/bar/bar.apk",
928 apkPath: "/target/product/test_device/system/app/baz/baz.apk",
939 expectedApkPath := buildDir + expected.apkPath
  /cts/tests/tests/content/src/android/content/pm/cts/
PackageManagerTest.java 568 final String apkPath = InstrumentationRegistry.getContext().getPackageCodePath();
573 final PackageInfo pkgInfo = mPackageManager.getPackageArchiveInfo(apkPath, flags);
    [all...]

Completed in 390 milliseconds