Searched refs:secondData (Results 1 – 6 of 6) sorted by relevance
237 OhosImageSourceUpdateData secondData{};238 secondData.buffer = data;239 secondData.bufferSize = len;240 secondData.isCompleted = true; // 最后一次加载,要标记加载完成241 secondData.offset = 2048; // 已经加载过2048字节了,第二次偏移已经加载的量242 secondData.updateLength = len - 2048; // 第二次加载剩余的数据243 OH_ImageSource_UpdateData(imageSourceNative_c, &secondData);
237 OhosImageSourceUpdateData secondData{};238 secondData.buffer = data;239 secondData.bufferSize = len;240 … secondData.isCompleted = true; // Last loading, to indicating that loading is complete.241 …secondData.offset = 2048; // 2048 bytes of data have been loaded. Offset the data to load for the …242 secondData.updateLength = len - 2048; // Load the remaining data for the second time.243 OH_ImageSource_UpdateData(imageSourceNative_c, &secondData);
227 bool CompareCertData(const struct CmBlob *firstData, const struct CmBlob *secondData) in CompareCertData() argument229 if (firstData == nullptr || secondData == nullptr) { in CompareCertData()232 return ((firstData->size == secondData->size) && in CompareCertData()233 … (memcmp(firstData->data, secondData->data, static_cast<int32_t>(firstData->size)) == 0)); in CompareCertData()
48 bool CompareCertData(const struct CmBlob *firstData, const struct CmBlob *secondData);
1460 @State secondData: string = ''1470 this.secondData = (this.data['array'][1]).toString()1473 Text(`第一页传来的数值:${this.secondData}`)
1467 @State secondData: string = ''1477 this.secondData = (this.data['array'][1]).toString()1480 Text(`This is the data passed from the first page: ${this.secondData}`)