HomeSort by relevance Sort by last modified time
    Searched defs:pkgname (Results 1 - 25 of 37) sorted by null

1 2

  /system/core/run-as/
run-as.cpp 142 char* pkgname = argv[1]; local
158 info.name = pkgname;
163 error(1, 0, "unknown package: %s", pkgname);
177 error(1, 0, "package not an application: %s", pkgname);
182 error(1, 0, "package not debuggable: %s", pkgname);
187 error(1, 0, "package has corrupt installation: %s", pkgname);
200 if (selinux_android_setcontext(uid, 0, info.seinfo, pkgname) < 0) {
  /external/objenesis/tck/src/main/java/org/objenesis/tck/search/
ClassEnumerator.java 32 private static void processDirectory(File directory, String pkgname, SortedSet<String> classes) {
42 String className = pkgname + '.' + fileName.substring(0, fileName.length() - 6);
49 processDirectory(subdir, pkgname + '.' + fileName, classes);
54 private static void processJarfile(URL resource, String pkgname, SortedSet<String> classes) {
55 String relPath = pkgname.replace('.', '/');
110 String pkgname = pkg.getName(); local
111 String relPath = pkgname.replace('.', '/');
124 processJarfile(resource, pkgname, classes);
126 processDirectory(new File(resource.getPath()), pkgname, classes);
  /frameworks/native/cmds/installd/tests/
installd_utils_test.cpp 325 char pkgname[pkgnameSize + 1]; local
326 memset(pkgname, 'a', pkgnameSize);
327 pkgname[1] = '.';
328 pkgname[pkgnameSize] = '\0';
330 EXPECT_EQ(0, create_pkg_path(path, pkgname, "", 0))
336 EXPECT_STREQ(pkgname, path + offset)
  /libcore/ojluni/src/main/java/java/net/
URLClassLoader.java 390 private Package getAndVerifyPackage(String pkgname,
392 Package pkg = getPackage(pkgname);
399 "sealing violation: package " + pkgname + " is sealed");
404 if ((man != null) && isSealed(pkgname, man)) {
406 "sealing violation: can't seal package " + pkgname +
416 private void definePackageInternal(String pkgname, Manifest man, URL url)
418 if (getAndVerifyPackage(pkgname, man, url) == null) {
421 definePackage(pkgname, man, url);
423 definePackage(pkgname, null, null, null, null, null, null, null);
428 if (getAndVerifyPackage(pkgname, man, url) == null)
447 String pkgname = name.substring(0, i); local
    [all...]
  /packages/apps/Settings/src/com/android/settings/notification/
NotificationStation.java 79 public CharSequence pkgname; field in class:NotificationStation.HistoricalNotificationInfo
289 info.pkgname = loadPackageName(info.pkg);
592 ((TextView) row.findViewById(R.id.pkgname)).setText(mInfo.pkgname);
  /frameworks/base/core/java/com/android/server/
SystemConfig.java 439 String pkgname = parser.getAttributeValue(null, "package"); local
440 if (pkgname == null) {
444 mAllowInPowerSaveExceptIdle.add(pkgname);
450 String pkgname = parser.getAttributeValue(null, "package"); local
451 if (pkgname == null) {
455 mAllowInPowerSave.add(pkgname);
461 String pkgname = parser.getAttributeValue(null, "package"); local
462 if (pkgname == null) {
466 mAllowInDataUsageSave.add(pkgname);
472 String pkgname = parser.getAttributeValue(null, "package") local
494 String pkgname = parser.getAttributeValue(null, "package"); local
503 String pkgname = parser.getAttributeValue(null, "package"); local
512 String pkgname = parser.getAttributeValue(null, "package"); local
521 String pkgname = parser.getAttributeValue(null, "package"); local
552 String pkgname = parser.getAttributeValue(null, "package"); local
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/link/internal/ld/
lib.go 246 const pkgname = "__.PKGDEF" const
752 if !strings.HasPrefix(arhdr.name, pkgname) {
    [all...]
  /prebuilts/go/linux-x86/src/cmd/link/internal/ld/
lib.go 246 const pkgname = "__.PKGDEF" const
752 if !strings.HasPrefix(arhdr.name, pkgname) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Python/
import.c 2218 PyObject *pkgname, *modname, *modpath, *modules, *parent; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
import.c 2319 PyObject *pkgname, *modname, *modpath, *modules, *parent; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
import.c 2218 PyObject *pkgname, *modname, *modpath, *modules, *parent; local
    [all...]
  /external/python/cpython2/Python/
import.c 2339 PyObject *pkgname, *modname, *modpath, *modules, *parent; local
    [all...]
  /external/selinux/libselinux/src/android/
android_platform.c 791 const char *pkgname,
821 __FUNCTION__, uid, seinfo, pkgname);
886 if(!pkgname)
890 if (strncasecmp(pkgname, cur->name.str, cur->name.len-1))
893 if (strcasecmp(pkgname, cur->name.str))
970 __FUNCTION__, uid, seinfo, pkgname);
984 const char *pkgname,
1005 rc = seapp_context_lookup(SEAPP_TYPE, uid, 0, seinfo, pkgname, NULL, ctx);
1057 const char *pkgname)
1075 rc = seapp_context_lookup(SEAPP_DOMAIN, uid, isSystemServer, seinfo, pkgname, NULL, ctx)
1227 char *pkgname = NULL, *end = NULL; local
    [all...]
  /frameworks/native/cmds/installd/
InstalldNativeService.cpp 354 const char* pkgname = packageName.c_str(); local
369 auto path = create_data_user_ce_package_path(uuid_, userId, pkgname);
400 auto path = create_data_user_de_package_path(uuid_, userId, pkgname);
422 create_primary_current_profile_package_dir_path(userId, pkgname);
427 const std::string profile_file = create_current_profile_path(userId, pkgname,
434 create_primary_reference_profile_package_dir_path(pkgname);
455 const char* pkgname = packageName.c_str(); local
462 auto ce_path = create_data_user_ce_package_path(uuid_, userId, pkgname);
463 auto de_path = create_data_user_de_package_path(uuid_, userId, pkgname);
515 const char* pkgname = packageName.c_str() local
595 const char* pkgname = packageName.c_str(); local
1416 const char* pkgname = packageNames[i].c_str(); local
1802 const char* pkgname = packageName.c_str(); local
1844 const char* pkgname = packageName ? packageName->c_str() : "*"; local
1907 const char* pkgname = packageName.c_str(); local
    [all...]
  /prebuilts/tools/common/m2/repository/com/sun/istack/istack-commons-tools/2.21/
istack-commons-tools-2.21.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.osgi_3.6.2.R36x_v20110210.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/org.eclipse.osgi/3.9.0.v20130529-1710/
org.eclipse.osgi-3.9.0.v20130529-1710.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.osgi_3.9.0.v20130529-1710.jar 
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.osgi_3.10.100.v20150529-1857.jar 
  /development/samples/ControllerSample/libs/
android-support-v4.jar 
  /development/samples/training/ContactsList/libs/
android-support-v4.jar 
  /development/samples/training/EffectiveNavigation/libs/
android-support-v4.jar 
  /development/samples/training/InteractiveChart/libs/
android-support-v4.jar 
  /development/samples/training/NavigationDrawer/libs/
android-support-v4.jar 
  /external/robolectric/v1/lib/main/
android-support-v4.jar 

Completed in 380 milliseconds

1 2