Home
last modified time | relevance | path

Searched refs:techId (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Nfc/nci/jni/
DNfcTag.h304 bool isDefaultTransceiveTimeout(int techId, int timeout);
317 int getTransceiveTimeout(int techId);
331 void setTransceiveTimeout(int techId, int timeout);
DNfcTag.cpp1441 int NfcTag::getTransceiveTimeout(int techId) { in getTransceiveTimeout() argument
1444 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() argument
1465 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()