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

12

/frameworks/base/services/core/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.java45 PackageSetting(PackageSetting orig) { argument
46 super(orig);
48 appId = orig.appId;
49 pkg = orig.pkg;
50 sharedUser = orig.sharedUser;
/frameworks/base/core/java/android/content/pm/
H A DFeatureInfo.java60 public FeatureInfo(FeatureInfo orig) { argument
61 name = orig.name;
62 reqGlEsVersion = orig.reqGlEsVersion;
63 flags = orig.flags;
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 DInstrumentationInfo.java83 public InstrumentationInfo(InstrumentationInfo orig) { argument
84 super(orig);
85 targetPackage = orig.targetPackage;
86 sourceDir = orig.sourceDir;
87 publicSourceDir = orig.publicSourceDir;
88 dataDir = orig.dataDir;
89 nativeLibraryDir = orig.nativeLibraryDir;
90 handleProfiling = orig.handleProfiling;
91 functionalTest = orig.functionalTest;
H A DProviderInfo.java103 public ProviderInfo(ProviderInfo orig) { argument
104 super(orig);
105 authority = orig.authority;
106 readPermission = orig.readPermission;
107 writePermission = orig.writePermission;
108 grantUriPermissions = orig.grantUriPermissions;
109 uriPermissionPatterns = orig.uriPermissionPatterns;
110 pathPermissions = orig.pathPermissions;
111 multiprocess = orig.multiprocess;
112 initOrder = orig
[all...]
H A DPackageItemInfo.java101 public PackageItemInfo(PackageItemInfo orig) { argument
102 name = orig.name;
104 packageName = orig.packageName;
105 labelRes = orig.labelRes;
106 nonLocalizedLabel = orig.nonLocalizedLabel;
108 icon = orig.icon;
109 banner = orig.banner;
110 logo = orig.logo;
111 metaData = orig.metaData;
112 showUserIcon = orig
[all...]
H A DPermissionInfo.java172 public PermissionInfo(PermissionInfo orig) { argument
173 super(orig);
174 protectionLevel = orig.protectionLevel;
175 flags = orig.flags;
176 group = orig.group;
177 descriptionRes = orig.descriptionRes;
178 nonLocalizedDescription = orig.nonLocalizedDescription;
H A DUserInfo.java141 public UserInfo(UserInfo orig) { argument
142 name = orig.name;
143 iconPath = orig.iconPath;
144 id = orig.id;
145 flags = orig.flags;
146 serialNumber = orig.serialNumber;
147 creationTime = orig.creationTime;
148 lastLoggedInTime = orig.lastLoggedInTime;
149 partial = orig.partial;
150 profileGroupId = orig
[all...]
H A DResolveInfo.java271 public ResolveInfo(ResolveInfo orig) { argument
272 activityInfo = orig.activityInfo;
273 serviceInfo = orig.serviceInfo;
274 providerInfo = orig.providerInfo;
275 filter = orig.filter;
276 priority = orig.priority;
277 preferredOrder = orig.preferredOrder;
278 match = orig.match;
279 specificIndex = orig.specificIndex;
280 labelRes = orig
[all...]
H A DActivityInfo.java647 public ActivityInfo(ActivityInfo orig) { argument
648 super(orig);
649 theme = orig.theme;
650 launchMode = orig.launchMode;
651 permission = orig.permission;
652 taskAffinity = orig.taskAffinity;
653 targetActivity = orig.targetActivity;
654 flags = orig.flags;
655 screenOrientation = orig.screenOrientation;
656 configChanges = orig
[all...]
/frameworks/av/services/audiopolicy/
H A DAudioPolicyEffects.h94 EffectDesc(const EffectDesc& orig) : argument
95 mName(strdup(orig.mName)),
96 mUuid(orig.mUuid) {
98 for (size_t k = 0; k < orig.mParams.size(); k++) {
99 effect_param_t *origParam = orig.mParams[k];
/frameworks/base/core/java/android/net/
H A DDhcpResults.java70 public void updateFromDhcpRequest(DhcpResults orig) { argument
71 if (orig == null) return;
72 if (gateway == null) gateway = orig.gateway;
74 dnsServers.addAll(orig.dnsServers);
/frameworks/base/graphics/java/android/graphics/drawable/
H A DLevelListDrawable.java173 LevelListState(LevelListState orig, LevelListDrawable owner, Resources res) { argument
174 super(orig, owner, res);
176 if (orig != null) {
178 mLows = orig.mLows;
179 mHighs = orig.mHighs;
H A DTransitionDrawable.java247 TransitionState(TransitionState orig, TransitionDrawable owner, Resources res) { argument
248 super(orig, owner, res);
H A DAnimationDrawable.java369 AnimationState(AnimationState orig, AnimationDrawable owner, argument
371 super(orig, owner, res);
373 if (orig != null) {
374 mDurations = orig.mDurations;
375 mOneShot = orig.mOneShot;
H A DStateListDrawable.java326 StateListState(StateListState orig, StateListDrawable owner, Resources res) { argument
327 super(orig, owner, res);
329 if (orig != null) {
331 mThemeAttrs = orig.mThemeAttrs;
332 mStateSets = orig.mStateSets;
H A DClipDrawable.java361 ClipState(ClipState orig, ClipDrawable owner, Resources res) { argument
362 if (orig != null) {
363 mThemeAttrs = orig.mThemeAttrs;
364 mChangingConfigurations = orig.mChangingConfigurations;
366 mDrawable = orig.mDrawable.getConstantState().newDrawable(res);
368 mDrawable = orig.mDrawable.getConstantState().newDrawable();
371 mDrawable.setLayoutDirection(orig.mDrawable.getLayoutDirection());
372 mDrawable.setBounds(orig.mDrawable.getBounds());
373 mDrawable.setLevel(orig.mDrawable.getLevel());
374 mOrientation = orig
[all...]
H A DScaleDrawable.java367 ScaleState(ScaleState orig, ScaleDrawable owner, Resources res) { argument
368 if (orig != null) {
369 mThemeAttrs = orig.mThemeAttrs;
370 mChangingConfigurations = orig.mChangingConfigurations;
372 mDrawable = orig.mDrawable.getConstantState().newDrawable(res);
374 mDrawable = orig.mDrawable.getConstantState().newDrawable();
377 mDrawable.setLayoutDirection(orig.mDrawable.getLayoutDirection());
378 mDrawable.setBounds(orig.mDrawable.getBounds());
379 mDrawable.setLevel(orig.mDrawable.getLevel());
380 mScaleWidth = orig
[all...]
/frameworks/base/core/java/android/os/
H A DMessage.java139 * @param orig Original message to copy.
142 public static Message obtain(Message orig) { argument
144 m.what = orig.what;
145 m.arg1 = orig.arg1;
146 m.arg2 = orig.arg2;
147 m.obj = orig.obj;
148 m.replyTo = orig.replyTo;
149 m.sendingUid = orig.sendingUid;
150 if (orig.data != null) {
151 m.data = new Bundle(orig
[all...]
H A DWorkSource.java44 * If <var>orig</var> is null, an empty WorkSource is created.
46 public WorkSource(WorkSource orig) { argument
47 if (orig == null) {
51 mNum = orig.mNum;
52 if (orig.mUids != null) {
53 mUids = orig.mUids.clone();
54 mNames = orig.mNames != null ? orig.mNames.clone() : null;
/frameworks/av/media/libstagefright/webm/
H A DWebmElement.cpp193 const sp<ABuffer>& orig)
197 : WebmElement(kMkvSimpleBlock, orig->size() + 4),
201 mRef(orig) {
189 WebmSimpleBlock( int trackNum, int16_t relTimecode, bool key, const sp<ABuffer>& orig) argument

Completed in 644 milliseconds

12