/external/libjpeg-turbo/md5/ |
md5cmp.c | 36 char *md5sum = NULL, buf[65]; local 46 md5sum = MD5File(argv[2], buf); 47 if (!md5sum) { 52 if (!strcasecmp(md5sum, argv[1])) { 56 fprintf(stderr, "%s: FAILED. Checksum is %s\n", argv[2], md5sum);
|
/build/tools/ |
generate-notice-files.py | 64 def md5sum(filename): function 67 Output should be compatible with md5sum command""" 178 file_md5sum = md5sum(filename)
|
/art/tools/dexfuzz/src/dexfuzz/listeners/ |
UniqueProgramTrackerListener.java | 80 * Given a program filename, calculate the MD5sum of 187 private void addToMap(String md5sum, Map<String, Integer> map) { 188 if (map.containsKey(md5sum)) { 189 map.put(md5sum, map.get(md5sum) + 1); 191 map.put(md5sum, 1); 223 String md5sum = getMD5SumOfProgram(programName); local 224 addToMap(md5sum, uniquePrograms); 233 String md5sum = getMD5SumOfOutput(output); local 234 addToMap(md5sum, uniqueOutputs) 243 String md5sum = getMD5SumOfOutput(output); local [all...] |
/external/curl/lib/ |
curl_ntlm_msgs.c | 577 unsigned char md5sum[MD5_DIGEST_LENGTH]; local 594 result = Curl_ssl_md5sum(tmp, 16, md5sum, MD5_DIGEST_LENGTH); 596 /* We shall only use the first 8 bytes of md5sum, but the des code in 602 Curl_ntlm_core_lm_resp(ntbuffer, md5sum, ntresp);
|
/external/libvpx/libvpx/build/make/ |
Makefile | 31 # Note: md5sum is not installed on OS X, but openssl is. Openssl may not be 33 md5sum := $(firstword $(wildcard \ macro 34 $(foreach e,md5sum openssl,\ 37 md5sum := $(if $(filter %openssl,$(md5sum)),$(md5sum) dgst -md5,$(md5sum)) macro 53 echo " [MD5SUM] $(DIST_DIR)"; \ 55 $(md5sum) `find . -name md5sums.txt -prune -o -type f -print` \
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/make/ |
Makefile | 27 # Note: md5sum is not installed on OS X, but openssl is. Openssl may not be 29 md5sum := $(firstword $(wildcard \ macro 30 $(foreach e,md5sum openssl,\ 33 md5sum := $(if $(filter %openssl,$(md5sum)),$(md5sum) dgst -md5,$(md5sum)) macro 49 echo " [MD5SUM] $(DIST_DIR)"; \ 51 $(md5sum) `find . -name md5sums.txt -prune -o -type f -print` \
|
/external/libvncserver/libvncclient/ |
tls_openssl.c | 175 unsigned char md5sum[16], fingerprint[40], *f; local 194 md5len = sizeof (md5sum); 195 X509_digest (cert, EVP_md5 (), md5sum, &md5len); 197 sprintf ((char *) f, "%.2x%c", md5sum[i], i != 15 ? ':' : '\0');
|
/external/flac/include/FLAC/ |
format.h | 536 FLAC__byte md5sum[16]; member in struct:__anon12643 [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/ |
UpdateHandler.java | 652 final String md5sum; local 655 md5sum = MD5Calculator.checksum(copiedFile); 661 if (TextUtils.isEmpty(md5sum)) { 664 if (!md5sum.equals(downloadRecord.mAttributes.getAsString( 667 throw new BadFormatException("MD5 checksum check failed : \"" + md5sum + "\" <> \"" [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_tarfile.py | 26 def md5sum(data): function 57 self.assertTrue((len(data), md5sum(data)) == (tarinfo.size, md5_regtype), 308 self.assertEqual(md5sum(data), md5_regtype) 314 self.assertEqual(md5sum(data), md5_regtype) 365 self.assertTrue((len(data), md5sum(data)) == (tarinfo.size, md5_regtype), 471 self.assertTrue(md5sum(self.tar.extractfile(tarinfo).read()) == chksum, 472 "wrong md5sum for %s" % tarinfo.name) [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_tarfile.py | 26 def md5sum(data): function 57 self.assertTrue((len(data), md5sum(data)) == (tarinfo.size, md5_regtype), 308 self.assertEqual(md5sum(data), md5_regtype) 314 self.assertEqual(md5sum(data), md5_regtype) 365 self.assertTrue((len(data), md5sum(data)) == (tarinfo.size, md5_regtype), 471 self.assertTrue(md5sum(self.tar.extractfile(tarinfo).read()) == chksum, 472 "wrong md5sum for %s" % tarinfo.name) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_tarfile.py | 26 def md5sum(data): function 57 self.assertTrue((len(data), md5sum(data)) == (tarinfo.size, md5_regtype), 308 self.assertEqual(md5sum(data), md5_regtype) 314 self.assertEqual(md5sum(data), md5_regtype) 365 self.assertTrue((len(data), md5sum(data)) == (tarinfo.size, md5_regtype), 471 self.assertTrue(md5sum(self.tar.extractfile(tarinfo).read()) == chksum, 472 "wrong md5sum for %s" % tarinfo.name) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_tarfile.py | 26 def md5sum(data): function 57 self.assertTrue((len(data), md5sum(data)) == (tarinfo.size, md5_regtype), 308 self.assertEqual(md5sum(data), md5_regtype) 314 self.assertEqual(md5sum(data), md5_regtype) 365 self.assertTrue((len(data), md5sum(data)) == (tarinfo.size, md5_regtype), 471 self.assertTrue(md5sum(self.tar.extractfile(tarinfo).read()) == chksum, 472 "wrong md5sum for %s" % tarinfo.name) [all...] |
/external/toybox/generated/ |
globals.h | 53 // toys/lsb/md5sum.c 1307 struct md5sum_data md5sum; member in union:global_union
|
/external/robolectric/v1/lib/main/ |
sqlite-jdbc-3.7.2.jar | |
/external/robolectric/v3/runtime/ |
shadows-core-3.1-SNAPSHOT-16.jar | |
shadows-core-3.1-SNAPSHOT-17.jar | |
shadows-core-3.1-SNAPSHOT-18.jar | |
shadows-core-3.1-SNAPSHOT-19.jar | |
shadows-core-3.1-SNAPSHOT-21.jar | |
shadows-core-3.1-SNAPSHOT-22.jar | |