Home | History | Annotate | Download | only in src

Lines Matching refs:sValueBuffer

365    phNfc_sData_t                    sValueBuffer;
384 status = phFriNfc_Llcp_DecodeTLV(psParamsTLV, &offset, &type, &sValueBuffer);
395 if (sValueBuffer.length != PHFRINFC_LLCP_TLV_LENGTH_VERSION)
401 version = sValueBuffer.buffer[0];
407 if (sValueBuffer.length != PHFRINFC_LLCP_TLV_LENGTH_MIUX)
413 sParams.miu = (PHFRINFC_LLCP_MIU_DEFAULT + ((sValueBuffer.buffer[0] << 8) | sValueBuffer.buffer[1])) & PHFRINFC_LLCP_TLV_MIUX_MASK;
419 if (sValueBuffer.length != PHFRINFC_LLCP_TLV_LENGTH_WKS)
425 sParams.wks = (sValueBuffer.buffer[0] << 8) | sValueBuffer.buffer[1];
433 if (sValueBuffer.length != PHFRINFC_LLCP_TLV_LENGTH_LTO)
439 sParams.lto = sValueBuffer.buffer[0];
445 if (sValueBuffer.length != PHFRINFC_LLCP_TLV_LENGTH_OPT)
451 sParams.option = sValueBuffer.buffer[0] & PHFRINFC_LLCP_TLV_OPT_MASK;