Searched refs:techId (Results 1 – 2 of 2) sorted by relevance
304 bool isDefaultTransceiveTimeout(int techId, int timeout);317 int getTransceiveTimeout(int techId);331 void setTransceiveTimeout(int techId, int timeout);
1441 int NfcTag::getTransceiveTimeout(int techId) { in getTransceiveTimeout() argument1444 if ((techId > 0) && (techId < (int)mTechnologyTimeoutsTable.size())) in getTransceiveTimeout()1445 retval = mTechnologyTimeoutsTable[techId]; in getTransceiveTimeout()1447 LOG(ERROR) << StringPrintf("%s: invalid tech=%d", fn, techId); in getTransceiveTimeout()1463 void NfcTag::setTransceiveTimeout(int techId, int timeout) { in setTransceiveTimeout() argument1465 if ((techId >= 0) && (techId < (int)mTechnologyTimeoutsTable.size())) in setTransceiveTimeout()1466 mTechnologyTimeoutsTable[techId] = timeout; in setTransceiveTimeout()1468 LOG(ERROR) << StringPrintf("%s: invalid tech=%d", fn, techId); in setTransceiveTimeout()