HomeSort by relevance Sort by last modified time
    Searched full:package_name (Results 1 - 25 of 1178) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/com/android/internal/app/
EventLogTags.logtags 5 53000 harmful_app_warning_uninstall (package_name|3)
6 53001 harmful_app_warning_launch_anyway (package_name|3
  /external/gflags/cmake/
config.cmake.in 23 if (@PACKAGE_NAME@_FIND_COMPONENTS)
24 foreach (@PACKAGE_NAME@_FIND_COMPONENT IN LISTS @PACKAGE_NAME@_FIND_COMPONENTS)
25 if (@PACKAGE_NAME@_FIND_REQUIRED_${@PACKAGE_NAME@_FIND_COMPONENT} AND NOT TARGET @PACKAGE_NAME@_${@PACKAGE_NAME@_FIND_COMPONENT})
26 message (FATAL_ERROR "Package @PACKAGE_NAME@ was installed without required component ${@PACKAGE_NAME@_FIND_COMPONENT}!")
29 list (GET @PACKAGE_NAME@_FIND_COMPONENTS 0 @PACKAGE_NAME@_FIND_COMPONENT
    [all...]
  /external/libffi/
libffi.pc.in 5 includedir=${libdir}/@PACKAGE_NAME@-@PACKAGE_VERSION@/include
7 Name: @PACKAGE_NAME@
  /external/python/cpython2/Modules/_ctypes/libffi/
libffi.pc.in 5 includedir=${libdir}/@PACKAGE_NAME@-@PACKAGE_VERSION@/include
7 Name: @PACKAGE_NAME@
  /external/python/cpython3/Modules/_ctypes/libffi/
libffi.pc.in 5 includedir=${libdir}/@PACKAGE_NAME@-@PACKAGE_VERSION@/include
7 Name: @PACKAGE_NAME@
  /frameworks/base/services/tests/servicestests/src/com/android/server/backup/utils/
BackupObserverUtilsTest.java 39 private static final String PACKAGE_NAME = "some.package";
52 BackupObserverUtils.sendBackupOnUpdate(null, PACKAGE_NAME, mBackupProgress);
59 BackupObserverUtils.sendBackupOnUpdate(mBackupObserverMock, PACKAGE_NAME, mBackupProgress);
61 verify(mBackupObserverMock).onUpdate(PACKAGE_NAME, mBackupProgress);
66 doThrow(new RemoteException()).when(mBackupObserverMock).onUpdate(PACKAGE_NAME,
69 BackupObserverUtils.sendBackupOnUpdate(mBackupObserverMock, PACKAGE_NAME, mBackupProgress);
71 verify(mBackupObserverMock).onUpdate(PACKAGE_NAME, mBackupProgress);
76 BackupObserverUtils.sendBackupOnPackageResult(null, PACKAGE_NAME, 1);
83 BackupObserverUtils.sendBackupOnPackageResult(mBackupObserverMock, PACKAGE_NAME, 1);
85 verify(mBackupObserverMock).onResult(PACKAGE_NAME, 1)
    [all...]
  /art/tools/
add_package_property.sh 20 echo "USAGE: sh add_package_property.sh [PACKAGE_NAME] [PROPERTY_SCRIPT_PATH]"
23 PACKAGE_NAME=$1
26 adb push $PROPERTY_SCRIPT_PATH /data/data/$PACKAGE_NAME/
27 adb shell chmod o+x /data/data/$PACKAGE_NAME/$PROPERTY_SCRIPT_NAME
28 adb shell restorecon /data/data/$PACKAGE_NAME/$PROPERTY_SCRIPT_NAME
29 adb shell setprop wrap.$PACKAGE_NAME /data/data/$PACKAGE_NAME/$PROPERTY_SCRIPT_NAME
  /external/libjpeg-turbo/win/
jconfigint.h.in 3 #define PACKAGE_NAME "@CMAKE_PROJECT_NAME@"
  /packages/apps/Browser2/test/
run_tests.sh 7 PACKAGE_NAME="org.chromium.webview_shell"
18 $PACKAGE_NAME.WebViewLayoutTest \
19 $PACKAGE_NAME/$PACKAGE_NAME.WebViewLayoutTestRunner
  /external/libjpeg-turbo/release/
makecygwinpkg.in 18 PACKAGE_NAME=@PKGNAME@
28 rm -f $PACKAGE_NAME-$VERSION-$BUILD.tar.bz2
31 make install DESTDIR=$TMPDIR/pkg docdir=/usr/share/doc/$PACKAGE_NAME-$VERSION \
32 exampledir=/usr/share/doc/$PACKAGE_NAME-$VERSION
35 ln -fs /usr/share/doc/$PACKAGE_NAME-$VERSION $TMPDIR/pkg$DOCDIR
38 tar cfj ../$PACKAGE_NAME-$VERSION-$BUILD.tar.bz2 *
makedpkg.in 27 DIRNAME=$PACKAGE_NAME
30 PACKAGE_NAME=$PACKAGE_NAME\32
35 rm -f $PACKAGE_NAME\_$VERSION\_$DEBARCH.deb
36 TMPDIR=`mktemp -d /tmp/$PACKAGE_NAME-build.XXXXXX`
54 (cat $SRCDIR/release/deb-control.tmpl | sed s/{__PKGNAME}/$PACKAGE_NAME/g \
63 dpkg -b $TMPDIR $PACKAGE_NAME\_$VERSION\_$DEBARCH.deb
66 PACKAGE_NAME=@PKGNAME@
  /platform_testing/tests/jank/uibench/src/com/android/uibench/janktests/
UiBenchJankTests.java 20 import static com.android.uibench.janktests.UiBenchJankTestsHelper.PACKAGE_NAME;
66 @GfxMonitor(processName = PACKAGE_NAME)
77 @GfxMonitor(processName = PACKAGE_NAME)
88 @GfxMonitor(processName = PACKAGE_NAME)
99 @GfxMonitor(processName = PACKAGE_NAME)
110 @GfxMonitor(processName = PACKAGE_NAME)
121 @GfxMonitor(processName = PACKAGE_NAME)
131 @GfxMonitor(processName = PACKAGE_NAME)
141 @GfxMonitor(processName = PACKAGE_NAME)
151 @GfxMonitor(processName = PACKAGE_NAME)
    [all...]
  /cts/tests/tests/content/src/android/content/pm/cts/
ApplicationInfo_DisplayNameComparatorTest.java 29 private static final String PACKAGE_NAME = "android.content.cts";
51 info1.packageName = PACKAGE_NAME;
52 info2.packageName = PACKAGE_NAME;
55 info1 = mContext.getPackageManager().getApplicationInfo(PACKAGE_NAME, 0);
56 info2.packageName = PACKAGE_NAME + ".2";
60 info1.packageName = PACKAGE_NAME + ".1";
61 info2 = mContext.getPackageManager().getApplicationInfo(PACKAGE_NAME, 0);
PackageManagerTest.java 47 private static final String PACKAGE_NAME = "android.content.cts";
74 new ComponentName(PACKAGE_NAME, cmpActivityName), null, activityIntent, 0);
79 new ComponentName(PACKAGE_NAME, ACTIVITY_NAME), null, activityIntent, 0);
115 ApplicationInfo appInfo = mPackageManager.getApplicationInfo(PACKAGE_NAME, 0);
116 List<ProviderInfo> providers = mPackageManager.queryContentProviders(PACKAGE_NAME,
190 ApplicationInfo appInfo = mPackageManager.getApplicationInfo(PACKAGE_NAME, 0);
193 CharSequence appText = mPackageManager.getText(PACKAGE_NAME, discriptionRes, appInfo);
195 ComponentName activityName = new ComponentName(PACKAGE_NAME, ACTIVITY_NAME);
196 ComponentName serviceName = new ComponentName(PACKAGE_NAME, SERVICE_NAME);
197 ComponentName receiverName = new ComponentName(PACKAGE_NAME, RECEIVER_NAME)
    [all...]
  /packages/apps/StorageManager/robotests/src/com/android/storagemanager/deletionhelper/
AppStateUsageStatsBridgeTest.java 60 private static final String PACKAGE_NAME = "package.mcpackageface";
103 addPackageToPackageManager(PACKAGE_NAME, TimeUnit.DAYS.toMillis(1000));
105 mBridge.updateExtraInfo(app, PACKAGE_NAME, 0);
117 addPackageToPackageManager(PACKAGE_NAME, TimeUnit.DAYS.toMillis(1000));
119 mBridge.updateExtraInfo(app, PACKAGE_NAME, 0);
131 addPackageToPackageManager(PACKAGE_NAME, TimeUnit.DAYS.toMillis(910));
133 mBridge.updateExtraInfo(app, PACKAGE_NAME, 0);
145 addPackageToPackageManager(PACKAGE_NAME, TimeUnit.DAYS.toMillis(910));
147 mBridge.updateExtraInfo(app, PACKAGE_NAME, 0);
159 addPackageToPackageManager(PACKAGE_NAME, TimeUnit.DAYS.toMillis(910))
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/EphemeralTestApp/util/
run-test 5 # run-test <module> <package_name> // To run all the tests in a package.
6 # run-test <module> <package_name>.<class_name> // To run all the tests in a class.
7 # run-test <module> <package_name>.<class_name>#<method_name> // To run a specific test in a class.
  /cts/tests/framework/base/activitymanager/appPrereleaseSdk/src/android/server/am/prerelease/
Components.java 24 private static final String PACKAGE_NAME = Components.class.getPackage().getName();
27 PACKAGE_NAME, PACKAGE_NAME + ".MainActivity");
  /cts/tests/framework/base/activitymanager/util/
run-test 5 # run-test <module> <package_name> // To run all the tests in a package.
6 # run-test <module> <package_name>.<class_name> // To run all the tests in a class.
7 # run-test <module> <package_name>.<class_name>#<method_name> // To run a specific test in a class.
  /developers/build/prebuilts/gradle/WearMessagingApp/Wearable/
google-services.json 11 "package_name": "com.example.android.wearable.wear.messaging"
19 "package_name": "com.example.android.wearable.wear.messaging",
  /developers/samples/android/wearable/wear/WearMessagingApp/Wearable/
google-services.json 11 "package_name": "com.example.android.wearable.wear.messaging"
19 "package_name": "com.example.android.wearable.wear.messaging",
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStoreBCWorkaroundProvider.java 43 private static final String PACKAGE_NAME = "android.security.keystore";
45 PACKAGE_NAME + ".AndroidKeyStoreSecretKey";
47 PACKAGE_NAME + ".AndroidKeyStorePrivateKey";
49 PACKAGE_NAME + ".AndroidKeyStorePublicKey";
59 putMacImpl("HmacSHA1", PACKAGE_NAME + ".AndroidKeyStoreHmacSpi$HmacSHA1");
64 putMacImpl("HmacSHA224", PACKAGE_NAME + ".AndroidKeyStoreHmacSpi$HmacSHA224");
69 putMacImpl("HmacSHA256", PACKAGE_NAME + ".AndroidKeyStoreHmacSpi$HmacSHA256");
74 putMacImpl("HmacSHA384", PACKAGE_NAME + ".AndroidKeyStoreHmacSpi$HmacSHA384");
79 putMacImpl("HmacSHA512", PACKAGE_NAME + ".AndroidKeyStoreHmacSpi$HmacSHA512");
86 PACKAGE_NAME + ".AndroidKeyStoreUnauthenticatedAESCipherSpi$ECB$NoPadding")
    [all...]
  /tools/tradefederation/core/prod-tests/src/com/android/framework/tests/
PackageManagerOTATests.java 57 private static final String PACKAGE_NAME = "com.android.frameworks.coretests.version_test";
82 getDevice().uninstallPackage(PACKAGE_NAME);
84 String res = getDevice().executeShellCommand("pm path " + PACKAGE_NAME).trim();
135 mUtils.packageHasFlag(PACKAGE_NAME, " SYSTEM "));
137 mUtils.packageHasPermission(PACKAGE_NAME, VIBRATE_PERMISSION));
139 mUtils.packageHasPermission(PACKAGE_NAME, CACHE_PERMISSION));
150 mUtils.packageHasFlag(PACKAGE_NAME, " SYSTEM "));
152 mUtils.packageHasPermission(PACKAGE_NAME, VIBRATE_PERMISSION));
154 mUtils.packageHasPermission(PACKAGE_NAME, CACHE_PERMISSION));
175 mUtils.packageHasFlag(PACKAGE_NAME, " SYSTEM "))
    [all...]
  /external/libffi/include/
Makefile.am 8 includesdir = $(libdir)/@PACKAGE_NAME@-@PACKAGE_VERSION@/include
  /external/libjpeg-turbo/
jconfigint.h.in 11 #undef PACKAGE_NAME
  /external/python/cpython2/Modules/_ctypes/libffi/include/
Makefile.am 8 includesdir = $(libdir)/@PACKAGE_NAME@-@PACKAGE_VERSION@/include

Completed in 694 milliseconds

1 2 3 4 5 6 7 8 91011>>