Lines Matching defs:data
525 ErrCode WebMessagePort::PostPortMessage(std::shared_ptr<NWebMessage> data)
536 nweb_ptr->PostPortMessage(portHandle_, data);
741 ErrCode WebviewController::LoadData(std::string data, std::string mimeType, std::string encoding,
749 return nweb_ptr->LoadWithData(data, mimeType, encoding);
751 return nweb_ptr->LoadWithDataAndBaseUrl(baseUrl, data, mimeType, encoding, historyUrl);
1216 const void **data, size_t &width, size_t &height, ImageColorType &colorType, ImageAlphaType &alphaType) const
1221 isGetFavicon = nweb_ptr->GetFavicon(data, width, height, colorType, alphaType);
1746 uint8_t *data = nullptr;
1748 napi_get_arraybuffer_info(env, buffer, reinterpret_cast<void **>(&data), &total);
1751 int retCode = memcpy_s(vec.data(), vec.size(), &data[offset], length);