HomeSort by relevance Sort by last modified time
    Searched refs:hash_out (Results 1 - 4 of 4) sorted by null

  /system/update_engine/payload_consumer/
file_descriptor_utils.cc 42 brillo::Blob* hash_out) {
57 if (hash_out != nullptr) {
68 if (hash_out != nullptr) {
70 *hash_out = source_hasher.raw_hash();
84 brillo::Blob* hash_out) {
90 CommonHashExtents(source, src_extents, &writer, block_size, hash_out));
98 brillo::Blob* hash_out) {
99 TEST_AND_RETURN_FALSE(hash_out != nullptr);
101 CommonHashExtents(source, extents, nullptr, block_size, hash_out));
file_descriptor_utils.h 32 // copied blocks in Blob pointed by |hash_out| if not null. The block size
34 // false and the value pointed by |hash_out| is undefined.
43 brillo::Blob* hash_out);
46 // specified by |extents|. Stores the hash in |hash_out| if it is not null. The
48 // false and the value pointed by |hash_out| is undefined.
53 brillo::Blob* hash_out);
file_descriptor_utils_unittest.cc 113 // pointer as hash_out.
126 brillo::Blob hash_out; local
132 source_, src_extents, target_, tgt_extents, 4, &hash_out));
139 EXPECT_EQ(expected_hash, hash_out);
143 brillo::Blob hash_out; local
148 source_, src_extents, target_, tgt_extents, 4, &hash_out));
167 EXPECT_EQ(expected_hash, hash_out);
174 brillo::Blob hash_out; local
175 EXPECT_FALSE(fd_utils::ReadAndHashExtents(source_, extents, 4, &hash_out));
178 // Test that if hash_out is null, then it should fail
188 brillo::Blob hash_out; local
    [all...]
  /external/ipsec-tools/src/racoon/
gssapi.c 522 gss_buffer_t hash_in = &hash_in_buf, hash_out = &hash_out_buf; local
544 hash_in, NULL, hash_out);
555 hash_in->length, hash_out->length);
561 if (gssapi_gss2vmbuf(hash_out, &outbuf) < 0) {
563 maj_stat = gss_release_buffer(&min_stat, hash_out);
566 "release hash_out buffer\n");
569 maj_stat = gss_release_buffer(&min_stat, hash_out);
571 gssapi_error(min_stat, LOCATION, "release hash_out buffer\n");
582 gss_buffer_t hash_in = &hashbuf, hash_out = &hash_outbuf; local
599 maj_stat = gss_unwrap(&min_stat, gps->gss_context, hash_in, hash_out,
    [all...]

Completed in 77 milliseconds