Home | History | Annotate | Download | only in dhimpl

Lines Matching full:techindex

464             int techIndex = getTechIndex(tech);
465 if (techIndex != -1) {
467 System.arraycopy(mTechList, 0, mNewTechList, 0, techIndex);
468 System.arraycopy(mTechList, techIndex + 1, mNewTechList, techIndex,
469 mTechList.length - techIndex - 1);
473 System.arraycopy(mTechHandles, 0, mNewHandleList, 0, techIndex);
474 System.arraycopy(mTechHandles, techIndex + 1, mNewTechList, techIndex,
475 techIndex - 1);
479 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, techIndex);
480 System.arraycopy(mTechLibNfcTypes, techIndex + 1, mNewTypeList, techIndex,
481 mTechLibNfcTypes.length - techIndex - 1);
491 System.arraycopy(mTechExtras, 0, mNewTechExtras, 0, techIndex);
492 System.arraycopy(mTechExtras, techIndex + 1, mNewTechExtras, techIndex,
493 mTechExtras.length - techIndex - 1);
542 int techIndex = -1;
545 techIndex = i;
549 return techIndex;
732 for (int techIndex = 0; techIndex < technologies.length; techIndex++) {
734 for (int i = 0; i < techIndex; i++) {
735 if (handles[i] == handles[techIndex]) {
740 status = connectWithStatus(technologies[techIndex]);