Searched defs:orig (Results 1 - 25 of 34) sorted by relevance

12

/frameworks/base/services/java/com/android/server/pm/
H A DPackageSignatures.java34 PackageSignatures(PackageSignatures orig) { argument
35 if (orig != null && orig.mSignatures != null) {
36 mSignatures = orig.mSignatures.clone();
H A DPackageSetting.java41 PackageSetting(PackageSetting orig) { argument
42 super(orig);
44 appId = orig.appId;
45 pkg = orig.pkg;
46 sharedUser = orig.sharedUser;
/frameworks/base/core/java/android/content/pm/
H A DFeatureInfo.java61 public FeatureInfo(FeatureInfo orig) { argument
62 name = orig.name;
63 reqGlEsVersion = orig.reqGlEsVersion;
64 flags = orig.flags;
H A DInstrumentationInfo.java68 public InstrumentationInfo(InstrumentationInfo orig) { argument
69 super(orig);
70 targetPackage = orig.targetPackage;
71 sourceDir = orig.sourceDir;
72 publicSourceDir = orig.publicSourceDir;
73 dataDir = orig.dataDir;
74 nativeLibraryDir = orig.nativeLibraryDir;
75 handleProfiling = orig.handleProfiling;
76 functionalTest = orig.functionalTest;
H A DPermissionGroupInfo.java64 public PermissionGroupInfo(PermissionGroupInfo orig) { argument
65 super(orig);
66 descriptionRes = orig.descriptionRes;
67 nonLocalizedDescription = orig.nonLocalizedDescription;
68 flags = orig.flags;
69 priority = orig.priority;
H A DServiceInfo.java70 public ServiceInfo(ServiceInfo orig) { argument
71 super(orig);
72 permission = orig.permission;
73 flags = orig.flags;
H A DComponentInfo.java69 public ComponentInfo(ComponentInfo orig) { argument
70 super(orig);
71 applicationInfo = orig.applicationInfo;
72 processName = orig.processName;
73 descriptionRes = orig.descriptionRes;
74 enabled = orig.enabled;
75 exported = orig.exported;
H A DConfigurationInfo.java86 public ConfigurationInfo(ConfigurationInfo orig) { argument
87 reqTouchScreen = orig.reqTouchScreen;
88 reqKeyboardType = orig.reqKeyboardType;
89 reqNavigation = orig.reqNavigation;
90 reqInputFeatures = orig.reqInputFeatures;
91 reqGlEsVersion = orig.reqGlEsVersion;
H A DProviderInfo.java102 public ProviderInfo(ProviderInfo orig) { argument
103 super(orig);
104 authority = orig.authority;
105 readPermission = orig.readPermission;
106 writePermission = orig.writePermission;
107 grantUriPermissions = orig.grantUriPermissions;
108 uriPermissionPatterns = orig.uriPermissionPatterns;
109 pathPermissions = orig.pathPermissions;
110 multiprocess = orig.multiprocess;
111 initOrder = orig
[all...]
H A DPackageItemInfo.java87 public PackageItemInfo(PackageItemInfo orig) { argument
88 name = orig.name;
90 packageName = orig.packageName;
91 labelRes = orig.labelRes;
92 nonLocalizedLabel = orig.nonLocalizedLabel;
94 icon = orig.icon;
95 logo = orig.logo;
96 metaData = orig.metaData;
H A DPermissionInfo.java162 public PermissionInfo(PermissionInfo orig) { argument
163 super(orig);
164 protectionLevel = orig.protectionLevel;
165 flags = orig.flags;
166 group = orig.group;
167 descriptionRes = orig.descriptionRes;
168 nonLocalizedDescription = orig.nonLocalizedDescription;
H A DResolveInfo.java233 public ResolveInfo(ResolveInfo orig) { argument
234 activityInfo = orig.activityInfo;
235 serviceInfo = orig.serviceInfo;
236 filter = orig.filter;
237 priority = orig.priority;
238 preferredOrder = orig.preferredOrder;
239 match = orig.match;
240 specificIndex = orig.specificIndex;
241 labelRes = orig.labelRes;
242 nonLocalizedLabel = orig
[all...]
H A DUserInfo.java103 public UserInfo(UserInfo orig) { argument
104 name = orig.name;
105 iconPath = orig.iconPath;
106 id = orig.id;
107 flags = orig.flags;
108 serialNumber = orig.serialNumber;
109 creationTime = orig.creationTime;
110 lastLoggedInTime = orig.lastLoggedInTime;
111 partial = orig.partial;
/frameworks/base/core/java/android/net/
H A DDhcpInfoInternal.java127 public void updateFromDhcpRequest(DhcpInfoInternal orig) { argument
128 if (orig == null) return;
131 dns1 = orig.dns1;
135 dns2 = orig.dns2;
139 for (RouteInfo route : orig.getRoutes()) {
/frameworks/base/graphics/java/android/graphics/drawable/
H A DMipmapDrawable.java192 MipmapContainerState(MipmapContainerState orig, MipmapDrawable owner, Resources res) { argument
193 super(orig, owner, res);
195 if (orig != null) {
196 mMipmapHeights = orig.mMipmapHeights;
H A DLevelListDrawable.java160 LevelListState(LevelListState orig, LevelListDrawable owner, Resources res) { argument
161 super(orig, owner, res);
163 if (orig != null) {
164 mLows = orig.mLows;
165 mHighs = orig.mHighs;
H A DStateListDrawable.java277 StateListState(StateListState orig, StateListDrawable owner, Resources res) { argument
278 super(orig, owner, res);
280 if (orig != null) {
281 mStateSets = orig.mStateSets;
H A DTransitionDrawable.java247 TransitionState(TransitionState orig, TransitionDrawable owner, argument
249 super(orig, owner, res);
H A DAnimationDrawable.java317 AnimationState(AnimationState orig, AnimationDrawable owner, argument
319 super(orig, owner, res);
321 if (orig != null) {
322 mDurations = orig.mDurations;
323 mOneShot = orig.mOneShot;
H A DClipDrawable.java258 ClipState(ClipState orig, ClipDrawable owner, Resources res) { argument
259 if (orig != null) {
261 mDrawable = orig.mDrawable.getConstantState().newDrawable(res);
263 mDrawable = orig.mDrawable.getConstantState().newDrawable();
266 mOrientation = orig.mOrientation;
267 mGravity = orig.mGravity;
H A DInsetDrawable.java271 InsetState(InsetState orig, InsetDrawable owner, Resources res) { argument
272 if (orig != null) {
274 mDrawable = orig.mDrawable.getConstantState().newDrawable(res);
276 mDrawable = orig.mDrawable.getConstantState().newDrawable();
279 mInsetLeft = orig.mInsetLeft;
280 mInsetTop = orig.mInsetTop;
281 mInsetRight = orig.mInsetRight;
282 mInsetBottom = orig.mInsetBottom;
/frameworks/base/core/java/android/os/
H A DWorkSource.java40 * If <var>orig</var> is null, an empty WorkSource is created.
42 public WorkSource(WorkSource orig) { argument
43 if (orig == null) {
47 mNum = orig.mNum;
48 if (orig.mUids != null) {
49 mUids = orig.mUids.clone();
H A DMessage.java122 * @param orig Original message to copy.
125 public static Message obtain(Message orig) { argument
127 m.what = orig.what;
128 m.arg1 = orig.arg1;
129 m.arg2 = orig.arg2;
130 m.obj = orig.obj;
131 m.replyTo = orig.replyTo;
132 if (orig.data != null) {
133 m.data = new Bundle(orig.data);
135 m.target = orig
[all...]
H A DParcelFileDescriptor.java134 public static ParcelFileDescriptor dup(FileDescriptor orig) throws IOException { argument
135 FileDescriptor fd = Parcel.dupFileDescriptor(orig);
/frameworks/av/services/audioflinger/
H A DAudioPolicyService.h238 EffectDesc(const EffectDesc& orig) : argument
239 mName(strdup(orig.mName)),
240 mUuid(orig.mUuid) {
242 for (size_t k = 0; k < orig.mParams.size(); k++) {
243 effect_param_t *origParam = orig.mParams[k];

Completed in 243 milliseconds

12