Home | History | Annotate | Download | only in dhimpl

Lines Matching defs:mTechLibNfcTypes

48     private int[] mTechLibNfcTypes;
438 if (mConnectedTechIndex != -1 && mConnectedTechIndex < mTechLibNfcTypes.length) {
439 return mTechLibNfcTypes[mConnectedTechIndex];
469 int[] mNewTypeList = new int[mTechLibNfcTypes.length + 1];
470 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, mTechLibNfcTypes.length);
471 mNewTypeList[mTechLibNfcTypes.length] = libnfctype;
472 mTechLibNfcTypes = mNewTypeList;
492 int[] mNewTypeList = new int[mTechLibNfcTypes.length - 1];
493 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, techIndex);
494 System.arraycopy(mTechLibNfcTypes, techIndex + 1, mNewTypeList, techIndex,
495 mTechLibNfcTypes.length - techIndex - 1);
496 mTechLibNfcTypes = mNewTypeList;