Home
last modified time | relevance | path

Searched refs:sForInternedString (Results 1 – 7 of 7) sorted by relevance

/aosp14/frameworks/base/services/core/java/com/android/server/pm/pkg/component/
H A DParsedInstrumentationImpl.java19 import static com.android.server.pm.parsing.pkg.PackageImpl.sForInternedString;
78 sForInternedString.parcel(this.targetPackage, dest, flags); in writeToParcel()
79 sForInternedString.parcel(this.targetProcesses, dest, flags); in writeToParcel()
86 this.targetPackage = sForInternedString.unparcel(in); in ParsedInstrumentationImpl()
87 this.targetProcesses = sForInternedString.unparcel(in); in ParsedInstrumentationImpl()
H A DParsedServiceImpl.java19 import static com.android.server.pm.parsing.pkg.PackageImpl.sForInternedString;
74 sForInternedString.parcel(this.permission, dest, flags); in writeToParcel()
83 this.permission = sForInternedString.unparcel(in); in ParsedServiceImpl()
H A DParsedProviderImpl.java19 import static com.android.server.pm.parsing.pkg.PackageImpl.sForInternedString;
128 sForInternedString.parcel(this.readPermission, dest, flags); in writeToParcel()
129 sForInternedString.parcel(this.writePermission, dest, flags); in writeToParcel()
145 this.readPermission = sForInternedString.unparcel(in); in ParsedProviderImpl()
146 this.writePermission = sForInternedString.unparcel(in); in ParsedProviderImpl()
H A DParsedMainComponentImpl.java19 import static com.android.server.pm.parsing.pkg.PackageImpl.sForInternedString;
94 sForInternedString.parcel(this.processName, dest, flags); in writeToParcel()
105 this.processName = sForInternedString.unparcel(in); in ParsedMainComponentImpl()
H A DParsedComponentImpl.java19 import static com.android.server.pm.parsing.pkg.PackageImpl.sForInternedString;
168 sForInternedString.parcel(this.packageName, dest, flags); in writeToParcel()
187 this.packageName = sForInternedString.unparcel(in); in ParsedComponentImpl()
H A DParsedActivityImpl.java25 import static com.android.server.pm.parsing.pkg.PackageImpl.sForInternedString;
299 sForInternedString.parcel(this.permission, dest, flags); in writeToParcel()
338 this.permission = sForInternedString.unparcel(in); in ParsedActivityImpl()
/aosp14/frameworks/base/services/core/java/com/android/server/pm/parsing/pkg/
H A DPackageImpl.java3072 sForInternedString.parcel(this.versionName, dest, flags);
3075 sForInternedString.parcel(this.packageName, dest, flags);
3142 sForInternedString.parcel(this.volumeUuid, dest, flags);
3221 this.versionName = sForInternedString.unparcel(in);
3224 this.packageName = sForInternedString.unparcel(in);
3228 this.overlayTarget = sForInternedString.unparcel(in);
3233 this.sdkLibraryName = sForInternedString.unparcel(in);
3268 this.sharedUserId = sForInternedString.unparcel(in);
3300 this.volumeUuid = sForInternedString.unparcel(in);
3360 this.primaryCpuAbi = sForInternedString.unparcel(in);
[all …]