Searched refs:pRet (Results 1 – 4 of 4) sorted by relevance
46 auto pRet = std::any_cast<T>(&retval); in Get() local47 if (pRet != nullptr) { in Get()48 ret = *pRet; in Get()
47 auto pRet = std::any_cast<sptrT>(&instance); in Get() local48 if (pRet != nullptr) { in Get()49 ret = *pRet; in Get()
57 auto pRet = std::any_cast<sptrT>(&data_); in GetData() local58 if (pRet != nullptr) { in GetData()59 ret = *pRet; in GetData()
514 int32_t pRet = 0; in WriteToFile() local539 pRet = (int32_t)pwrite(fileInfo->fd, payLoad, length, (int64_t)fileOffset); in WriteToFile()540 if (pRet >= 0) { in WriteToFile()541 ret = (uint16_t)pRet; in WriteToFile()545 if ((pRet < 0) || (ret < length)) { in WriteToFile()546 LOGE(TAG, "fwrite error %d write %hu target %hu pRet:%d", GetErrno(), ret, length, pRet); in WriteToFile()