Searched defs:packageName (Results 1 - 25 of 117) sorted by relevance

12345

/frameworks/base/core/java/android/accounts/
H A DAccountAuthenticatorCache.java53 String packageName, AttributeSet attrs) {
72 return new AuthenticatorDescription(accountType, packageName, labelId, iconId,
52 parseServiceAttributes(Resources res, String packageName, AttributeSet attrs) argument
H A DAuthenticatorDescription.java45 final public String packageName; field in class:AuthenticatorDescription
51 public AuthenticatorDescription(String type, String packageName, int labelId, int iconId, argument
54 if (packageName == null) throw new IllegalArgumentException("packageName cannot be null");
56 this.packageName = packageName;
64 public AuthenticatorDescription(String type, String packageName, int labelId, int iconId, argument
66 this(type, packageName, labelId, iconId, smallIconId, prefId, false);
81 this.packageName = null;
91 this.packageName
[all...]
/frameworks/base/core/java/android/app/backup/
H A DBackupManager.java109 * @param packageName The package name identifying the application to back up.
111 public static void dataChanged(String packageName) { argument
115 sService.dataChanged(packageName);
H A DFullBackup.java62 static public native int backupToTar(String packageName, String domain, argument
H A DRestoreSession.java132 * @param packageName The name of the package whose data to restore. If this is
138 public int restorePackage(String packageName, RestoreObserver observer) { argument
146 err = mBinder.restorePackage(packageName, mObserver);
/frameworks/base/core/java/android/content/pm/
H A DPackageInfoLite.java32 public String packageName; field in class:PackageInfoLite
52 + " " + packageName + "}";
60 dest.writeString(packageName);
84 packageName = source.readString();
H A DVerifierInfo.java32 public final String packageName; field in class:VerifierInfo
40 * @param packageName the package name in Java-style. Must not be {@code
46 public VerifierInfo(String packageName, PublicKey publicKey) { argument
47 if (packageName == null || packageName.length() == 0) {
48 throw new IllegalArgumentException("packageName must not be null or empty");
53 this.packageName = packageName;
58 packageName = source.readString();
69 dest.writeString(packageName);
[all...]
H A DPackageStats.java28 public String packageName; field in class:PackageStats
81 sb.append(" packageName=");
82 sb.append(packageName);
103 packageName = pkgName;
107 packageName = source.readString();
119 packageName = pStats.packageName;
135 dest.writeString(packageName);
H A DPackageInfo.java31 public String packageName; field in class:PackageInfo
227 + " " + packageName + "}";
235 dest.writeString(packageName);
275 packageName = source.readString();
H A DPackageItemInfo.java48 public String packageName; field in class:PackageItemInfo
90 packageName = orig.packageName;
115 CharSequence label = pm.getText(packageName, labelRes, getApplicationInfo());
123 return packageName;
140 Drawable dr = pm.getDrawable(packageName, icon, getApplicationInfo());
176 Drawable d = pm.getDrawable(packageName, logo, getApplicationInfo());
216 return pm.getXml(packageName, resid, getApplicationInfo());
226 pw.println(prefix + "packageName=" + packageName);
[all...]
/frameworks/base/test-runner/src/android/test/
H A DClassPathPackageInfo.java33 private final String packageName; field in class:ClassPathPackageInfo
37 ClassPathPackageInfo(ClassPathPackageInfoSource source, String packageName, argument
40 this.packageName = packageName;
70 return (this.packageName).equals(that.packageName);
77 return packageName.hashCode();
/frameworks/compile/slang/
H A Dslang_rs_reflect_utils.h38 // packageName: the package of the output Java file.
43 const char *packageName; member in struct:slang::RSSlangReflectUtils::BitCodeAccessorContext
55 // Eg, given prefixPath=./foo/bar and packageName=com.x.y, then it returns
58 const char *packageName);
/frameworks/base/core/java/android/content/
H A DSyncAdaptersCache.java47 String packageName, AttributeSet attrs) {
46 parseServiceAttributes(Resources res, String packageName, AttributeSet attrs) argument
/frameworks/base/core/java/android/content/res/
H A DObbInfo.java39 public String packageName; field in class:ObbInfo
66 sb.append(" packageName=");
67 sb.append(packageName);
82 dest.writeString(packageName);
101 packageName = source.readString();
/frameworks/base/libs/androidfw/tests/
H A DObbFile_test.cpp62 const char* packageName = "com.example.obbfile"; local
65 mObbFile->setPackageName(String8(packageName));
83 EXPECT_STREQ(packageName, currentPackageName)
/frameworks/base/services/java/com/android/server/am/
H A DBroadcastFilter.java28 final String packageName; field in class:BroadcastFilter
35 packageName = _packageName;
/frameworks/base/core/java/android/provider/
H A DApplications.java85 * "content://applications/applications/<packageName>/<className>".
97 String packageName = pathSegments.get(1);
99 return new ComponentName(packageName, name);
105 * @param packageName The name of the application's package.
108 * "content://applications/applications/<packageName>/<className>".
110 public static Uri componentNameToUri(String packageName, String className) { argument
113 .appendPath(packageName)
/frameworks/base/core/java/android/test/
H A DAndroidTestCase.java85 * @param packageName The package name of the activity to launch.
90 String packageName, String className, String permission) {
92 intent.setClassName(packageName, className);
89 assertActivityRequiresPermission( String packageName, String className, String permission) argument
/frameworks/base/core/java/android/webkit/
H A DPluginManager.java136 pkgInfo = pm.getPackageInfo(serviceInfo.packageName,
140 Log.w(LOGTAG, "Can't find plugin: " + serviceInfo.packageName);
159 directory = PLUGIN_SYSTEM_LIB + pkgInfo.packageName;
181 Class<?> cls = getPluginClass(serviceInfo.packageName, serviceInfo.name);
192 Log.e(LOGTAG, "Can't find plugin: " + serviceInfo.packageName);
277 if (pluginLib.contains(pkgInfo.packageName)) {
278 return pkgInfo.packageName;
292 Class<?> getPluginClass(String packageName, String className) argument
294 Context pluginContext = mContext.createPackageContext(packageName,
/frameworks/base/core/java/com/android/internal/os/
H A DPkgUsageStats.java31 public String packageName; field in class:PkgUsageStats
50 + " " + packageName + "}";
54 packageName = pkgName;
61 packageName = source.readString();
74 packageName = pStats.packageName;
85 dest.writeString(packageName);
/frameworks/base/core/jni/
H A Dandroid_content_res_ObbScanner.cpp33 jfieldID packageName; member in struct:android::__anon992
55 jstring packageName = env->NewStringUTF(packageNameStr); local
56 if (packageName == NULL) {
61 env->SetObjectField(obbInfo, gObbInfoClassInfo.packageName, packageName);
96 GET_FIELD_ID(gObbInfoClassInfo.packageName, clazz,
97 "packageName", "Ljava/lang/String;");
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFilterFactory.java77 public void addPackage(String packageName) { argument
78 if (mLogVerbose) Log.v(TAG, "Adding package " + packageName);
80 Package pkg = Package.getPackage(packageName);
82 throw new IllegalArgumentException("Unknown filter package '" + packageName + "'!");
85 mPackages.add(packageName);
93 for (String packageName : mPackages) {
95 if (mLogVerbose) Log.v(TAG, "Trying "+packageName + "." + className);
97 filterClass = mCurrentClassLoader.loadClass(packageName + "." + className);
/frameworks/base/services/java/com/android/server/
H A DAttributeCache.java77 public void removePackage(String packageName) { argument
79 mPackages.remove(packageName);
97 public Entry get(String packageName, int resId, int[] styleable) { argument
99 Package pkg = mPackages.get(packageName);
113 context = mContext.createPackageContext(packageName, 0);
121 mPackages.put(packageName, pkg);
/frameworks/base/core/java/com/android/internal/app/
H A DHeavyWeightSwitcherActivity.java105 String packageName, int actionStr, int descriptionStr) {
111 packageName, 0);
104 setIconAndText(int iconId, int actionId, int descriptionId, String packageName, int actionStr, int descriptionStr) argument
/frameworks/base/include/androidfw/
H A DObbFile.h54 void setPackageName(String8 packageName) { argument
55 mPackageName = packageName;

Completed in 1439 milliseconds

12345