Home | History | Annotate | Download | only in dhimpl

Lines Matching full:techindex

475             int techIndex = getTechIndex(tech);
476 if (techIndex != -1) {
478 System.arraycopy(mTechList, 0, mNewTechList, 0, techIndex);
479 System.arraycopy(mTechList, techIndex + 1, mNewTechList, techIndex,
480 mTechList.length - techIndex - 1);
484 System.arraycopy(mTechHandles, 0, mNewHandleList, 0, techIndex);
485 techIndex + 1, mNewTechList, techIndex,
486 mTechHandles.length - techIndex - 1);
490 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, techIndex);
491 System.arraycopy(mTechLibNfcTypes, techIndex + 1, mNewTypeList, techIndex,
492 mTechLibNfcTypes.length - techIndex - 1);
540 int techIndex = -1;
543 techIndex = i;
547 return techIndex;
724 for (int techIndex = 0; techIndex < technologies.length; techIndex++) {
726 for (int i = 0; i < techIndex; i++) {
727 if (handles[i] == handles[techIndex]) {
732 status = connectWithStatus(technologies[techIndex]);