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.cpp1420 int NfcTag::getTransceiveTimeout(int techId) { in getTransceiveTimeout() argument
1423 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() argument
1444 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()