Searched refs:SnapshotIndex (Results 1 – 7 of 7) sorted by relevance
17 using SnapshotIndex = size_t; variable22 SnapshotIndex index; // In the snapshot25 typedef size_t SnapshotIndex; typedef
32 SnapshotIndex target;44 SnapshotIndex target_index_ = 0; // 0 means target_ is not snapshotted
510 result.index = Read<SnapshotIndex>(); in Read()529 written_total += Write<SnapshotIndex>(data.index); in Write()551 result.js_execution_async_resources = Read<SnapshotIndex>(); in Read()552 result.native_execution_async_resources = ReadVector<SnapshotIndex>(); in Read()571 written_total += Write<SnapshotIndex>(data.js_execution_async_resources); in Write()573 WriteVector<SnapshotIndex>(data.native_execution_async_resources); in Write()687 result.primitive_values = ReadVector<SnapshotIndex>(); in Read()703 size_t written_total = WriteVector<SnapshotIndex>(data.primitive_values); in Write()717 result.context = Read<SnapshotIndex>(); in Read()732 written_total += Write<SnapshotIndex>(data.context); in Write()[all …]
115 std::vector<SnapshotIndex> primitive_values;317 SnapshotIndex js_execution_async_resources;318 std::vector<SnapshotIndex> native_execution_async_resources;494 static const SnapshotIndex kNodeVMContextIndex = 0;495 static const SnapshotIndex kNodeBaseContextIndex = kNodeVMContextIndex + 1;496 static const SnapshotIndex kNodeMainContextIndex = kNodeBaseContextIndex + 1;
20 SnapshotIndex context;
408 const std::vector<SnapshotIndex>& v);
250 const std::vector<SnapshotIndex>& v) { in operator <<()252 for (const SnapshotIndex i : v) { in operator <<()