HomeSort by relevance Sort by last modified time
    Searched refs:mSpec (Results 1 - 6 of 6) sorted by null

  /frameworks/base/keystore/java/android/security/
AndroidKeyPairGenerator.java 58 private KeyPairGeneratorSpec mSpec;
77 if (mKeyStore == null || mSpec == null) {
82 if (((mSpec.getFlags() & KeyStore.FLAG_ENCRYPTED) != 0)
89 final String alias = mSpec.getKeystoreAlias();
93 final int keyType = KeyStore.getKeyTypeForAlgorithm(mSpec.getKeyType());
94 byte[][] args = getArgsForKeyType(keyType, mSpec.getAlgorithmParameterSpec());
98 mSpec.getKeySize(), mSpec.getFlags(), args)) {
114 final KeyFactory keyFact = KeyFactory.getInstance(mSpec.getKeyType());
124 certGen.setSerialNumber(mSpec.getSerialNumber())
    [all...]
KeyPairGeneratorSpec.java 85 private final AlgorithmParameterSpec mSpec;
159 mSpec = spec;
255 return mSpec;
335 private AlgorithmParameterSpec mSpec;
412 mSpec = spec;
482 return new KeyPairGeneratorSpec(mContext, mKeystoreAlias, mKeyType, mKeySize, mSpec,
  /packages/apps/Gallery/src/com/android/camera/
GridViewSpecial.java 122 private LayoutSpec mSpec;
138 private int mBlockHeight; // Cache mSpec.mCellSpacing + mSpec.mCellHeight
200 mSpec = mCellSizeChoices[mSizeChoice];
215 mColumns = 1 + (width - mSpec.mCellWidth)
216 / (mSpec.mCellWidth + mSpec.mCellSpacing);
218 mSpec.mLeftEdgePadding = (width
219 - ((mColumns - 1) * mSpec.mCellSpacing)
220 - (mColumns * mSpec.mCellWidth)) / 2
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
AlbumLabelMaker.java 38 private final AlbumSetSlotRenderer.LabelSpec mSpec;
53 mSpec = spec;
114 mBitmapHeight = mSpec.labelBackgroundHeight + borders;
145 AlbumSetSlotRenderer.LabelSpec s = mSpec;
169 canvas.drawColor(mSpec.backgroundColor, PorterDuff.Mode.SRC);
SlotView.java 405 private Spec mSpec;
418 mSpec = spec;
495 // Initialize mSlotWidth and mSlotHeight from mSpec
496 if (mSpec.slotWidth != -1) {
498 mSlotWidth = mSpec.slotWidth;
499 mSlotHeight = mSpec.slotHeight;
501 int rows = (mWidth > mHeight) ? mSpec.rowsLand : mSpec.rowsPort;
502 mSlotGap = mSpec.slotGap;
504 mSlotWidth = mSlotHeight - mSpec.slotHeightAdditional
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DozeParameters.java 127 if (sPulseSchedule == null || !sPulseSchedule.mSpec.equals(spec)) {
157 private String mSpec;
164 rt.mSpec = spec;

Completed in 121 milliseconds