1 write to Storage
Microsoft.CodeAnalysis.Workspaces (1)
Storage\SQLite\v2\SQLitePersistentStorage.Accessor.cs (1)
56
Storage
= storage;
13 references to Storage
Microsoft.CodeAnalysis.Workspaces (13)
Storage\SQLite\v2\SQLitePersistentStorage.Accessor.cs (13)
121
=>
Storage
.PerformReadAsync(
138
=>
Storage
.PerformReadAsync(
166
Contract.ThrowIfFalse(TaskScheduler.Current == this.
Storage
.Scheduler.ConcurrentScheduler);
170
if (!
Storage
._shutdownTokenSource.IsCancellationRequested)
172
using var _ = this.
Storage
.GetPooledConnection(out var connection);
180
Storage
.TryGetStringId(connection, name, allowWrite: false) is int dataNameId)
218
=>
Storage
.PerformWriteAsync(
225
Contract.ThrowIfFalse(TaskScheduler.Current == this.
Storage
.Scheduler.ExclusiveScheduler);
229
if (!
Storage
._shutdownTokenSource.IsCancellationRequested)
231
using var _ = this.
Storage
.GetPooledConnection(out var connection);
237
Storage
.TryGetStringId(connection, dataName, allowWrite: true) is int dataNameId)
364
Contract.ThrowIfFalse(TaskScheduler.Current == this.
Storage
.Scheduler.ExclusiveScheduler);
381
Storage
.EnqueueFlushTask();