Home
last modified time | relevance | path

Searched refs:expect_md5 (Results 1 – 13 of 13) sorted by relevance

/dports/sysutils/fusefs-s3backer/s3backer-1.5.4/
H A Dtest_io.c56 u_char *actual_md5, const u_char *expect_md5, int strict);
141 u_char *actual_md5, const u_char *expect_md5, int strict) in test_io_read_block() argument
220 if (expect_md5 != NULL) { in test_io_read_block()
221 const int match = memcmp(md5, expect_md5, MD5_DIGEST_LENGTH) == 0; in test_io_read_block()
232 … (u_int)expect_md5[0], (u_int)expect_md5[1], (u_int)expect_md5[2], (u_int)expect_md5[3], in test_io_read_block()
233 … (u_int)expect_md5[4], (u_int)expect_md5[5], (u_int)expect_md5[6], (u_int)expect_md5[7], in test_io_read_block()
234 … (u_int)expect_md5[8], (u_int)expect_md5[9], (u_int)expect_md5[10], (u_int)expect_md5[11], in test_io_read_block()
235 … (u_int)expect_md5[12], (u_int)expect_md5[13], (u_int)expect_md5[14], (u_int)expect_md5[15]); in test_io_read_block()
H A Dec_protect.c136 u_char *actual_md5, const u_char *expect_md5, int strict);
348 u_char *actual_md5, const u_char *expect_md5, int strict)
401 … if (expect_md5 != NULL && strict && memcmp(expect_md5, zero_md5, MD5_DIGEST_LENGTH) != 0)
413 if (expect_md5 != NULL && strict && memcmp(md5, expect_md5, MD5_DIGEST_LENGTH) != 0)
415 expect_md5 = md5;
423 return (*priv->inner->read_block)(priv->inner, block_num, dest, actual_md5, expect_md5, strict);
H A Ds3backer.h191 u_char *actual_md5, const u_char *expect_md5, int strict);
H A Dhttp_io.c228 u_char *actual_md5, const u_char *expect_md5, int strict);
1209 u_char *actual_md5, const u_char *expect_md5, int strict) in http_io_read_block() argument
1267 if (expect_md5 != NULL && memcmp(expect_md5, zero_md5, MD5_DIGEST_LENGTH) != 0) { in http_io_read_block()
1277 http_io_prhex(md5buf, expect_md5, MD5_DIGEST_LENGTH); in http_io_read_block()
1447 if (expect_md5 != NULL) { in http_io_read_block()
1448 const int expected_not_found = memcmp(expect_md5, zero_md5, MD5_DIGEST_LENGTH) == 0; in http_io_read_block()
H A Dblock_cache.c188 u_char *actual_md5, const u_char *expect_md5, int strict);
544 u_char *actual_md5, const u_char *expect_md5, int strict)
549 assert(expect_md5 == NULL);
/dports/sysutils/cmogstored/cmogstored-1.8.1/
H A Dhttp_common.rl23 char *out = (char *)http->expect_md5;
24 size_t outlen = sizeof(http->expect_md5);
H A Dchunk_parser.c1156 char *out = (char *)http->expect_md5; in mog_chunk_parse()
1157 size_t outlen = sizeof(http->expect_md5); in mog_chunk_parse()
1187 char *out = (char *)http->expect_md5; in mog_chunk_parse()
1188 size_t outlen = sizeof(http->expect_md5); in mog_chunk_parse()
H A Dhttp_parser.c1362 char *out = (char *)http->expect_md5; in mog_http_parse()
1363 size_t outlen = sizeof(http->expect_md5); in mog_http_parse()
1393 char *out = (char *)http->expect_md5; in mog_http_parse()
1394 size_t outlen = sizeof(http->expect_md5); in mog_http_parse()
4928 char *out = (char *)http->expect_md5; in mog_http_parse()
4929 size_t outlen = sizeof(http->expect_md5); in mog_http_parse()
4959 char *out = (char *)http->expect_md5; in mog_http_parse()
4960 size_t outlen = sizeof(http->expect_md5); in mog_http_parse()
6063 char *out = (char *)http->expect_md5; in mog_http_parse()
6064 size_t outlen = sizeof(http->expect_md5); in mog_http_parse()
[all …]
H A Dcmogstored.h231 uint8_t expect_md5[16]; member
H A Dhttp_put.c123 return (memcmp(http->expect_md5, result, 16) == 0); in md5_ok()
/dports/www/p5-Dancer/Dancer-1.3513/t/02_request/
H A D14_uploads.t210 my $expect_md5 = $digest->hexdigest;
219 "test:$expect_md5",
/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/BaseTools/gcc/
H A Dmingw-gcc-build.py349 expect_md5 = fdata['md5']
353 return md5sum.hexdigest().lower() == expect_md5.lower()
/dports/graphics/libjxl/libjxl-0.6.1/third_party/lodepng/
H A Dlodepng_unittest.cpp3069 …g& png64, bool expect_error, unsigned expect_w, unsigned expect_h, const std::string& expect_md5) { in testBase64Image() argument
3083 ASSERT_EQUALS(expect_md5, md5sum(decoded)); in testBase64Image()
3142 …ng& name, bool expect_error, unsigned expect_w, unsigned expect_h, const std::string& expect_md5) { in testPngSuiteImage() argument
3145 testBase64Image(png64, expect_error, expect_w, expect_h, expect_md5); in testPngSuiteImage()