Home
last modified time | relevance | path

Searched refs:crcOK (Results 1 – 10 of 10) sorted by relevance

/dports/comms/qsstv/qsstv/drmrx/
H A Dsourcedecoder.h26 crcOK=false; in dataSegment()
35 crcOK=crcok; in setData()
44 bool crcOK; member
47 bool hasData() {return (crcOK||recovered);} in hasData()
59 bool crcOK; member
92 bool crcOK; member
H A Dsourcedecoder.cpp173 ….arg(firstFlag).arg(lastFlag).arg(packetID).arg(PPI).arg(continuityIndex).arg(crcOK).arg(length),L… in log()
231 currentDataPacket.crcOK=currentDataBlock.crcOK; in setupDataPacket()
244 currentDataPacket.crcOK=true; in setupDataPacket()
248 currentDataPacket.crcOK=false; in setupDataPacket()
/dports/archivers/7-zip/7-zip-21.07/CPP/7zip/Archive/Rar/
H A DRar5Handler.cpp973 bool crcOK; member
975 CLinkFile(): Index(0), NumLinks(0), Res(S_OK), crcOK(true) {} in CLinkFile()
1181 linkFile->crcOK = isCrcOK; in Code()
1216 bool crcOK = true; in DecodeToBuf() local
1217 res = Code(item, item, packSize, limitedStream, out, NULL, crcOK); in DecodeToBuf()
1220 if (!crcOK || outSpec->GetPos() != item.Size) in DecodeToBuf()
2487 static inline int DecoderRes_to_OpRes(HRESULT res, bool crcOK) in DecoderRes_to_OpRes() argument
2494 return crcOK ? in DecoderRes_to_OpRes()
2937 bool crcOK = true; in Extract() local
2942 crcOK = false; in Extract()
[all …]
/dports/net-mgmt/glpi-plugins-fusioninventory-server/fusioninventory-for-glpi-glpi090-1.5/inc/
H A Dtoolbox.class.php177 $crcOK = $crc == $datacrc;
179 if (!$lenOK || !$crcOK) {
180 $error = ( $lenOK ? '' : 'Length check FAILED. ') . ( $crcOK ? '' : 'Checksum FAILED.');
/dports/archivers/maxcso/maxcso-1.10.0/7zip/CPP/7zip/Archive/Rar/
H A DRar5Handler.cpp1007 bool crcOK; member
1009 CLinkFile(): Index(0), NumLinks(0), Res(S_OK), crcOK(true) {} in CLinkFile()
1213 linkFile->crcOK = isCrcOK; in Code()
1246 bool crcOK = true; in DecodeToBuf() local
1247 res = Code(item, item, packSize, limitedStream, out, NULL, crcOK); in DecodeToBuf()
1250 if (!crcOK || outSpec->GetPos() != item.Size) in DecodeToBuf()
2504 static inline int DecoderRes_to_OpRes(HRESULT res, bool crcOK) in DecoderRes_to_OpRes() argument
2511 return crcOK ? in DecoderRes_to_OpRes()
2906 bool crcOK = true; in Extract() local
2911 crcOK = false; in Extract()
[all …]
/dports/www/baikal/baikal/Core/Frameworks/Flake/Util/
H A DTools.php776 $crcOK = $crc == $datacrc;
778 if (!$lenOK || !$crcOK) {
779 $error = ($lenOK ? '' : 'Length check FAILED. ') . ($crcOK ? '' : 'Checksum FAILED.');
/dports/archivers/ppmd-7z/p7zip_9.04/CPP/7zip/Archive/Zip/
H A DZipHandler.cpp708 bool crcOK = true; in Decode() local
711 crcOK = (outStreamSpec->GetCRC() == item.FileCRC); in Decode()
719 res = ((crcOK && authOk) ? in Decode()
/dports/archivers/maxcso/maxcso-1.10.0/7zip/CPP/7zip/Archive/Zip/
H A DZipHandler.cpp1170 bool crcOK = true; in Decode() local
1173 crcOK = (outStreamSpec->GetCRC() == item.Crc); in Decode()
1191 if (crcOK && authOk) in Decode()
/dports/archivers/7-zip/7-zip-21.07/CPP/7zip/Archive/Zip/
H A DZipHandler.cpp1496 bool crcOK = true; in Decode() local
1499 crcOK = (outStreamSpec->GetCRC() == item.Crc); in Decode()
1531 if (crcOK && authOk) in Decode()
/dports/archivers/ppmd-7z/p7zip_9.04/CPP/7zip/Archive/Rar/
H A DRarHandler.cpp809 bool crcOK = outStreamSpec->GetCRC() == lastItem.FileCRC; in Extract() local
811 RINOK(extractCallback->SetOperationResult(crcOK ? NArchive::NExtract::NOperationResult::kOK: in Extract()