Lines Matching refs:deserializer
17 void Snapshot::ReserveSpaceForLinkedInSnapshot(Deserializer* deserializer) { in ReserveSpaceForLinkedInSnapshot() argument
18 deserializer->set_reservation(NEW_SPACE, new_space_used_); in ReserveSpaceForLinkedInSnapshot()
19 deserializer->set_reservation(OLD_POINTER_SPACE, pointer_space_used_); in ReserveSpaceForLinkedInSnapshot()
20 deserializer->set_reservation(OLD_DATA_SPACE, data_space_used_); in ReserveSpaceForLinkedInSnapshot()
21 deserializer->set_reservation(CODE_SPACE, code_space_used_); in ReserveSpaceForLinkedInSnapshot()
22 deserializer->set_reservation(MAP_SPACE, map_space_used_); in ReserveSpaceForLinkedInSnapshot()
23 deserializer->set_reservation(CELL_SPACE, cell_space_used_); in ReserveSpaceForLinkedInSnapshot()
24 deserializer->set_reservation(PROPERTY_CELL_SPACE, in ReserveSpaceForLinkedInSnapshot()
36 Deserializer deserializer(&source); in Initialize() local
37 ReserveSpaceForLinkedInSnapshot(&deserializer); in Initialize()
38 bool success = isolate->Init(&deserializer); in Initialize()
60 Deserializer deserializer(&source); in NewContextFromSnapshot() local
62 deserializer.set_reservation(NEW_SPACE, context_new_space_used_); in NewContextFromSnapshot()
63 deserializer.set_reservation(OLD_POINTER_SPACE, context_pointer_space_used_); in NewContextFromSnapshot()
64 deserializer.set_reservation(OLD_DATA_SPACE, context_data_space_used_); in NewContextFromSnapshot()
65 deserializer.set_reservation(CODE_SPACE, context_code_space_used_); in NewContextFromSnapshot()
66 deserializer.set_reservation(MAP_SPACE, context_map_space_used_); in NewContextFromSnapshot()
67 deserializer.set_reservation(CELL_SPACE, context_cell_space_used_); in NewContextFromSnapshot()
68 deserializer.set_reservation(PROPERTY_CELL_SPACE, in NewContextFromSnapshot()
70 deserializer.DeserializePartial(isolate, &root); in NewContextFromSnapshot()