HomeSort by relevance Sort by last modified time
    Searched defs:mMask (Results 1 - 25 of 41) sorted by null

1 2

  /packages/apps/SecureElement/src/com/android/se/security/
ApduFilter.java 45 protected byte[] mMask;
58 mMask = mask;
66 mMask = Util.getMid(apduAndMask, 4, 4);
73 apduFilter.setMask(mMask.clone());
90 return mMask;
98 mMask = mask;
103 return Util.mergeBytes(mApdu, mMask);
111 + ByteArrayConverter.byteArrayToHexString(mMask)
  /hardware/qcom/gps/msm8960/core/
LocApiBase.h 73 LOC_API_ADAPTER_EVENT_MASK_T mMask;
  /hardware/qcom/gps/msm8084/core/
LocApiBase.h 83 LOC_API_ADAPTER_EVENT_MASK_T mMask;
LocApiBase.cpp 109 LOC_API_ADAPTER_EVENT_MASK_T mMask;
112 LocMsg(), mLocApi(locApi), mMask(mask)
117 mLocApi->open(mMask);
121 __func__, __LINE__, mMask);
131 mExcludedMask(excludedMask), mMsgTask(msgTask), mMask(0), mContext(context)
  /hardware/qcom/gps/core/
LocApiBase.h 91 LOC_API_ADAPTER_EVENT_MASK_T mMask;
LocApiBase.cpp 109 LOC_API_ADAPTER_EVENT_MASK_T mMask;
112 LocMsg(), mLocApi(locApi), mMask(mask)
117 mLocApi->open(mMask);
121 __func__, __LINE__, mMask);
132 mMask(0), mSupportedMsg(0), mContext(context)
  /hardware/qcom/gps/msm8909/core/
LocApiBase.h 91 LOC_API_ADAPTER_EVENT_MASK_T mMask;
LocApiBase.cpp 109 LOC_API_ADAPTER_EVENT_MASK_T mMask;
112 LocMsg(), mLocApi(locApi), mMask(mask)
117 mLocApi->open(mMask);
121 __func__, __LINE__, mMask);
132 mMask(0), mSupportedMsg(0), mContext(context)
  /hardware/qcom/gps/msm8994/core/
LocApiBase.h 91 LOC_API_ADAPTER_EVENT_MASK_T mMask;
LocApiBase.cpp 109 LOC_API_ADAPTER_EVENT_MASK_T mMask;
112 LocMsg(), mLocApi(locApi), mMask(mask)
117 mLocApi->open(mMask);
121 __func__, __LINE__, mMask);
132 mMask(0), mSupportedMsg(0), mContext(context)
  /hardware/qcom/gps/msm8996/core/
LocApiBase.h 91 LOC_API_ADAPTER_EVENT_MASK_T mMask;
LocApiBase.cpp 109 LOC_API_ADAPTER_EVENT_MASK_T mMask;
112 LocMsg(), mLocApi(locApi), mMask(mask)
117 mLocApi->open(mMask);
121 __func__, __LINE__, mMask);
132 mMask(0), mSupportedMsg(0), mContext(context)
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
Config.java 54 long mMask;
59 mMask = mask;
120 if (supported && !isProfileDisabled(ctx, config.mMask)) {
135 return config.mMask;
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
AdaptiveIconMaskTest.java 51 private Path mMask = new Path();
65 mMask = mDrawable.getIconMask();
78 assertNotNull(mMask);
82 mMask.computeBounds(bounds, true);
95 assertNotNull(mMask);
100 maskRegion.setPath(mMask, maskRegion);
118 assertNotNull(mMask);
119 assertTrue("Mask is not convex", mMask.isConvex());
132 assertNotNull(mMask);
134 boolean circleMask = isCircle(mMask);
    [all...]
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
ColorSpaceTests.java 48 private Bitmap mMask;
54 mMask = Bitmap.createBitmap(res.getWidth(), res.getHeight(), Bitmap.Config.ALPHA_8);
55 Canvas c = new Canvas(mMask);
155 canvas.drawBitmap(mMask, 0, 0, p);
  /frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
InteractionController.java 73 int mMask;
75 mMask = mask;
80 if ((t.getEventType() & mMask) != 0) {
95 int mMask;
99 mMask = mask;
106 if ((t.getEventType() & mMask) != 0) {
121 int mMask;
123 mMask = mask;
129 if ((t.getEventType() & mMask) != 0) {
131 mMask &= ~t.getEventType()
    [all...]
  /hardware/qcom/gps/msm8909w_3100/core/
LocApiBase.h 94 LOC_API_ADAPTER_EVENT_MASK_T mMask;
LocApiBase.cpp 110 LOC_API_ADAPTER_EVENT_MASK_T mMask;
113 LocMsg(), mLocApi(locApi), mMask(mask)
118 mLocApi->open(mMask);
122 __func__, __LINE__, mMask);
133 mMask(0), mExcludedMask(excludedMask)
  /hardware/qcom/gps/msm8998/core/
LocApiBase.h 94 LOC_API_ADAPTER_EVENT_MASK_T mMask;
LocApiBase.cpp 109 LOC_API_ADAPTER_EVENT_MASK_T mMask;
112 LocMsg(), mLocApi(locApi), mMask(mask)
117 mLocApi->open(mMask);
121 __func__, __LINE__, mMask);
132 mMask(0), mSupportedMsg(0), mContext(context)
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testinfrastructure/
DisplayModifier.java 458 private final int mMask;
467 mMask = mask;
573 return (mMask & (0x1 << index)) != 0;
  /frameworks/base/cmds/statsd/src/
FieldValue.h 218 Matcher(const Field& matcher, int32_t mask) : mMatcher(matcher), mMask(mask){};
221 const int32_t mMask;
228 return mMask;
232 int32_t field = (mMask & 0x00ffffff);
252 return mMatcher != that.getMatcher() || mMask != that.getMask();
256 return mMatcher == that.mMatcher && mMask == that.mMask;
  /frameworks/base/graphics/java/android/graphics/drawable/
AdaptiveIconDrawable.java 110 private final Path mMask;
159 mMask = PathParser.createPathFromPathData(
259 return mMask;
333 sMask.transform(mMaskMatrix, mMask);
343 mCanvas.drawPath(mMask, mPaint);
345 // mMask bound [left, top, right, bottom]
347 mMask.reset();
348 sMask.transform(mMaskMatrix, mMask);
388 outline.setConvexPath(mMask);
397 mMask.transform(mMaskMatrix, p)
    [all...]
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/videoproc/
BackDropperFilter.java 485 private GLFrame mMask;
640 mMask = (GLFrame)context.getFrameManager().newFrame(mMaskFormat);
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/dragndrop/
FolderAdaptiveIcon.java 50 private final Path mMask;
55 mMask = mask;
60 return mMask;

Completed in 822 milliseconds

1 2