Lines Matching refs:data
61 int32_t OnData(const std::vector<uint8_t>& data) override
63 if (mDataCallback != nullptr && !data.empty()) {
64 mDataCallback(data.size(), (uint8_t *)&data[0]);
109 static void DataCallback(uint16_t len, uint8_t *data)
112 printf("DataCallback:%d,%d", len, data[0]);
157 std::vector<uint8_t> data(0);
159 int32_t ret = mHal->CoreInitialized(data, nfcbtType);
187 * @tc.desc: Writes NCI data to the nfc core.
200 std::vector<uint8_t> data;
202 int32_t ret = mHal->Write(data, nfcbtType);
209 * @tc.desc: Sets the HDF to allow to send NCI data.
251 * @tc.desc: Sends I/O control commands and data from the nfc stack to HDI.