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

  /external/v8/src/
log-utils.h 41 // itself with 'seal' and allows no further writes. Data pointed by
42 // 'seal' must be available during entire LogDynamicBuffer lifetime.
48 int block_size, int max_size, const char* seal, int seal_size);
75 int Seal();
162 // Message to "seal" dynamic buffer with.
log-utils.cc 38 int block_size, int max_size, const char* seal, int seal_size)
41 seal_(seal),
84 int LogDynamicBuffer::Seal() {
98 return Seal();
  /external/v8/test/cctest/
test-log-utils.cc 121 const char* seal = "Sealed"; local
122 const int seal_size = StrLength(seal);
123 LogDynamicBuffer dynabuf(32, 128, seal, seal_size);
133 // Check the seal.
136 CHECK_EQ(CStrVector(seal), seal_buf.SubVector(0, seal_size));
137 // Verify that there's no data beyond the seal.

Completed in 46 milliseconds