Searched refs:pSave (Results 1 – 2 of 2) sorted by relevance
/openthread-latest/src/posix/platform/ |
D | power.cpp | 102 char *pSave; in FromString() local 104 VerifyOrExit((str = strtok_r(aString, ",", &pSave)) != nullptr, error = OT_ERROR_PARSE); in FromString() 107 VerifyOrExit((str = strtok_r(nullptr, ",", &pSave)) != nullptr, error = OT_ERROR_PARSE); in FromString() 110 VerifyOrExit((str = strtok_r(nullptr, ",", &pSave)) != nullptr, error = OT_ERROR_PARSE); in FromString() 112 SuccessOrExit(error = mRawPowerSetting.Set(pSave)); in FromString()
|
D | radio.cpp | 168 char *pSave = nullptr; in ProcessMaxPowerTable() local 175 for (str = strtok_r(const_cast<char *>(maxPowerTable), ",", &pSave); in ProcessMaxPowerTable() 176 str != nullptr && channel <= ot::Radio::kChannelMax; str = strtok_r(nullptr, ",", &pSave)) in ProcessMaxPowerTable()
|