Lines Matching refs:KVStore
37 class RealEnvStore final : public KVStore {
48 class MapKVStore final : public KVStore {
58 std::shared_ptr<KVStore> Clone(Isolate* isolate) const override;
61 MapKVStore(const MapKVStore& other) : KVStore(), map_(other.map_) {}
70 std::shared_ptr<KVStore> system_environment = std::make_shared<RealEnvStore>();
214 std::shared_ptr<KVStore> KVStore::Clone(Isolate* isolate) const {
218 std::shared_ptr<KVStore> copy = KVStore::CreateMapKVStore();
285 std::shared_ptr<KVStore> MapKVStore::Clone(Isolate* isolate) const {
289 std::shared_ptr<KVStore> KVStore::CreateMapKVStore() {
293 Maybe<bool> KVStore::AssignFromObject(Local<Context> context,
321 Maybe<bool> KVStore::AssignToObject(v8::Isolate* isolate,