Lines Matching refs:resultData
52 void *resultData = nullptr;
53 napi_get_typedarray_info(env, src, &type, &length, &resultData, nullptr, nullptr);
59 inputEncode_ = static_cast<const unsigned char*>(resultData);
85 void *resultData = nullptr;
86 napi_get_typedarray_info(env, src, &type, &length, &resultData, nullptr, nullptr);
92 inputEncode_ = static_cast<const unsigned char*>(resultData);
203 void *resultData = nullptr;
206 napi_get_typedarray_info(env, src, &type, &length, &resultData, nullptr, nullptr);
231 inputDecode_ = static_cast<const char*>(resultData);
368 void *resultData = nullptr;
369 napi_get_typedarray_info(env, src, &type, &length, &resultData, nullptr, nullptr);
376 inputEncode = static_cast<unsigned char*>(resultData);
385 void *resultData = nullptr;
386 napi_get_typedarray_info(env, src, &type, &length, &resultData, nullptr, nullptr);
393 inputEncode = static_cast<unsigned char*>(resultData);
569 void *resultData = nullptr;
573 if (napi_get_typedarray_info(env, src, &type, &length, &resultData, nullptr, nullptr) != napi_ok) {
596 inputDecode = static_cast<char*>(resultData);