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);
1420 int NfcTag::getTransceiveTimeout(int techId) { in getTransceiveTimeout() argument1423 if ((techId > 0) && (techId < (int)mTechnologyTimeoutsTable.size())) in getTransceiveTimeout()1424 retval = mTechnologyTimeoutsTable[techId]; in getTransceiveTimeout()1426 LOG(ERROR) << StringPrintf("%s: invalid tech=%d", fn, techId); in getTransceiveTimeout()1442 void NfcTag::setTransceiveTimeout(int techId, int timeout) { in setTransceiveTimeout() argument1444 if ((techId >= 0) && (techId < (int)mTechnologyTimeoutsTable.size())) in setTransceiveTimeout()1445 mTechnologyTimeoutsTable[techId] = timeout; in setTransceiveTimeout()1447 LOG(ERROR) << StringPrintf("%s: invalid tech=%d", fn, techId); in setTransceiveTimeout()