Home
last modified time | relevance | path

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

123

/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.java199 byte flg = 0; in writeToParcel()
200 if (mSplitName != null) flg |= 0x1; in writeToParcel()
201 if (mInstallerPackageName != null) flg |= 0x4; in writeToParcel()
202 if (mInstallerCertificate != null) flg |= 0x8; in writeToParcel()
203 dest.writeByte(flg); in writeToParcel()
221 byte flg = in.readByte(); in ApkChecksum()
222 String splitName = (flg & 0x1) == 0 ? null : in.readString(); in ApkChecksum()
224 String installerPackageName = (flg & 0x4) == 0 ? null : in.readString(); in ApkChecksum()
225 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()
DProcessInfo.java157 byte flg = 0; in writeToParcel()
158 if (useEmbeddedDex) flg |= 0x20; in writeToParcel()
159 if (deniedPermissions != null) flg |= 0x2; in writeToParcel()
160 dest.writeByte(flg); in writeToParcel()
179 byte flg = in.readByte(); in ProcessInfo()
180 boolean _useEmbeddedDex = (flg & 0x20) != 0; in ProcessInfo()
/frameworks/base/core/java/android/companion/
DAssociationRequest.java587 int flg = 0; in writeToParcel() local
588 if (mSingleDevice) flg |= 0x1; in writeToParcel()
589 if (mSelfManaged) flg |= 0x2; in writeToParcel()
590 if (mForceConfirmation) flg |= 0x4; in writeToParcel()
591 if (mSkipPrompt) flg |= 0x8; in writeToParcel()
592 if (mDeviceProfile != null) flg |= 0x10; in writeToParcel()
593 if (mDisplayName != null) flg |= 0x20; in writeToParcel()
594 if (mAssociatedDevice != null) flg |= 0x40; in writeToParcel()
595 if (mPackageName != null) flg |= 0x80; in writeToParcel()
596 if (mDeviceProfilePrivilegesDescription != null) flg |= 0x100; in writeToParcel()
[all …]
DWifiDeviceFilter.java155 byte flg = 0; in writeToParcel()
156 if (mNamePattern != null) flg |= 0x1; in writeToParcel()
157 if (mBssid != null) flg |= 0x2; in writeToParcel()
158 dest.writeByte(flg); in writeToParcel()
171 byte flg = in.readByte(); in WifiDeviceFilter()
173 MacAddress bssid = (flg & 0x2) == 0 ? null : in.readTypedObject(MacAddress.CREATOR); in WifiDeviceFilter()
/frameworks/base/core/java/android/window/
DTransitionRequestInfo.java233 byte flg = 0; in writeToParcel()
234 if (mPhysicalDisplayChanged) flg |= 0x20; in writeToParcel()
235 if (mStartAbsBounds != null) flg |= 0x2; in writeToParcel()
236 if (mEndAbsBounds != null) flg |= 0x4; in writeToParcel()
237 dest.writeByte(flg); in writeToParcel()
256 byte flg = in.readByte(); in DisplayChange()
257 boolean physicalDisplayChanged = (flg & 0x20) != 0; in DisplayChange()
259 Rect startAbsBounds = (flg & 0x2) == 0 ? null : (Rect) in.readTypedObject(Rect.CREATOR); in DisplayChange()
260 Rect endAbsBounds = (flg & 0x4) == 0 ? null : (Rect) in.readTypedObject(Rect.CREATOR); in DisplayChange()
485 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.java155 byte flg = 0; in writeToParcel()
156 if (mAppThread != null) flg |= 0x2; in writeToParcel()
157 if (mDebugName != null) flg |= 0x4; in writeToParcel()
158 dest.writeByte(flg); in writeToParcel()
173 byte flg = in.readByte(); in RemoteTransition()
175 …IApplicationThread appThread = (flg & 0x2) == 0 ? null : IApplicationThread.Stub.asInterface(in.re… in RemoteTransition()
176 String debugName = (flg & 0x4) == 0 ? null : in.readString(); in RemoteTransition()
/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/permission/
DPermissionGroupUsage.java256 int flg = 0; in writeToParcel() local
257 if (mActive) flg |= 0x10; in writeToParcel()
258 if (mPhoneCall) flg |= 0x20; in writeToParcel()
259 if (mAttributionTag != null) flg |= 0x40; in writeToParcel()
260 if (mAttributionLabel != null) flg |= 0x80; in writeToParcel()
261 if (mProxyLabel != null) flg |= 0x100; in writeToParcel()
262 dest.writeInt(flg); in writeToParcel()
284 int flg = in.readInt(); in PermissionGroupUsage() local
285 boolean active = (flg & 0x10) != 0; in PermissionGroupUsage()
286 boolean phoneCall = (flg & 0x20) != 0; in PermissionGroupUsage()
[all …]
/frameworks/base/core/java/android/content/om/
DOverlayIdentifier.java184 byte flg = 0; in writeToParcel()
185 if (mPackageName != null) flg |= 0x1; in writeToParcel()
186 if (mOverlayName != null) flg |= 0x2; in writeToParcel()
187 dest.writeByte(flg); in writeToParcel()
206 byte flg = in.readByte(); in OverlayIdentifier()
207 String packageName = (flg & 0x1) == 0 ? null : in.readString(); in OverlayIdentifier()
208 String overlayName = (flg & 0x2) == 0 ? null : in.readString(); in OverlayIdentifier()
/frameworks/base/core/java/com/android/internal/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/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/service/autofill/
DConvertCredentialResponse.java101 byte flg = 0; in writeToParcel()
102 if (mClientState != null) flg |= 0x2; in writeToParcel()
103 dest.writeByte(flg); in writeToParcel()
119 byte flg = in.readByte(); in ConvertCredentialResponse()
121 Bundle clientState = (flg & 0x2) == 0 ? null : in.readBundle(); in ConvertCredentialResponse()
DFillRequest.java512 byte flg = 0; in writeToParcel()
513 if (mClientState != null) flg |= 0x8; in writeToParcel()
514 if (mInlineSuggestionsRequest != null) flg |= 0x20; in writeToParcel()
515 if (mDelayedFillIntentSender != null) flg |= 0x40; in writeToParcel()
516 dest.writeByte(flg); in writeToParcel()
537 byte flg = in.readByte(); in FillRequest()
543 Bundle clientState = (flg & 0x8) == 0 ? null : in.readBundle(); in FillRequest()
545 …InlineSuggestionsRequest inlineSuggestionsRequest = (flg & 0x20) == 0 ? null : (InlineSuggestionsR… in FillRequest()
546 …IntentSender delayedFillIntentSender = (flg & 0x40) == 0 ? null : (IntentSender) in.readTypedObjec… in FillRequest()
/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/core/java/android/app/
DSyncNotedAppOp.java212 byte flg = 0; in writeToParcel()
213 if (mAttributionTag != null) flg |= 0x4; in writeToParcel()
214 if (mPackageName != null) flg |= 0x8; in writeToParcel()
215 dest.writeByte(flg); in writeToParcel()
233 byte flg = in.readByte(); in SyncNotedAppOp()
236 String attributionTag = (flg & 0x4) == 0 ? null : in.readString(); in SyncNotedAppOp()
237 String packageName = (flg & 0x8) == 0 ? null : in.readString(); in SyncNotedAppOp()
/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/app/ondeviceintelligence/
DFeature.java135 byte flg = 0; in writeToParcel()
136 if (mName != null) flg |= 0x2; in writeToParcel()
137 if (mModelName != null) flg |= 0x4; in writeToParcel()
138 dest.writeByte(flg); in writeToParcel()
155 byte flg = in.readByte(); in Feature()
157 String name = (flg & 0x2) == 0 ? null : in.readString(); in Feature()
158 String modelName = (flg & 0x4) == 0 ? null : in.readString(); in Feature()
/frameworks/base/core/java/android/hardware/fingerprint/
DFingerprintAuthenticateOptions.java292 byte flg = 0; in writeToParcel()
293 if (mIgnoreEnrollmentState) flg |= 0x4; in writeToParcel()
294 if (mAttributionTag != null) flg |= 0x20; in writeToParcel()
295 if (mVendorReason != null) flg |= 0x40; in writeToParcel()
296 dest.writeByte(flg); in writeToParcel()
316 byte flg = in.readByte(); in FingerprintAuthenticateOptions()
317 boolean ignoreEnrollmentState = (flg & 0x4) != 0; in FingerprintAuthenticateOptions()
322 String attributionTag = (flg & 0x20) == 0 ? null : in.readString(); in FingerprintAuthenticateOptions()
323 …AuthenticateReason.Vendor vendorReason = (flg & 0x40) == 0 ? null : (AuthenticateReason.Vendor) in… in FingerprintAuthenticateOptions()

123