Home | History | Annotate | Download | only in extensions

Lines Matching defs:pickle

13 #include "base/pickle.h"
234 // Pickle user scripts and return pointer to the shared memory.
236 Pickle pickle;
237 pickle.WriteSize(scripts.size());
243 script.Pickle(&pickle);
248 pickle.WriteData(contents.data(), contents.length());
252 pickle.WriteData(contents.data(), contents.length());
259 if (!shared_memory->CreateAndMapAnonymous(pickle.size()))
262 // Copy the pickle to shared memory.
263 memcpy(shared_memory->memory(), pickle.data(), pickle.size());