HomeSort by relevance Sort by last modified time
    Searched refs:checksum (Results 351 - 375 of 597) sorted by null

<<11121314151617181920>>

  /external/chromium_org/chrome/browser/spellchecker/
spellcheck_custom_dictionary.cc 32 // Prefix for the checksum in the dictionary file.
35 // The status of the checksum in a custom spellcheck dictionary.
57 // valid checksum, then returns ChecksumStatus::VALID. If the file has an
58 // invalid checksum, then returns ChecksumStatus::INVALID and clears |words|.
66 std::string checksum = contents.substr(pos + strlen(CHECKSUM_PREFIX)); local
68 if (checksum != base::MD5String(contents))
87 // the dictionary checksum is not valid, but backup checksum is valid, then
94 // Load the contents and verify the checksum.
97 // Checksum is not valid. See if there's a backup
120 std::string checksum = base::MD5String(content.str()); local
121 content << CHECKSUM_PREFIX << checksum; local
    [all...]
  /external/chromium_org/native_client_sdk/src/build_tools/
manifest_util.py 25 VALID_ARCHIVE_KEYS = frozenset(['host_os', 'size', 'checksum', 'url'])
141 checksum = self.get('checksum', None)
142 if not checksum:
143 raise Error('Archive "%s" has no checksum' % host_os)
144 elif not isinstance(checksum, dict):
145 raise Error('Archive "%s" has a checksum, but it is not a dict' % host_os)
146 elif not len(checksum):
147 raise Error('Archive "%s" has an empty checksum dict' % host_os)
156 """Update the size and checksum information for this archiv
    [all...]
  /external/chromium_org/printing/
image.cc 55 std::string Image::checksum() const { function in class:printing::Image
  /external/chromium_org/rlz/lib/
rlz_lib.cc 411 // Find the checksum line.
418 // Calculate checksum of message preceeding checksum line.
433 // Find the checksum value on the response.
439 std::string checksum = response_string.substr(checksum_begin, local
441 base::TrimWhitespaceASCII(checksum, base::TRIM_ALL, &checksum);
446 return calculated_crc == HexStringToInteger(checksum.c_str());
  /external/chromium_org/third_party/icu/source/samples/layout/
sfnt.h 27 le_uint32 checksum; member in struct:DirectoryEntry
  /external/chromium_org/third_party/icu/source/test/letest/
FontObject.h 24 le_uint32 checksum; member in struct:DirectoryEntry
  /external/chromium_org/third_party/icu/source/test/perf/leperf/
FontObject.h 24 le_uint32 checksum; member in struct:DirectoryEntry
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/
font.h 241 // Get the checksum for this font.
242 int64_t checksum() { return checksum_; } function in class:sfntly::Font
  /external/chromium_org/third_party/webrtc/test/
rtp_file_reader.cc 471 uint16_t checksum; local
477 TRY_PCAP(Read(&checksum, true));
503 uint16_t checksum; local
507 TRY_PCAP(Read(&checksum, true));
  /external/guava/guava/src/com/google/common/io/
ByteStreams.java 37 import java.util.zip.Checksum;
722 * Computes and returns the checksum value for a supplied input stream.
723 * The checksum object is reset when this method returns successfully.
726 * @param checksum the checksum object
727 * @return the result of {@link Checksum#getValue} after updating the
728 * checksum object with all of the bytes in the stream
732 final Checksum checksum) throws IOException {
736 checksum.update(buf, off, len)
    [all...]
  /external/icu/icu4c/source/samples/layout/
sfnt.h 27 le_uint32 checksum; member in struct:DirectoryEntry
  /external/icu/icu4c/source/test/letest/
FontObject.h 24 le_uint32 checksum; member in struct:DirectoryEntry
  /external/icu/icu4c/source/test/perf/leperf/
FontObject.h 24 le_uint32 checksum; member in struct:DirectoryEntry
  /external/kernel-headers/original/uapi/linux/
edd.h 169 __u8 checksum; member in struct:edd_device_params
  /external/sfntly/cpp/src/sfntly/
font.h 241 // Get the checksum for this font.
242 int64_t checksum() { return checksum_; } function in class:sfntly::Font
  /external/skia/src/gpu/gl/
GrGLProgramDesc.h 47 // Gets the a checksum of the key. Can be used as a hash value for a fast lookup in a cache.
177 // The key is 1 uint32_t for the length, followed another for the checksum, the header, and then
197 uint32_t* checksum() { return this->atOffset<uint32_t, kChecksumOffset>(); } function in class:GrGLProgramDesc
  /external/srec/srec/include/
utteranc.h 225 unsigned long checksum; member in struct:_UttHeader
  /external/stressapptest/src/
os.h 239 AdlerChecksum *checksum);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/
edd.h 169 __u8 checksum; member in struct:edd_device_params
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/netinet/
ip_icmp.h 31 u_int16_t checksum; member in struct:icmphdr
142 u_int16_t icmp_cksum; /* ones complement checksum of struct */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
edd.h 169 __u8 checksum; member in struct:edd_device_params
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/netinet/
ip_icmp.h 31 u_int16_t checksum; member in struct:icmphdr
142 u_int16_t icmp_cksum; /* ones complement checksum of struct */
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/linux/
edd.h 179 __u8 checksum; member in struct:edd_device_params
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/linux/
edd.h 179 __u8 checksum; member in struct:edd_device_params
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/linux/
edd.h 179 __u8 checksum; member in struct:edd_device_params

Completed in 1482 milliseconds

<<11121314151617181920>>