HomeSort by relevance Sort by last modified time
    Searched full:checkpoint (Results 1 - 25 of 143) sorted by null

1 2 3 4 5 6

  /external/chromium_org/v8/test/webkit/
dfg-int32-to-double-on-set-local-and-exit-expected.txt 29 Checkpoint: 1
30 Checkpoint: a
31 Checkpoint: b
32 Checkpoint: 2
33 Checkpoint: c
34 Checkpoint: 3
35 Checkpoint: 1
36 Checkpoint: a
37 Checkpoint: b
38 Checkpoint:
    [all...]
dfg-int32-to-double-on-set-local-and-sometimes-exit-expected.txt 29 Checkpoint: 1
30 Checkpoint: a
31 Checkpoint: b
32 Checkpoint: 2
33 Checkpoint: c
34 Checkpoint: 3
35 Checkpoint: 1
36 Checkpoint: a
37 Checkpoint: b
38 Checkpoint:
    [all...]
dfg-int32-to-double-on-set-local-and-exit.js 30 function checkpoint(text) { function
31 debug("Checkpoint: " + text);
36 checkpoint("a");
38 checkpoint("b");
41 checkpoint("c");
46 checkpoint("1");
48 checkpoint("2");
50 checkpoint("3");
dfg-int32-to-double-on-set-local-and-sometimes-exit.js 30 function checkpoint(text) { function
31 debug("Checkpoint: " + text);
36 checkpoint("a");
38 checkpoint("b");
43 checkpoint("c");
48 checkpoint("1");
50 checkpoint("2");
52 checkpoint("3");
  /external/chromium_org/third_party/sqlite/src/doc/
vfs-shm.txt 21 CHECKPOINT
46 CHECKPOINT lock can be acquired.
48 CHECKPOINT - It is OK to write any WAL data into the database file
62 in which case all states would be equivalent to CHECKPOINT, meaning that
71 (1) A READ cannot coexist with CHECKPOINT.
73 (3) None of WRITE, PENDING, CHECKPOINT, or RECOVER can coexist.
92 WRITE, CHECKPOINT, or RECOVER on the wal-index or an EXCLUSIVE on
95 (9) A CHECKPOINT or RECOVER must be held on the wal-index, or an
102 CHECKPOINT, or RECOVER to the lock manager. The SQLite core will never
104 those locking states in response to READ and CHECKPOINT requests
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
BackgroundHTMLInputStream.cpp 51 HTMLInputCheckpoint checkpoint = m_checkpoints.size(); local
52 m_checkpoints.append(Checkpoint(m_current, m_segments.size(), tokensExtractedSincePreviousCheckpoint));
54 return checkpoint;
60 // There is nothing to do for the first valid checkpoint.
65 const Checkpoint& lastInvalidCheckpoint = m_checkpoints[newFirstValidCheckpointIndex - 1];
82 const Checkpoint& checkpoint = m_checkpoints[checkpointIndex];
83 ASSERT(!checkpoint.isNull());
87 m_current = checkpoint.input;
89 for (size_t i = checkpoint.numberOfSegmentsAlreadyAppended; i < m_segments.size(); ++i)
    [all...]
BackgroundHTMLParser.cpp 151 void BackgroundHTMLParser::resumeFrom(PassOwnPtr<Checkpoint> checkpoint)
153 m_parser = checkpoint->parser;
154 m_token = checkpoint->token.release();
155 m_tokenizer = checkpoint->tokenizer.release();
156 m_treeBuilderSimulator.setState(checkpoint->treeBuilderState);
157 m_input.rewindTo(checkpoint->inputCheckpoint, checkpoint->unparsedInput);
158 m_preloadScanner->rewindTo(checkpoint->preloadScannerCheckpoint);
BackgroundHTMLInputStream.h 56 struct Checkpoint {
57 Checkpoint(const SegmentedString& i, size_t n, size_t t) : input(i), numberOfSegmentsAlreadyAppended(n), tokensExtractedSincePreviousCheckpoint(t) { }
71 Vector<Checkpoint> m_checkpoints;
HTMLPreloadScanner.h 76 struct Checkpoint {
77 Checkpoint(const KURL& predictedBaseElementURL, bool inStyle, size_t templateCount)
98 Vector<Checkpoint> m_checkpoints;
BackgroundHTMLParser.h 60 struct Checkpoint {
75 void resumeFrom(PassOwnPtr<Checkpoint>);
HTMLPreloadScanner.cpp 388 TokenPreloadScannerCheckpoint checkpoint = m_checkpoints.size(); local
389 m_checkpoints.append(Checkpoint(m_predictedBaseElementURL, m_inStyle, m_templateCount));
390 return checkpoint;
396 const Checkpoint& checkpoint = m_checkpoints[checkpointIndex];
397 m_predictedBaseElementURL = checkpoint.predictedBaseElementURL;
398 m_inStyle = checkpoint.inStyle;
399 m_templateCount = checkpoint.templateCount;
HTMLTokenizer.h 124 struct Checkpoint {
131 Checkpoint()
142 void createCheckpoint(Checkpoint&) const;
143 void restoreFromCheckpoint(const Checkpoint&);
  /external/chromium_org/third_party/WebKit/Source/core/streams/
ReadableStreamTest.cpp 30 typedef ::testing::StrictMock<::testing::MockFunction<void(int)> > Checkpoint;
155 Checkpoint checkpoint; local
163 EXPECT_CALL(checkpoint, Call(0));
165 EXPECT_CALL(checkpoint, Call(1));
168 checkpoint.Call(0);
171 checkpoint.Call(1);
181 Checkpoint checkpoint; local
189 EXPECT_CALL(checkpoint, Call(0))
445 Checkpoint checkpoint; local
480 Checkpoint checkpoint; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
NewWebSocketChannelImplTest.cpp 40 typedef testing::StrictMock< testing::MockFunction<void(int)> > Checkpoint;
167 Checkpoint checkpoint; local
172 EXPECT_CALL(checkpoint, Call(1));
177 checkpoint.Call(1);
204 Checkpoint checkpoint; local
208 EXPECT_CALL(checkpoint, Call(1));
212 EXPECT_CALL(checkpoint, Call(2));
214 EXPECT_CALL(checkpoint, Call(3))
258 Checkpoint checkpoint; local
374 Checkpoint checkpoint; local
501 Checkpoint checkpoint; local
666 Checkpoint checkpoint; local
695 Checkpoint checkpoint; local
    [all...]
  /external/chromium_org/net/tools/balsa/
balsa_frame_test.cc 228 testing::MockFunction<void(int)> checkpoint; local
248 EXPECT_CALL(checkpoint, Call(0));
259 checkpoint.Call(0);
462 testing::MockFunction<void(int)> checkpoint; local
473 EXPECT_CALL(checkpoint, Call(0));
479 EXPECT_CALL(checkpoint, Call(1));
491 checkpoint.Call(0);
495 checkpoint.Call(1);
515 testing::MockFunction<void(int)> checkpoint; local
526 EXPECT_CALL(checkpoint, Call(0))
560 testing::MockFunction<void(int)> checkpoint; local
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
wal5.test 12 # focus of this file is testing the operation of "blocking-checkpoint"
28 # A checkpoint may be requested either using the C API or by executing
110 # Attempt a checkpoint.
123 # Now do a blocking-checkpoint. Set the busy-handler up so that connection
125 # proceed to checkpoint the entire log file. Next write should go to the
164 # This block of tests explores checkpoint operations on more than one
242 # if they cannot obtain those locks. There are three locks that a checkpoint
255 # This test case involves running a checkpoint while there exist other
258 foreach {tn1 checkpoint busy_on ckpt_expected expected} {
299 code1 { do_wal_checkpoint db -mode [string tolower $checkpoint] }
    [all...]
tt3_checkpoint.c 32 ** In test case checkpoint_starvation_1, the auto-checkpoint uses
37 ** checkpoint_starvation_2, as every checkpoint will block for up to 200 ms
119 printf(" Checkpoint mode : %s\n",
  /external/chromium_org/net/websockets/
websocket_channel_test.cc 143 typedef StrictMock< MockFunction<void(int)> > Checkpoint; // NOLINT
1456 Checkpoint checkpoint; local
1757 Checkpoint checkpoint; local
1778 Checkpoint checkpoint; local
1825 Checkpoint checkpoint; local
2152 Checkpoint checkpoint; local
2185 Checkpoint checkpoint; local
2205 Checkpoint checkpoint; local
2230 Checkpoint checkpoint; local
2269 Checkpoint checkpoint; local
2295 Checkpoint checkpoint; local
2359 Checkpoint checkpoint; local
2552 Checkpoint checkpoint; local
2764 Checkpoint checkpoint; local
3347 Checkpoint checkpoint; local
    [all...]
  /external/yaffs2/yaffs2/
yaffs_checkptrw.c 152 /* Erase all the blocks in the checkpoint area */
163 /* A checkpoint block list of 1 checkpoint block per 16 block is (hopefully)
197 checkpoint */
285 /* printf("read checkpoint page %d\n",dev->checkpointPage); */
339 T(YAFFS_TRACE_CHECKPOINT,(TSTR("checkpoint byte count %d" TENDSTR),
357 T(YAFFS_TRACE_CHECKPOINT,(TSTR("checkpoint invalidate"TENDSTR)));
  /external/chromium_org/net/tools/flip_server/
http_interface_test.cc 175 testing::MockFunction<void(int)> checkpoint; // NOLINT local
179 EXPECT_CALL(checkpoint, Call(0));
189 checkpoint.Call(0);
210 testing::MockFunction<void(int)> checkpoint; // NOLINT local
214 EXPECT_CALL(checkpoint, Call(0));
221 checkpoint.Call(0);
233 testing::MockFunction<void(int)> checkpoint; // NOLINT local
237 EXPECT_CALL(checkpoint, Call(0));
246 checkpoint.Call(0);
spdy_interface_test.cc 295 testing::MockFunction<void(int)> checkpoint; // NOLINT local
308 EXPECT_CALL(checkpoint, Call(0));
314 checkpoint.Call(0);
328 testing::MockFunction<void(int)> checkpoint; // NOLINT local
343 EXPECT_CALL(checkpoint, Call(0));
349 checkpoint.Call(0);
462 testing::MockFunction<void(int)> checkpoint; // NOLINT local
477 EXPECT_CALL(checkpoint, Call(0));
491 checkpoint.Call(0);
511 testing::MockFunction<void(int)> checkpoint; // NOLIN local
845 testing::MockFunction<void(int)> checkpoint; \/\/ NOLINT local
    [all...]
  /external/lldb/tools/debugserver/source/
DNBArch.h 90 Trans_Pending = 0, // Transaction is pending, and checkpoint state has been snapshotted.
91 Trans_Done = 1, // Transaction is done, the current state is committed, and checkpoint state is irrelevant.
92 Trans_Rolled_Back = 2 // Transaction is done, the current state has been rolled back to the checkpoint state.
  /external/replicaisland/src/com/replica/replicaisland/
AllocationGuard.java 21 * "checkpoint" memory scheme. After the static sGuardActive flag has been set, any further
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
srrestoreptapi.h 26 #define CHECKPOINT 7
  /external/chromium_org/chrome/browser/prefs/
pref_hash_filter.cc 154 base::TimeTicks checkpoint = base::TimeTicks::Now(); local
173 base::TimeTicks::Now() - checkpoint);
182 base::TimeTicks checkpoint = base::TimeTicks::Now(); local
224 base::TimeTicks::Now() - checkpoint);

Completed in 625 milliseconds

1 2 3 4 5 6