Home
last modified time | relevance | path

Searched refs:inVec (Results 1 – 2 of 2) sorted by relevance

/frameworks/native/libs/binder/ndk/
Dpersistable_bundle_internal.h27 int32_t getVecInternal(const std::vector<T>& inVec, T* _Nullable buffer, int32_t bufferSizeBytes) { in getVecInternal() argument
28 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()
/frameworks/native/libs/binder/ndk/include_cpp/android/
Dpersistable_bundle_aidl.h253 char** inVec = (char**)malloc(num * sizeof(char*)); in putStringVector() local
254 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()