Lines Matching refs:pBuff
133 std::vector<uint8_t, FxAllocAllocator<uint8_t>> pBuff(nRequiredLen); in GetLanguage() local
135 m_pInfo->FFI_GetLanguage(m_pInfo, pBuff.data(), nRequiredLen); in GetLanguage()
139 return WideString::FromUTF16LE(reinterpret_cast<uint16_t*>(pBuff.data()), in GetLanguage()
155 std::vector<uint8_t, FxAllocAllocator<uint8_t>> pBuff(nRequiredLen); in GetPlatform() local
157 m_pInfo->FFI_GetPlatform(m_pInfo, pBuff.data(), nRequiredLen); in GetPlatform()
161 return WideString::FromUTF16LE(reinterpret_cast<uint16_t*>(pBuff.data()), in GetPlatform()
223 std::vector<uint8_t, FxAllocAllocator<uint8_t>> pBuff(nRequiredLen); in JS_fieldBrowse() local
225 m_pInfo->m_pJsPlatform, pBuff.data(), nRequiredLen); in JS_fieldBrowse()
230 pBuff.resize(nActualLen - 1); in JS_fieldBrowse()
231 return WideString::FromDefANSI(ByteStringView(pBuff)); in JS_fieldBrowse()
297 std::vector<uint8_t, FxAllocAllocator<uint8_t>> pBuff(nRequiredLen); in GetFilePath() local
299 m_pInfo->m_pJsPlatform, pBuff.data(), nRequiredLen); in GetFilePath()
304 pBuff.resize(nActualLen - 1); in GetFilePath()
305 return WideString::FromDefANSI(ByteStringView(pBuff)); in GetFilePath()