Home | History | Annotate | Download | only in packageinstaller

Lines Matching full:mflags

106     private int mFlags;
166 mFlags = in.readInt();
179 dest.writeInt(mFlags);
430 | ((mFlags & 0xffff) << 16);
452 if (((mFlags & FLAG_FILE_URI) != 0)
453 && ((mFlags & FLAG_VERIFY_APPS_ENABLED) != 0)
545 * Sets or clears the specified flag in the {@link #mFlags} field.
549 mFlags |= flag;
551 mFlags &= ~flag;
556 * Checks whether the specified flag is set in the {@link #mFlags} field.
559 return (mFlags & flag) == flag;