Home
last modified time | relevance | path

Searched refs:flg (Results 1 – 25 of 51) sorted by relevance

123

/frameworks/base/tests/componentalias/src/android/content/componentalias/tests/
DComponentAliasMessage.java148 byte flg = 0; in writeToParcel()
149 if (mMessage != null) flg |= 0x1; in writeToParcel()
150 if (mMethodName != null) flg |= 0x2; in writeToParcel()
151 if (mSenderIdentity != null) flg |= 0x4; in writeToParcel()
152 if (mIntent != null) flg |= 0x8; in writeToParcel()
153 if (mComponent != null) flg |= 0x10; in writeToParcel()
154 dest.writeByte(flg); in writeToParcel()
173 byte flg = in.readByte(); in ComponentAliasMessage()
174 String message = (flg & 0x1) == 0 ? null : in.readString(); in ComponentAliasMessage()
175 String methodName = (flg & 0x2) == 0 ? null : in.readString(); in ComponentAliasMessage()
[all …]
/frameworks/base/core/java/android/content/pm/
DShortcutQueryWrapper.java110 byte flg = 0; in writeToParcel()
111 if (mPackage != null) flg |= 0x2; in writeToParcel()
112 if (mShortcutIds != null) flg |= 0x4; in writeToParcel()
113 if (mLocusIds != null) flg |= 0x8; in writeToParcel()
114 if (mActivity != null) flg |= 0x10; in writeToParcel()
115 dest.writeByte(flg); in writeToParcel()
135 byte flg = in.readByte(); in ShortcutQueryWrapper()
137 String pkg = (flg & 0x2) == 0 ? null : in.readString(); in ShortcutQueryWrapper()
139 if ((flg & 0x4) != 0) { in ShortcutQueryWrapper()
144 if ((flg & 0x8) != 0) { in ShortcutQueryWrapper()
[all …]
DApkChecksum.java185 byte flg = 0; in writeToParcel()
186 if (mSplitName != null) flg |= 0x1; in writeToParcel()
187 if (mInstallerPackageName != null) flg |= 0x4; in writeToParcel()
188 if (mInstallerCertificate != null) flg |= 0x8; in writeToParcel()
189 dest.writeByte(flg); in writeToParcel()
207 byte flg = in.readByte(); in ApkChecksum()
208 String splitName = (flg & 0x1) == 0 ? null : in.readString(); in ApkChecksum()
210 String installerPackageName = (flg & 0x4) == 0 ? null : in.readString(); in ApkChecksum()
211 byte[] installerCertificate = (flg & 0x8) == 0 ? null : in.createByteArray(); in ApkChecksum()
DInstantAppRequestInfo.java161 byte flg = 0; in writeToParcel()
162 if (mRequesterInstantApp) flg |= 0x8; in writeToParcel()
163 if (mHostDigestPrefix != null) flg |= 0x2; in writeToParcel()
164 dest.writeByte(flg); in writeToParcel()
182 byte flg = in.readByte(); in InstantAppRequestInfo()
183 boolean requesterInstantApp = (flg & 0x8) != 0; in InstantAppRequestInfo()
185 int[] hostDigestPrefix = (flg & 0x2) == 0 ? null : in.createIntArray(); in InstantAppRequestInfo()
/frameworks/base/core/java/android/window/
DTransitionRequestInfo.java183 byte flg = 0; in writeToParcel()
184 if (mPhysicalDisplayChanged) flg |= 0x20; in writeToParcel()
185 if (mStartAbsBounds != null) flg |= 0x2; in writeToParcel()
186 if (mEndAbsBounds != null) flg |= 0x4; in writeToParcel()
187 dest.writeByte(flg); in writeToParcel()
206 byte flg = in.readByte(); in DisplayChange()
207 boolean physicalDisplayChanged = (flg & 0x20) != 0; in DisplayChange()
209 Rect startAbsBounds = (flg & 0x2) == 0 ? null : (Rect) in.readTypedObject(Rect.CREATOR); in DisplayChange()
210 Rect endAbsBounds = (flg & 0x4) == 0 ? null : (Rect) in.readTypedObject(Rect.CREATOR); in DisplayChange()
384 byte flg = 0; in writeToParcel()
[all …]
DSizeConfigurationBuckets.java341 byte flg = 0; in writeToParcel()
342 if (mScreenLayoutLongSet) flg |= 0x10; in writeToParcel()
343 if (mHorizontal != null) flg |= 0x1; in writeToParcel()
344 if (mVertical != null) flg |= 0x2; in writeToParcel()
345 if (mSmallest != null) flg |= 0x4; in writeToParcel()
346 if (mScreenLayoutSize != null) flg |= 0x8; in writeToParcel()
347 dest.writeByte(flg); in writeToParcel()
365 byte flg = in.readByte(); in SizeConfigurationBuckets()
366 boolean screenLayoutLongSet = (flg & 0x10) != 0; in SizeConfigurationBuckets()
367 int[] horizontal = (flg & 0x1) == 0 ? null : in.createIntArray(); in SizeConfigurationBuckets()
[all …]
DRemoteTransition.java140 byte flg = 0; in writeToParcel()
141 if (mAppThread != null) flg |= 0x2; in writeToParcel()
142 dest.writeByte(flg); in writeToParcel()
158 byte flg = in.readByte(); in RemoteTransition()
160 …IApplicationThread appThread = (flg & 0x2) == 0 ? null : IApplicationThread.Stub.asInterface(in.re… in RemoteTransition()
/frameworks/base/core/java/android/companion/
DAssociationRequest.java564 int flg = 0; in writeToParcel() local
565 if (mSingleDevice) flg |= 0x1; in writeToParcel()
566 if (mSelfManaged) flg |= 0x10; in writeToParcel()
567 if (mForceConfirmation) flg |= 0x20; in writeToParcel()
568 if (mSkipPrompt) flg |= 0x400; in writeToParcel()
569 if (mDeviceProfile != null) flg |= 0x4; in writeToParcel()
570 if (mDisplayName != null) flg |= 0x8; in writeToParcel()
571 if (mPackageName != null) flg |= 0x40; in writeToParcel()
572 if (mDeviceProfilePrivilegesDescription != null) flg |= 0x100; in writeToParcel()
573 dest.writeInt(flg); in writeToParcel()
[all …]
/frameworks/base/core/java/android/permission/
DPermissionGroupUsage.java241 int flg = 0; in writeToParcel() local
242 if (mActive) flg |= 0x10; in writeToParcel()
243 if (mPhoneCall) flg |= 0x20; in writeToParcel()
244 if (mAttributionTag != null) flg |= 0x40; in writeToParcel()
245 if (mAttributionLabel != null) flg |= 0x80; in writeToParcel()
246 if (mProxyLabel != null) flg |= 0x100; in writeToParcel()
247 dest.writeInt(flg); in writeToParcel()
268 int flg = in.readInt(); in PermissionGroupUsage() local
269 boolean active = (flg & 0x10) != 0; in PermissionGroupUsage()
270 boolean phoneCall = (flg & 0x20) != 0; in PermissionGroupUsage()
[all …]
/frameworks/base/core/java/android/service/displayhash/
DDisplayHashParams.java166 byte flg = 0; in writeToParcel()
167 if (mGrayscaleBuffer) flg |= 0x2; in writeToParcel()
168 if (mBufferSize != null) flg |= 0x1; in writeToParcel()
169 dest.writeByte(flg); in writeToParcel()
184 byte flg = in.readByte(); in DisplayHashParams()
185 boolean grayscaleBuffer = (flg & 0x2) != 0; in DisplayHashParams()
186 Size bufferSize = (flg & 0x1) == 0 ? null : (Size) in.readSize(); in DisplayHashParams()
/frameworks/base/core/java/android/view/
DScrollCaptureResponse.java200 byte flg = 0; in writeToParcel()
201 if (mConnection != null) flg |= 0x2; in writeToParcel()
202 if (mWindowBounds != null) flg |= 0x4; in writeToParcel()
203 if (mBoundsInWindow != null) flg |= 0x8; in writeToParcel()
204 if (mWindowTitle != null) flg |= 0x10; in writeToParcel()
205 if (mPackageName != null) flg |= 0x20; in writeToParcel()
206 dest.writeByte(flg); in writeToParcel()
227 byte flg = in.readByte(); in ScrollCaptureResponse()
229 …IScrollCaptureConnection connection = (flg & 0x2) == 0 ? null : IScrollCaptureConnection.Stub.asIn… in ScrollCaptureResponse()
230 Rect windowBounds = (flg & 0x4) == 0 ? null : (Rect) in.readTypedObject(Rect.CREATOR); in ScrollCaptureResponse()
[all …]
/frameworks/base/core/java/android/content/om/
DOverlayIdentifier.java153 byte flg = 0; in writeToParcel()
154 if (mPackageName != null) flg |= 0x1; in writeToParcel()
155 if (mOverlayName != null) flg |= 0x2; in writeToParcel()
156 dest.writeByte(flg); in writeToParcel()
172 byte flg = in.readByte(); in OverlayIdentifier()
173 String packageName = (flg & 0x1) == 0 ? null : in.readString(); in OverlayIdentifier()
174 String overlayName = (flg & 0x2) == 0 ? null : in.readString(); in OverlayIdentifier()
/frameworks/base/services/core/java/com/android/server/pm/pkg/component/
DParsedIntentInfoImpl.java118 byte flg = 0; in writeToParcel()
119 if (mHasDefault) flg |= 0x1; in writeToParcel()
120 if (mNonLocalizedLabel != null) flg |= 0x4; in writeToParcel()
121 dest.writeByte(flg); in writeToParcel()
139 byte flg = in.readByte(); in ParsedIntentInfoImpl()
140 boolean hasDefault = (flg & 0x1) != 0; in ParsedIntentInfoImpl()
142 … CharSequence nonLocalizedLabel = (flg & 0x4) == 0 ? null : (CharSequence) in.readCharSequence(); in ParsedIntentInfoImpl()
/frameworks/base/services/tests/PackageManagerServiceTests/unit/src/com/android/server/pm/test/parsing/parcelling/java/
DTestSuperClass.java67 byte flg = 0; in writeToParcel()
68 if (superString != null) flg |= 0x1; in writeToParcel()
69 dest.writeByte(flg); in writeToParcel()
84 byte flg = in.readByte(); in TestSuperClass()
85 String _superString = (flg & 0x1) == 0 ? null : in.readString(); in TestSuperClass()
/frameworks/base/core/java/android/service/autofill/
DFillRequest.java439 byte flg = 0; in writeToParcel()
440 if (mClientState != null) flg |= 0x4; in writeToParcel()
441 if (mInlineSuggestionsRequest != null) flg |= 0x10; in writeToParcel()
442 if (mDelayedFillIntentSender != null) flg |= 0x20; in writeToParcel()
443 dest.writeByte(flg); in writeToParcel()
463 byte flg = in.readByte(); in FillRequest()
467 Bundle clientState = (flg & 0x4) == 0 ? null : in.readBundle(); in FillRequest()
469 …InlineSuggestionsRequest inlineSuggestionsRequest = (flg & 0x10) == 0 ? null : (InlineSuggestionsR… in FillRequest()
470 …IntentSender delayedFillIntentSender = (flg & 0x20) == 0 ? null : (IntentSender) in.readTypedObjec… in FillRequest()
/frameworks/base/core/java/android/security/attestationverification/
DAttestationProfile.java236 byte flg = 0; in writeToParcel()
237 if (mPackageName != null) flg |= 0x2; in writeToParcel()
238 if (mProfileName != null) flg |= 0x4; in writeToParcel()
239 dest.writeByte(flg); in writeToParcel()
256 byte flg = in.readByte(); in AttestationProfile()
258 String packageName = (flg & 0x2) == 0 ? null : in.readString(); in AttestationProfile()
259 String profileName = (flg & 0x4) == 0 ? null : in.readString(); in AttestationProfile()
/frameworks/base/core/java/android/view/translation/
DTranslationRequestValue.java129 byte flg = 0; in writeToParcel()
130 if (mText != null) flg |= 0x1; in writeToParcel()
131 dest.writeByte(flg); in writeToParcel()
146 byte flg = in.readByte(); in TranslationRequestValue()
147 CharSequence text = (flg & 0x1) == 0 ? null : (CharSequence) in.readCharSequence(); in TranslationRequestValue()
DUiTranslationSpec.java143 byte flg = 0; in writeToParcel()
144 if (mShouldPadContentForCompat) flg |= 0x1; in writeToParcel()
145 dest.writeByte(flg); in writeToParcel()
159 byte flg = in.readByte(); in UiTranslationSpec()
160 boolean shouldPadContentForCompat = (flg & 0x1) != 0; in UiTranslationSpec()
/frameworks/base/media/java/android/media/metrics/
DTrackChangeEvent.java283 int flg = 0; in writeToParcel() local
284 if (mContainerMimeType != null) flg |= 0x4; in writeToParcel()
285 if (mSampleMimeType != null) flg |= 0x8; in writeToParcel()
286 if (mCodecName != null) flg |= 0x10; in writeToParcel()
287 if (mLanguage != null) flg |= 0x100; in writeToParcel()
288 if (mLanguageRegion != null) flg |= 0x200; in writeToParcel()
289 dest.writeInt(flg); in writeToParcel()
314 int flg = in.readInt(); in TrackChangeEvent() local
317 String containerMimeType = (flg & 0x4) == 0 ? null : in.readString(); in TrackChangeEvent()
318 String sampleMimeType = (flg & 0x8) == 0 ? null : in.readString(); in TrackChangeEvent()
[all …]
/frameworks/base/core/java/android/content/pm/verify/domain/
DDomainOwner.java148 byte flg = 0; in writeToParcel()
149 if (mOverrideable) flg |= 0x2; in writeToParcel()
150 dest.writeByte(flg); in writeToParcel()
165 byte flg = in.readByte(); in DomainOwner()
166 boolean overrideable = (flg & 0x2) != 0; in DomainOwner()
/frameworks/base/core/java/android/view/inputmethod/
DInlineSuggestionInfo.java310 byte flg = 0; in writeToParcel()
311 if (mPinned) flg |= 0x10; in writeToParcel()
312 if (mAutofillHints != null) flg |= 0x4; in writeToParcel()
313 if (mTooltip != null) flg |= 0x20; in writeToParcel()
314 dest.writeByte(flg); in writeToParcel()
333 byte flg = in.readByte(); in InlineSuggestionInfo()
334 boolean pinned = (flg & 0x10) != 0; in InlineSuggestionInfo()
337 String[] autofillHints = (flg & 0x4) == 0 ? null : in.createStringArray(); in InlineSuggestionInfo()
339 …InlineSuggestion tooltip = (flg & 0x20) == 0 ? null : (InlineSuggestion) in.readTypedObject(Inline… in InlineSuggestionInfo()
/frameworks/base/core/java/android/hardware/display/
DVirtualDisplayConfig.java242 int flg = 0; in writeToParcel() local
243 if (mWindowManagerMirroring) flg |= 0x100; in writeToParcel()
244 if (mSurface != null) flg |= 0x20; in writeToParcel()
245 if (mUniqueId != null) flg |= 0x40; in writeToParcel()
246 dest.writeInt(flg); in writeToParcel()
268 int flg = in.readInt(); in VirtualDisplayConfig() local
269 boolean windowManagerMirroring = (flg & 0x100) != 0; in VirtualDisplayConfig()
275 Surface surface = (flg & 0x20) == 0 ? null : (Surface) in.readTypedObject(Surface.CREATOR); in VirtualDisplayConfig()
276 String uniqueId = (flg & 0x40) == 0 ? null : in.readString(); in VirtualDisplayConfig()
/frameworks/base/core/java/android/view/selectiontoolbar/
DToolbarMenuItem.java303 byte flg = 0; in writeToParcel()
304 if (mContentDescription != null) flg |= 0x4; in writeToParcel()
305 if (mIcon != null) flg |= 0x10; in writeToParcel()
306 if (mTooltipText != null) flg |= 0x20; in writeToParcel()
307 dest.writeByte(flg); in writeToParcel()
328 byte flg = in.readByte(); in ToolbarMenuItem()
331 … CharSequence contentDescription = (flg & 0x4) == 0 ? null : (CharSequence) in.readCharSequence(); in ToolbarMenuItem()
333 Icon icon = (flg & 0x10) == 0 ? null : (Icon) in.readTypedObject(Icon.CREATOR); in ToolbarMenuItem()
334 CharSequence tooltipText = (flg & 0x20) == 0 ? null : (CharSequence) in.readCharSequence(); in ToolbarMenuItem()
/frameworks/base/core/java/android/service/rotationresolver/
DRotationResolutionRequest.java174 byte flg = 0; in writeToParcel()
175 if (mShouldUseCamera) flg |= 0x8; in writeToParcel()
176 dest.writeByte(flg); in writeToParcel()
194 byte flg = in.readByte(); in RotationResolutionRequest()
195 boolean shouldUseCamera = (flg & 0x8) != 0; in RotationResolutionRequest()
/frameworks/base/core/java/android/view/contentcapture/
DDataShareRequest.java147 byte flg = 0; in writeToParcel()
148 if (mLocusId != null) flg |= 0x2; in writeToParcel()
149 dest.writeByte(flg); in writeToParcel()
166 byte flg = in.readByte(); in DataShareRequest()
168 LocusId locusId = (flg & 0x2) == 0 ? null : (LocusId) in.readTypedObject(LocusId.CREATOR); in DataShareRequest()

123