Home
last modified time | relevance | path

Searched refs:stringData (Results 1 – 4 of 4) sorted by relevance

/frameworks/rs/
DrsStream.cpp98 char *stringData = reinterpret_cast<char *>(&mData[mPos]); in addString() local
99 memcpy(stringData, s, len); in addString()
/frameworks/native/libs/binder/ndk/
Dparcel.cpp339 binder_status_t AParcel_readString(const AParcel* parcel, void* stringData, in AParcel_readString() argument
345 if (allocator(stringData, -1, nullptr)) { in AParcel_readString()
366 bool success = allocator(stringData, len8, &str8); in AParcel_readString()
405 static bool Allocator(void* stringData, int32_t length, char** buffer) { in Allocator()
407 static_cast<StringArrayElementAllocationAdapter*>(stringData); in Allocator()
/frameworks/native/libs/binder/ndk/include_ndk/android/
Dbinder_parcel.h105 typedef bool (*AParcel_stringAllocator)(void* stringData, int32_t length, char** buffer);
519 binder_status_t AParcel_readString(const AParcel* parcel, void* stringData,
/frameworks/native/libs/binder/ndk/include_cpp/android/
Dbinder_parcel_utils.h390 static inline bool AParcel_stdStringAllocator(void* stringData, int32_t length, char** buffer) {
393 std::string* str = static_cast<std::string*>(stringData);
404 static inline bool AParcel_nullableStdStringAllocator(void* stringData, int32_t length,
408 std::optional<std::string>* str = static_cast<std::optional<std::string>*>(stringData);
601 void* stringData = static_cast<void*>(str);
602 return AParcel_readString(parcel, stringData, AParcel_stdStringAllocator);
622 void* stringData = static_cast<void*>(str);
623 return AParcel_readString(parcel, stringData, AParcel_nullableStdStringAllocator);