Home
last modified time | relevance | path

Searched defs:packageName (Results 1 – 20 of 20) sorted by relevance

/test/suite_harness/common/host-side/util/src/com/android/compatibility/common/util/
DPackageUtil.java29 public static boolean exists(ITestDevice device, String packageName) in exists()
35 public static boolean isSystemApp(ITestDevice device, String packageName) in isSystemApp()
42 public static String getVersionString(ITestDevice device, String packageName) in getVersionString()
/test/app_compat/csuite/harness/src/test/java/com/android/csuite/core/
DDeviceUtilsTest.java80 String packageName = "package.name"; in isPackageInstalled_packageIsInstalled_returnsTrue() local
93 String packageName = "package.name"; in isPackageInstalled_packageIsNotInstalled_returnsFalse() local
530 String packageName = "com.app.package"; in isDropboxEntryFromPackageProcess_cmdlineMatched_returnsTrue() local
541 String packageName = "com.app.package"; in isDropboxEntryFromPackageProcess_processMatched_returnsTrue() local
553 String packageName = "com.app.package"; in isDropboxEntryFromPackageProcess_processMatchedInLines_returnsTrue() local
565 String packageName = "com.app.package"; in isDropboxEntryFromPackageProcess_processNameFollowedByOtherChar_returnsTrue() local
577 String packageName = "com.app.package"; in isDropboxEntryFromPackageProcess_processNameFollowedByDot_returnsFalse() local
589 String packageName = "com.app.package"; in isDropboxEntryFromPackageProcess_processNameFollowedByColon_returnsTrue() local
601 String packageName = "com.app.package"; in isDropboxEntryFromPackageProcess_processNameFollowedByUnderscore_returnsFalse() local
613 String packageName = "com.app.package"; in isDropboxEntryFromPackageProcess_doesNotContainPackageName_returnsFalse() local
[all …]
DPackageModuleInfoProviderTest.java163 ProviderBuilder addPackage(String packageName) { in addPackage()
168 ProviderBuilder addAltPackage(String packageName) { in addAltPackage()
DModuleGeneratorTest.java289 Path testsDir, String packageName) throws IOException { in assertThatModuleConfigFileContent()
302 private static Path getModuleConfigFile(Path baseDir, String packageName) { in getModuleConfigFile()
DDirectoryBasedModuleInfoProviderTest.java107 String packageName = "package.name"; in get_directoryContainsApk_packagePlaceholderIsSubstituted() local
/test/app_compat/csuite/harness/src/main/java/com/android/csuite/core/
DSystemPackageUninstaller.java49 public static void uninstallPackage(String packageName, ITestDevice device) in uninstallPackage()
229 private static void removePackageUpdates(String packageName, ITestDevice device) in removePackageUpdates()
250 private static void removePackageData(String packageName, ITestDevice device) in removePackageData()
266 private static boolean isPackageInstalled(String packageName, ITestDevice device) in isPackageInstalled()
284 private static String getPackageInstallDirectory(String packageName, ITestDevice device) in getPackageInstallDirectory()
DDeviceUtils.java135 public void grantExternalStoragePermissions(String packageName) in grantExternalStoragePermissions()
358 public void launchPackage(String packageName) in launchPackage()
531 public String getPackageVersionName(String packageName) throws DeviceNotAvailableException { in getPackageVersionName()
552 public String getPackageVersionCode(String packageName) throws DeviceNotAvailableException { in getPackageVersionCode()
571 public void stopPackage(String packageName) throws DeviceNotAvailableException { in stopPackage()
582 public boolean resetPackage(String packageName) throws DeviceNotAvailableException { in resetPackage()
595 public boolean isPackageInstalled(String packageName) in isPackageInstalled()
685 String packageName, in getDropboxEntries()
704 boolean isDropboxEntryFromPackageProcess(String entryData, String packageName) { in isDropboxEntryFromPackageProcess()
DApkInstaller.java79 String packageName; in install() local
195 List<Path> apkFilePaths, String deviceSerial, String packageName) { in createObbInstallCommands()
231 private String[] createUninstallCommand(String packageName, String deviceSerial) { in createUninstallCommand()
DRoboLoginConfigProvider.java48 public RoboLoginConfig findConfigFor(String packageName, boolean isUtpClient) { in findConfigFor()
DAppCrawlTester.java87 String packageName, TestInformation testInformation, TestLogData testLogData) { in newInstance()
97 String packageName, in AppCrawlTester()
361 private void generateRoboscriptSignalFile(Path roboOutputFile, String packageName) { in generateRoboscriptSignalFile()
DTestUtils.java217 public void collectAppVersion(String packageName) throws DeviceNotAvailableException { in collectAppVersion()
246 String packageName, DeviceTimestamp startTimeOnDevice, boolean saveToFile) in getDropboxPackageCrashLog()
267 String packageName, in compileTestFailureMessage()
/test/app_compat/csuite/test_scripts/src/main/java/com/android/pixel/utils/
DDeviceUtils.java111 public void launchApp(String packageName) { in launchApp()
124 public void takeScreenshot(String packageName, String description) { in takeScreenshot()
138 public void startRecording(String packageName) { in startRecording()
/test/app_compat/csuite/harness/src/main/java/com/android/csuite/config/
DAppRemoteFileResolver.java148 String packageName = appUri.getAuthority(); in resolveRemoteFiles() local
197 String packageName = uri.getAuthority(); in checkAppUri() local
244 private File resolveUriToFile(String packageName, URI uri, Map<String, String> params) in resolveUriToFile() argument
/test/cts-root/tests/packagemanagerlocal/src/android/packagemanagerlocal/cts_root/
DPackageManagerLocalTest.java51 final String packageName = "android.packagemanagerlocal.test"; in testPackageManagerLocal_ReconcileSdkData_DifferentStorageFlags() local
102 final String packageName = "android.packagemanagerlocal.test"; in testPackageManagerLocal_ReconcileSdkData_Reconcile() local
/test/cts-root/tests/usage/src/android/usage/cts_root/
DStorageStatsManagerLocalTest.java57 String packageName = context.getPackageName(); in testStorageAugmenter() local
91 String packageName, in augmentStatsForPackageForUser()
/test/app_compat/csuite/test_scripts/src/main/java/com/android/webview/lib/
DWebviewPackage.java33 public WebviewPackage(String packageName, String version, long versionCode, Path apkPath) { in WebviewPackage()
38 public WebviewPackage(String packageName, String version, long versionCode) { in WebviewPackage()
/test/cts-root/tests/permission/src/android/permission/cts-root/
DSignaturePermissionAllowlistTest.java128 private void uninstallPackage(@NonNull String packageName) throws Exception { in uninstallPackage()
/test/suite_harness/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/targetprep/
DDeviceInteractionHelperInstallerTest.java95 private void mockApkPackage(File apk, String packageName) { in mockApkPackage()
/test/cts-root/tests/packagewatchdog/src/android/packagewatchdog/cts_root/
DPackageWatchdogTest.java300 public boolean mayObservePackage(String packageName) { in mayObservePackage()
/test/cts-root/hostsidetests/rollback/src/com/android/cts_root/rollback/host/
DRollbackManagerHostTest.java571 private void startActivity(String packageName) throws Exception { in startActivity()