Searched refs:inVec (Results 1 – 2 of 2) sorted by relevance
27 int32_t getVecInternal(const std::vector<T>& inVec, T* _Nullable buffer, int32_t bufferSizeBytes) { in getVecInternal() argument28 LOG_ALWAYS_FATAL_IF(inVec.size() > INT32_MAX, in getVecInternal()33 int32_t num = inVec.size(); in getVecInternal()39 buffer[i] = inVec[i]; in getVecInternal()
253 char** inVec = (char**)malloc(num * sizeof(char*)); in putStringVector() local254 if (inVec) { in putStringVector()256 inVec[i] = strdup(vec[i].c_str()); in putStringVector()258 APersistableBundle_putStringVector(mPBundle, key.c_str(), inVec, num); in putStringVector()259 free(inVec); in putStringVector()