HomeSort by relevance Sort by last modified time
    Searched refs:PACKAGES (Results 1 - 25 of 27) sorted by null

1 2

  /cts/tests/signature/
runSignatureTests.sh 13 PACKAGES="
22 PACKAGES=${1+"$@"}
26 make -j32 $PACKAGES
31 for p in $PACKAGES
  /external/skia/tools/
install_dependencies.sh 27 PACKAGES=$(cat<<-EOF
40 PACKAGES="${PACKAGES} ninja-build"
42 if ! dpkg_all_installed $PACKAGES; then
43 sudo apt-get install $PACKAGES
  /external/autotest/client/site_tests/example_UnitTest/src/
Makefile 10 PACKAGES =
15 $(CXX) $(CXXFLAGS) $(OPTIONS) $(LDFLAGS) $(PACKAGES) $(OBJECTS) $(LIBS) \
21 $(CXX) $(CXXFLAGS) $(PACKAGES) $(OPTIONS) $(INCLUDES) -c $< -o $@
22 $(CXX) -MM $(CXXFLAGS) $(PACKAGES) $(OPTIONS) $(INCLUDES) $< > $*.d
  /external/python/cpython2/Tools/nuget/
build.bat 10 set PACKAGES=
19 if "%~1" EQU "-p" (set PACKAGES=%PACKAGES% %~2) && shift && shift && goto CheckOpts
34 if defined PACKAGES set PACKAGES="/p:Packages=%PACKAGES%"
41 msbuild "%D%make_pkg.proj" /p:Configuration=Release /p:Platform=x86 %OUTPUT% %PACKAGES%
50 msbuild "%D%make_pkg.proj" /p:Configuration=Release /p:Platform=x64 %OUTPUT% %PACKAGES%
  /cts/hostsidetests/ui/src/android/ui/cts/
TaskSwitchingTest.java 54 static final String[] PACKAGES = {
81 for (int i = 0; i < PACKAGES.length; i++) {
82 mDevice.uninstallPackage(PACKAGES[i]);
91 for (int i = 0; i < PACKAGES.length; i++) {
92 mDevice.uninstallPackage(PACKAGES[i]);
98 RemoteAndroidTestRunner testRunner = new RemoteAndroidTestRunner(PACKAGES[0], RUNNER,
  /tools/loganalysis/tests/src/com/android/loganalysis/item/
SmartMonkeyLogItemTest.java 45 assertTrue(output.has(SmartMonkeyLogItem.PACKAGES));
46 assertTrue(output.get(SmartMonkeyLogItem.PACKAGES) instanceof JSONArray);
MonkeyLogItemTest.java 51 JSONArray packages = output.getJSONArray(MonkeyLogItem.PACKAGES); local
53 assertEquals(3, packages.length());
54 assertTrue(in("package1", packages));
55 assertTrue(in("package2", packages));
56 assertTrue(in("package3", packages));
  /build/make/core/
dpi_specific_apk.mk 77 PACKAGES := $(PACKAGES) $(dpi_apk_name)
78 PACKAGES.$(dpi_apk_name).PRIVATE_KEY := $(private_key)
79 PACKAGES.$(dpi_apk_name).CERTIFICATE := $(certificate)
prebuilt_internal.mk 123 PACKAGES.$(LOCAL_MODULE).COMPRESSED := gz
251 PACKAGES.$(LOCAL_MODULE).OVERRIDES := $(strip $(LOCAL_OVERRIDES_PACKAGES))
301 # This can be used for packages where we don't have access to the
304 PACKAGES.$(LOCAL_MODULE).EXTERNAL_KEY := 1
321 PACKAGES.$(LOCAL_MODULE).CERTIFICATE := PRESIGNED
322 PACKAGES := $(PACKAGES) $(LOCAL_MODULE)
329 PACKAGES.$(LOCAL_MODULE).PRIVATE_KEY := $(LOCAL_CERTIFICATE).pk8
330 PACKAGES.$(LOCAL_MODULE).CERTIFICATE := $(LOCAL_CERTIFICATE).x509.pem
331 PACKAGES := $(PACKAGES) $(LOCAL_MODULE
    [all...]
package_internal.mk 236 PACKAGES.$(LOCAL_PACKAGE_NAME).COMPRESSED := gz
330 LOCAL_AAPT_FLAGS += --auto-add-overlay --extra-packages com.android.databinding.library
424 $(my_res_package): PRIVATE_AAPT_FLAGS := $(LOCAL_AAPT_FLAGS) --no-static-lib-packages
451 # other packages can use to build their own PRODUCT-agnostic R.java (etc.)
500 # Most packages should link against the resources defined by framework-res.
549 # Secure release builds will have their packages signed after the fact,
560 PACKAGES.$(LOCAL_PACKAGE_NAME).EXTERNAL_KEY := 1
575 PACKAGES.$(LOCAL_PACKAGE_NAME).PRIVATE_KEY := $(private_key)
576 PACKAGES.$(LOCAL_PACKAGE_NAME).CERTIFICATE := $(certificate)
717 PACKAGES.$(LOCAL_PACKAGE_NAME).OVERRIDES := $(strip $(LOCAL_OVERRIDES_PACKAGES)
    [all...]
Makefile 461 $(foreach p,$(PACKAGES),\
462 $(if $(PACKAGES.$(p).EXTERNAL_KEY),\
463 $(call _apkcerts_write_line,$(p),"EXTERNAL","",$(PACKAGES.$(p).COMPRESSED),$@),\
464 $(call _apkcerts_write_line,$(p),$(PACKAGES.$(p).CERTIFICATE),$(PACKAGES.$(p).PRIVATE_KEY),$(PACKAGES.$(p).COMPRESSED),$@)))
465 # In case value of PACKAGES is empty.
502 # for future OTA packages installed by this system. Actual product
525 # Include tags from all packages that we know about
538 # Include tags from all packages included in this product, plus al
    [all...]
main.mk 441 # Enforce to generate all RRO packages for modules having resource
795 # Filter out the overridden packages before doing expansion
797 $(PACKAGES.$(p).OVERRIDES)), $(product_MODULES))
852 # Some packages may override others using LOCAL_OVERRIDES_PACKAGES.
853 # Filter out (do not install) any overridden packages.
    [all...]
definitions.mk 882 # return a list of the packages (yes, .apk packages, not
903 ### packages, although there may be words that do not. Only \
904 ### real packages will be present under PACKAGES.*, though.)
905 $(foreach _gpo_name,$(_gpo_names),$(PACKAGES.$(_gpo_name).OVERRIDES))
    [all...]
  /tools/loganalysis/src/com/android/loganalysis/item/
MonkeyLogItem.java 47 public static final String PACKAGES = "PACKAGES";
76 START_TIME, STOP_TIME, PACKAGES, CATEGORIES, THROTTLE, SEED, TARGET_COUNT,
91 setAttribute(PACKAGES, new StringSet());
129 * Get the set of packages that the monkey is run on.
132 return (StringSet) getAttribute(PACKAGES);
139 ((StringSet) getAttribute(PACKAGES)).add(thePackage);
356 // Override packages and categories
357 put(object, PACKAGES, new JSONArray(getPackages()));
SmartMonkeyLogItem.java 44 public static final String PACKAGES = "PACKAGES";
71 START_TIME, STOP_TIME, PACKAGES, THROTTLE, TARGET_INVOCATIONS, ABORTED,
83 setAttribute(PACKAGES, new ArrayList<String>());
139 * Get the set of packages that the monkey is run on.
143 return (List<String>) getAttribute(PACKAGES);
151 ((List<String>) getAttribute(PACKAGES)).add(thePackage);
155 * Get the set of packages that the monkey is run on.
347 // Override application, packages, and ANR and crash times.
349 put(object, PACKAGES, new JSONArray(getPackages()))
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/pm/
UserManagerTest.java 54 // Packages which are used during tests.
55 private static final String[] PACKAGES = new String[] {
202 // Verify that disallowed packages are not installed in the managed profile.
209 for (String pkg : PACKAGES) {
216 UserInfo.FLAG_MANAGED_PROFILE, primaryUserId, PACKAGES);
218 for (String pkg : PACKAGES) {
224 // Verify that if any packages are disallowed to install during creation of managed profile can
230 UserInfo.FLAG_MANAGED_PROFILE, primaryUserId, PACKAGES);
232 for (String pkg : PACKAGES) {
237 // Verify that the disallowed packages during profile creation can be installed now
    [all...]
  /cts/common/host-side/tradefed/tests/res/testtype/
testJar1.jar 
  /external/deqp/external/
fetch_sources.py 57 self.archiveDir = "packages"
174 PACKAGES = [
209 for pkg in PACKAGES:
  /tools/loganalysis/src/com/android/loganalysis/parser/
MonkeyLogParser.java 46 private static final Pattern PACKAGES = Pattern.compile(":AllowPackage: (\\S+)");
209 m = PACKAGES.matcher(line);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsDatabaseHelper.java 156 public static final String PACKAGES = "packages";
273 + "LEFT OUTER JOIN packages ON (data.package_id = packages._id) "
283 + "LEFT OUTER JOIN packages ON (activities.package_id = packages._id) "
598 public static final String CONCRETE_ID = Tables.PACKAGES + "." + _ID;
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactsDatabaseHelperUpgradeTest.java 586 new TableListEntry(Tables.PACKAGES, PACKAGES_COLUMNS),
    [all...]
  /frameworks/base/services/core/java/com/android/server/pm/
Settings.java 189 private static final String TAG_BLOCK_UNINSTALL_PACKAGES = "block-uninstall-packages";
269 /** List of packages that installed other packages */
279 /** List of packages that are blocked for uninstall for specific users */
329 * used to upgrade the format of the packages.xml database not
390 // Packages that have been uninstalled and still need their external
394 // Packages that have been renamed since they were first installed.
395 // Keys are the new names of the packages, values are the original
396 // names. The packages appear everywhere else under their original
412 * Used to track packages that have a shared user ID that hasn't been rea
1630 ArraySet<String> packages = new ArraySet<>(); local
1854 ArraySet<String> packages = mBlockUninstallPackages.get(userId); local
1870 ArraySet<String> packages = mBlockUninstallPackages.get(userId); local
2049 ArraySet<String> packages = mBlockUninstallPackages.get(userId); local
4226 Collection<PackageSetting> packages = mPackages.values(); local
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/logging/log4j/log4j-core/2.5/
log4j-core-2.5.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-reflect/1.0.6/
kotlin-reflect-1.0.6.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-reflect/1.1.3/
kotlin-reflect-1.1.3.jar 

Completed in 1908 milliseconds

1 2