[QM_TRY] Failures in dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized
Categories
(Core :: Storage: Quota Manager, enhancement, P3)
Tracking
()
People
(Reporter: jstutte, Unassigned, NeedInfo)
References
(Depends on 2 open bugs, Blocks 1 open bug)
Details
(Keywords: leave-open)
Attachments
(1 file)
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
2 | 2 | 2 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6011:NS_ERROR_FILE_ACCESS_DENIED |
1 | 1 | 1 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6011:NS_ERROR_STORAGE_BUSY |
Comment 1•2 years ago
|
||
NS_ERROR_FILE_ACCESS_DENIED seems less actionable. NS_ERROR_STORAGE_BUSY suggests a profile race or external software, but for EnsureStorageIsInitialized it might be appropriate to special-case this somewhat once we see the error rate for this.
Reporter | ||
Comment 2•2 years ago
|
||
NS_ERROR_STORAGE_BUSY
maps from SQLITE_BUSY
which would suggest we have another thread/process running that does something with our DB while we want to open it. Could an incomplete shutdown with hanging process and contemporary restart attempt on the same profile cause something like this?
Reporter | ||
Comment 3•2 years ago
|
||
As a first measure, I would promote this to a diagnostic assert, just to ensure we do not mess ourselves with the threads somewhere.
Reporter | ||
Updated•2 years ago
|
Reporter | ||
Comment 4•2 years ago
|
||
Updated•2 years ago
|
Pushed by jstutte@mozilla.com: https://hg.mozilla.org/integration/autoland/rev/d775360f9c70 Promote AssertIsOnIOThread to DiagnosticAssertIsOnIOThread in QuotaManager::EnsureStorageIsInitialized r=dom-storage-reviewers,janv
Comment 6•2 years ago
|
||
bugherder |
Reporter | ||
Comment 7•2 years ago
|
||
I found a warning that might be better an error?
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 2 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6028:NS_ERROR_FILE_NO_DEVICE_SPACE |
Reporter | ||
Updated•2 years ago
|
Reporter | ||
Comment 8•2 years ago
|
||
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
5 | 14 | 28 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#5999:NS_ERROR_STORAGE_BUSY |
1 | 4 | 8 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#5999:NS_ERROR_FILE_ACCESS_DENIED |
1 | 1 | 1 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6003:NS_ERROR_FILE_ACCESS_DENIED |
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
4 | 12 | 24 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#5999:NS_ERROR_STORAGE_BUSY |
1 | 5 | 10 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#5999:NS_ERROR_FILE_ACCESS_DENIED |
1 | 2 | 4 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#5999:NS_ERROR_STORAGE_BUSY |
1 | 1 | 2 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6003:NS_ERROR_FILE_ACCESS_DENIED |
Reporter | ||
Comment 9•2 years ago
|
||
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 2 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6013:NS_ERROR_FILE_ACCESS_DENIED |
Reporter | ||
Comment 10•2 years ago
|
||
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 2 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6013:NS_ERROR_STORAGE_BUSY |
1 | 1 | 2 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6013:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6806:NS_ERROR_STORAGE_BUSY |
Reporter | ||
Comment 11•2 years ago
|
||
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 5 | 30 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6013:NS_ERROR_STORAGE_BUSY |
1 | 1 | 20 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6013:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6816:NS_ERROR_STORAGE_BUSY |
Reporter | ||
Comment 12•2 years ago
|
||
So these propagation stacks seem truncated prematurely. But NS_ERROR_STORAGE_BUSY
is concerning. Looking at bug 1619325: Could it be that we did not yet eliminate all possible cases where idle maintenance might have started before storage is initialized?
Also I noticed that in most of the places where we call EnsureStorageIsInitialized
we check before if we are shutting down, but not everywhere (cache for example). We might want to move that check into EnsureStorageIsInitialized
and EnsureTemporaryStorageIsInitialized
? An initialization attempt during shutdown could interfere with many other things, too.
Reporter | ||
Comment 13•2 years ago
|
||
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 4 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6033:NS_ERROR_STORAGE_BUSY |
1 | 1 | 2 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6033:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6816:NS_ERROR_STORAGE_BUSY |
1 | 1 | 1 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6048:NS_ERROR_FILE_TARGET_DOES_NOT_EXIST |
Comment 14•2 years ago
|
||
Taken from Attachment 9236979 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 2 | 21 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6017:NS_ERROR_STORAGE_BUSY |
1 | 1 | 17 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6017:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6815:NS_ERROR_STORAGE_BUSY |
1 | 1 | 2 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6017:NS_ERROR_STORAGE_BUSY |
1 | 1 | 2 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6017:NS_ERROR_STORAGE_BUSY |
Comment 15•2 years ago
|
||
Taken from Attachment 9237504 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 8 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6017:NS_ERROR_STORAGE_BUSY |
1 | 1 | 6 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6017:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6815:NS_ERROR_STORAGE_BUSY |
Reporter | ||
Updated•2 years ago
|
Comment 16•2 years ago
|
||
Taken from Attachment 9238538 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 17 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6017:NS_ERROR_STORAGE_BUSY |
1 | 1 | 15 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6017:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6815:NS_ERROR_STORAGE_BUSY |
Comment 17•2 years ago
|
||
Taken from Attachment 9239692 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 2 | 14 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6017:NS_ERROR_STORAGE_BUSY |
1 | 1 | 10 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6017:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6815:NS_ERROR_STORAGE_BUSY |
Comment 18•2 years ago
|
||
Taken from Attachment 9240325 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 2 | 14 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6113:NS_ERROR_STORAGE_BUSY |
1 | 1 | 10 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6113:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6815:NS_ERROR_STORAGE_BUSY |
Comment 19•2 years ago
|
||
Taken from Attachment 9242094 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 2 | 26 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6113:NS_ERROR_STORAGE_BUSY |
1 | 1 | 22 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6113:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6815:NS_ERROR_STORAGE_BUSY |
Comment 20•2 years ago
|
||
Taken from Attachment 9242714 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 3 | 48 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6113:NS_ERROR_STORAGE_BUSY |
1 | 1 | 42 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6113:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6815:NS_ERROR_STORAGE_BUSY |
Comment 21•2 years ago
|
||
Taken from Attachment 9243039 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 2 | 15 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6113:NS_ERROR_STORAGE_BUSY |
1 | 1 | 11 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6113:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6815:NS_ERROR_STORAGE_BUSY |
Comment 22•2 years ago
|
||
Taken from Attachment 9245269 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
2 | 3 | 6 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6154:NS_ERROR_FILE_ACCESS_DENIED |
Comment 23•1 year ago
|
||
Taken from Attachment 9245933 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 11 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6162:NS_ERROR_STORAGE_BUSY |
1 | 1 | 9 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6162:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6836:NS_ERROR_STORAGE_BUSY |
Comment 24•1 year ago
|
||
Taken from Attachment 9247551 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 2 | 14 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6186:NS_ERROR_STORAGE_BUSY |
1 | 1 | 10 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6186:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6836:NS_ERROR_STORAGE_BUSY |
Comment 25•1 year ago
|
||
Taken from Attachment 9248707 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 2 | 17 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6192:NS_ERROR_STORAGE_BUSY |
1 | 1 | 13 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6192:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6836:NS_ERROR_STORAGE_BUSY |
Comment 26•1 year ago
|
||
Taken from Attachment 9249782 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 2 | 10 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6192:NS_ERROR_STORAGE_BUSY |
1 | 1 | 6 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6192:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6836:NS_ERROR_STORAGE_BUSY |
1 | 2 | 6 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6192:NS_ERROR_STORAGE_BUSY |
1 | 1 | 2 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6192:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6796:NS_ERROR_STORAGE_BUSY |
Comment 27•1 year ago
|
||
Taken from Attachment 9250741 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 7 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6191:NS_ERROR_STORAGE_BUSY |
1 | 1 | 5 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6191:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6796:NS_ERROR_STORAGE_BUSY |
1 | 1 | 3 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6192:NS_ERROR_FILE_ACCESS_DENIED |
1 | 1 | 1 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6192:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#6796:NS_ERROR_FILE_ACCESS_DENIED |
Comment 28•1 year ago
|
||
Taken from Attachment 9251435 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
2 | 3 | 29 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6191:NS_ERROR_STORAGE_BUSY |
1 | 1 | 28 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6191:NS_ERROR_STORAGE_BUSY |
1 | 1 | 26 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6191:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6796:NS_ERROR_STORAGE_BUSY |
1 | 1 | 23 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6191:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6796:NS_ERROR_STORAGE_BUSY |
Comment 29•1 year ago
|
||
Taken from Attachment 9251918 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
2 | 3 | 44 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6191:NS_ERROR_STORAGE_BUSY |
1 | 1 | 37 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6191:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6796:NS_ERROR_STORAGE_BUSY |
1 | 1 | 1 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6191:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6796:NS_ERROR_STORAGE_BUSY <- dom/quota/ActorsParent.cpp#6191:NS_ERROR_STORAGE_BUSY <- dom/quota/ActorsParent.cpp#6191:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6796:NS_ERROR_STORAGE_BUSY <- dom/quota/ActorsParent.cpp#6191:NS_ERROR_STORAGE_BUSY <- dom/quota/ActorsParent.cpp#6191:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6796:NS_ERROR_STORAGE_BUSY |
Comment 30•1 year ago
|
||
Taken from Attachment 9252504 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 2 | 39 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6191:NS_ERROR_STORAGE_BUSY |
1 | 1 | 35 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6191:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6796:NS_ERROR_STORAGE_BUSY |
Comment 31•1 year ago
|
||
Taken from Attachment 9252886 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 9 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6191:NS_ERROR_STORAGE_BUSY |
1 | 1 | 7 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6191:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6830:NS_ERROR_STORAGE_BUSY |
Comment 32•1 year ago
|
||
Taken from Attachment 9253914 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 5 | 29 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6192:NS_ERROR_STORAGE_BUSY |
1 | 1 | 19 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6192:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6782:NS_ERROR_STORAGE_BUSY |
1 | 3 | 9 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6192:NS_ERROR_STORAGE_BUSY |
1 | 1 | 3 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6192:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6782:NS_ERROR_STORAGE_BUSY |
Comment 33•1 year ago
|
||
Taken from Attachment 9255050 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 2 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6200:NS_ERROR_STORAGE_IOERR |
1 | 1 | 2 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6200:NS_ERROR_STORAGE_IOERR <- dom/localstorage/ActorsParent.cpp#6782:NS_ERROR_STORAGE_IOERR |
Comment 34•1 year ago
|
||
Taken from Attachment 9256168 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
3 | 13 | 76 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6169:NS_ERROR_STORAGE_BUSY |
1 | 1 | 50 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6169:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6772:NS_ERROR_STORAGE_BUSY |
Comment 35•1 year ago
|
||
Taken from Attachment 9257839 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
2 | 4 | 24 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6169:NS_ERROR_STORAGE_BUSY |
1 | 1 | 16 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6169:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6844:NS_ERROR_STORAGE_BUSY |
Comment 36•1 year ago
|
||
Taken from Attachment 9259961 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 5 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6169:NS_ERROR_STORAGE_BUSY |
1 | 1 | 3 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6169:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6844:NS_ERROR_STORAGE_BUSY |
1 | 1 | 2 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6169:NS_ERROR_FILE_ACCESS_DENIED |
Comment 37•1 year ago
|
||
Taken from Attachment 9261549 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 2 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6169:NS_ERROR_STORAGE_BUSY |
Comment 38•1 year ago
|
||
Taken from Attachment 9262116 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 40 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6169:NS_ERROR_STORAGE_BUSY |
1 | 1 | 38 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6169:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6862:NS_ERROR_STORAGE_BUSY |
Comment 39•1 year ago
|
||
Taken from Attachment 9263751 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 4 | 228 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6169:NS_ERROR_FILE_ACCESS_DENIED |
1 | 1 | 220 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6169:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#6862:NS_ERROR_FILE_ACCESS_DENIED |
1 | 2 | 8 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6169:NS_ERROR_FILE_ACCESS_DENIED |
1 | 1 | 4 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6169:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#6862:NS_ERROR_FILE_ACCESS_DENIED |
Comment 40•1 year ago
|
||
Taken from Attachment 9264398 [details].
Comment 41•1 year ago
|
||
Taken from Attachment 9264854 [details].
Comment 42•1 year ago
|
||
Taken from Attachment 9265394 [details].
Comment 43•1 year ago
|
||
Taken from Attachment 9265725 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 2 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6173:NS_ERROR_FILE_ACCESS_DENIED |
Comment 44•1 year ago
|
||
Taken from Attachment 9266276 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 3 | 227 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6173:NS_ERROR_FILE_ACCESS_DENIED |
1 | 1 | 221 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6173:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#6931:NS_ERROR_FILE_ACCESS_DENIED |
Comment 45•1 year ago
|
||
Taken from Attachment 9267194 [details].
Comment 46•1 year ago
|
||
Taken from Attachment 9267680 [details].
Comment 47•1 year ago
|
||
Taken from Attachment 9268245 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 5 | 262 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6173:NS_ERROR_FILE_ACCESS_DENIED |
1 | 1 | 252 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6173:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#6969:NS_ERROR_FILE_ACCESS_DENIED |
1 | 1 | 108 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6173:NS_ERROR_FILE_ACCESS_DENIED |
1 | 1 | 106 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6173:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#6978:NS_ERROR_FILE_ACCESS_DENIED |
1 | 3 | 31 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6173:NS_ERROR_FILE_ACCESS_DENIED |
1 | 1 | 25 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6173:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#6978:NS_ERROR_FILE_ACCESS_DENIED |
1 | 1 | 2 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6173:NS_ERROR_FILE_ACCESS_DENIED |
1 | 1 | 2 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6173:NS_ERROR_STORAGE_BUSY |
1 | 1 | 2 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6173:NS_ERROR_FILE_ACCESS_DENIED |
Comment 48•1 year ago
|
||
Taken from Attachment 9268673 [details].
Comment 49•1 year ago
|
||
Taken from Attachment 9269234 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 5 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6196:NS_ERROR_FILE_ACCESS_DENIED |
1 | 1 | 3 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6196:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#6978:NS_ERROR_FILE_ACCESS_DENIED |
Comment 50•1 year ago
|
||
Taken from Attachment 9269668 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 3 | 25 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6196:NS_ERROR_STORAGE_BUSY |
1 | 1 | 19 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6196:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6978:NS_ERROR_STORAGE_BUSY |
Comment 51•1 year ago
|
||
Taken from Attachment 9270720 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 2 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6196:NS_ERROR_STORAGE_BUSY |
Comment 52•11 months ago
|
||
Taken from Attachment 9273265 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
5 | 12 | 100 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6263:NS_ERROR_FILE_ACCESS_DENIED |
1 | 1 | 76 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6263:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_FILE_ACCESS_DENIED |
1 | 3 | 16 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6263:NS_ERROR_FILE_ACCESS_DENIED |
1 | 1 | 10 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6263:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_FILE_ACCESS_DENIED |
Comment 53•11 months ago
|
||
Taken from Attachment 9274230 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 6 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6263:NS_ERROR_STORAGE_BUSY |
1 | 1 | 4 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6263:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_STORAGE_BUSY |
1 | 1 | 2 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6263:NS_ERROR_FILE_ACCESS_DENIED |
Comment 54•11 months ago
|
||
Taken from Attachment 9274666 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 2 | 7 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6265:NS_ERROR_STORAGE_BUSY |
1 | 1 | 6 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6263:NS_ERROR_FILE_ACCESS_DENIED |
1 | 1 | 4 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6263:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_FILE_ACCESS_DENIED |
1 | 1 | 3 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6265:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_STORAGE_BUSY |
Comment 55•11 months ago
|
||
Taken from Attachment 9275142 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 6 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6265:NS_ERROR_STORAGE_BUSY |
1 | 1 | 4 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized | dom/quota/ActorsParent.cpp#6265:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_STORAGE_BUSY |
Comment 56•10 months ago
|
||
Taken from Attachment 9279436 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 2 | 30 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#6267:NS_ERROR_STORAGE_BUSY |
1 | 1 | 26 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#6267:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_STORAGE_BUSY |
Comment 57•9 months ago
|
||
Taken from Attachment 9281030 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
3 | 16 | 55 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#6251:NS_ERROR_FILE_ACCESS_DENIED |
1 | 1 | 23 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#6251:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_FILE_ACCESS_DENIED |
Comment 58•9 months ago
|
||
Taken from Attachment 9283105 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 1 | 12 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#6251:NS_ERROR_STORAGE_BUSY |
1 | 1 | 10 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#6251:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_STORAGE_BUSY |
Comment 59•9 months ago
|
||
Taken from Attachment 9283698 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 1 | 1 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#6260:NS_ERROR_STORAGE_IOERR |
Comment 60•9 months ago
|
||
Taken from Attachment 9284043 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 1 | 3 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#6251:NS_ERROR_STORAGE_BUSY |
1 | 1 | 1 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#6251:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_STORAGE_BUSY |
Comment 61•9 months ago
|
||
Taken from Attachment 9284542 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 2 | 25 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#6251:NS_ERROR_STORAGE_BUSY |
1 | 1 | 21 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#6251:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_STORAGE_BUSY |
1 | 1 | 10 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#6251:NS_ERROR_STORAGE_BUSY |
1 | 1 | 8 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#6251:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_STORAGE_BUSY |
1 | 1 | 5 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#6251:NS_ERROR_FILE_ACCESS_DENIED |
1 | 1 | 3 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#6251:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_FILE_ACCESS_DENIED |
Comment 62•8 months ago
|
||
Taken from Attachment 9284944 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 1 | 7 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#6251:NS_ERROR_STORAGE_BUSY |
1 | 1 | 5 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#6251:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_STORAGE_BUSY |
Comment 63•8 months ago
|
||
Taken from Attachment 9285537 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
2 | 6 | 27 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#6251:NS_ERROR_STORAGE_BUSY |
1 | 1 | 15 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#6251:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_STORAGE_BUSY |
Comment 64•8 months ago
|
||
Taken from Attachment 9285884 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 1 | 9 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#6238:NS_ERROR_STORAGE_BUSY |
1 | 1 | 7 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#6238:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_STORAGE_BUSY |
Comment 65•7 months ago
|
||
Taken from Attachment 9290912 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 1 | 13 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#6278:NS_ERROR_STORAGE_BUSY |
1 | 1 | 11 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#6278:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_STORAGE_BUSY |
Comment 66•5 months ago
|
||
Taken from Attachment 9297844 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 2 | 22 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#6308:NS_ERROR_STORAGE_BUSY |
1 | 1 | 18 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#6308:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_STORAGE_BUSY |
Comment 67•5 months ago
|
||
Taken from Attachment 9298458 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 1 | 3 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#6312:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_FILE_ACCESS_DENIED |
Comment 68•5 months ago
|
||
Taken from Attachment 9299546 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 4 | 38 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#6309:NS_ERROR_FILE_ACCESS_DENIED |
1 | 1 | 30 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#6309:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_FILE_ACCESS_DENIED |
1 | 2 | 20 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#6309:NS_ERROR_STORAGE_BUSY |
1 | 1 | 16 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#6309:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_STORAGE_BUSY |
2 | 2 | 8 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#6309:NS_ERROR_FILE_ACCESS_DENIED |
1 | 1 | 4 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#6309:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_FILE_ACCESS_DENIED |
Comment 69•5 months ago
|
||
Taken from Attachment 9300634 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 1 | 3 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#6309:NS_ERROR_FILE_ACCESS_DENIED |
1 | 1 | 2 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#6323:NS_ERROR_STORAGE_BUSY |
1 | 1 | 1 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#6309:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_FILE_ACCESS_DENIED |
Comment 70•4 months ago
|
||
Taken from Attachment 9302351 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 1 | 3 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#5759:NS_ERROR_STORAGE_BUSY |
1 | 1 | 1 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#5759:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_STORAGE_BUSY |
Comment 71•4 months ago
|
||
Taken from Attachment 9302903 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 2 | 7 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#5759:NS_ERROR_FILE_ACCESS_DENIED |
1 | 1 | 6 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#5759:NS_ERROR_STORAGE_BUSY |
1 | 1 | 4 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#5759:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_STORAGE_BUSY |
1 | 1 | 3 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#5759:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_FILE_ACCESS_DENIED |
Comment 72•4 months ago
|
||
Taken from Attachment 9305591 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 2 | 11 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#5759:NS_ERROR_FILE_ACCESS_DENIED |
1 | 1 | 7 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#5759:NS_ERROR_STORAGE_BUSY |
1 | 1 | 7 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#5759:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_FILE_ACCESS_DENIED |
1 | 2 | 6 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#5759:NS_ERROR_STORAGE_BUSY |
1 | 1 | 5 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#5759:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_STORAGE_BUSY |
1 | 1 | 2 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#5759:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_STORAGE_BUSY |
Comment 73•4 months ago
|
||
Taken from Attachment 9306704 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 1 | 9 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#5768:NS_ERROR_STORAGE_IOERR <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_STORAGE_IOERR |
1 | 1 | 8 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#5768:NS_ERROR_STORAGE_IOERR <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_STORAGE_IOERR |
1 | 1 | 4 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#5768:NS_ERROR_STORAGE_IOERR <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_STORAGE_IOERR |
1 | 1 | 2 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#5768:NS_ERROR_STORAGE_IOERR |
1 | 1 | 1 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#5768:NS_ERROR_STORAGE_IOERR |
1 | 1 | 1 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#5768:NS_ERROR_STORAGE_IOERR |
Comment 74•3 months ago
|
||
Taken from Attachment 9309026 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 2 | 5 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#5760:NS_ERROR_STORAGE_BUSY |
1 | 1 | 3 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#5760:NS_ERROR_STORAGE_BUSY |
1 | 1 | 1 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#5760:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_STORAGE_BUSY |
1 | 1 | 1 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#5760:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_STORAGE_BUSY |
Comment 75•3 months ago
|
||
Taken from Attachment 9310408 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 2 | 10 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#5760:NS_ERROR_STORAGE_BUSY |
1 | 1 | 6 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#5760:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_STORAGE_BUSY |
1 | 1 | 2 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#5760:NS_ERROR_STORAGE_BUSY |
Comment 76•2 months ago
|
||
Taken from Attachment 9311415 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 1 | 2 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#5760:NS_ERROR_FILE_ACCESS_DENIED |
Comment 77•2 months ago
|
||
Taken from Attachment 9313090 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 1 | 2 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#5760:NS_ERROR_STORAGE_BUSY |
Comment 78•2 months ago
|
||
Taken from Attachment 9314312 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 1 | 6 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#5769:NS_ERROR_STORAGE_IOERR <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_STORAGE_IOERR |
1 | 1 | 5 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#5769:NS_ERROR_STORAGE_IOERR |
Comment 79•28 days ago
|
||
Taken from Attachment 9318809 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 1 | 13 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#5763:NS_ERROR_STORAGE_BUSY |
1 | 1 | 11 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#5763:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_STORAGE_BUSY |
Comment 80•25 days ago
|
||
Taken from Attachment 9319539 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 2 | 24 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#5763:NS_ERROR_STORAGE_BUSY |
1 | 1 | 20 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#5763:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_STORAGE_BUSY |
1 | 1 | 13 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#5763:NS_ERROR_STORAGE_BUSY |
1 | 1 | 11 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#5763:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_STORAGE_BUSY |
Comment 81•21 days ago
|
||
Taken from Attachment 9320070 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 2 | 11 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#5763:NS_ERROR_STORAGE_BUSY |
1 | 1 | 7 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#5763:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_STORAGE_BUSY |
1 | 1 | 3 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#5763:NS_ERROR_STORAGE_BUSY |
1 | 1 | 2 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#5763:NS_ERROR_STORAGE_BUSY |
1 | 1 | 1 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#5763:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_STORAGE_BUSY |
Comment 82•18 days ago
|
||
Taken from Attachment 9320833 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 1 | 3 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#5767:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_FILE_ACCESS_DENIED |
1 | 1 | 2 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#5763:NS_ERROR_STORAGE_BUSY |
1 | 1 | 2 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#5767:NS_ERROR_FILE_ACCESS_DENIED |
Comment 83•11 days ago
|
||
Taken from Attachment 9322175 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 1 | 3 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#5763:NS_ERROR_FILE_ACCESS_DENIED |
1 | 1 | 1 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#5763:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_FILE_ACCESS_DENIED |
Comment 84•7 days ago
|
||
Taken from Attachment 9322825 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 5 | 35 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::quota::FirstInitializationAttempt::Storage) | dom/quota/ActorsParent.cpp#5763:NS_ERROR_STORAGE_BUSY |
1 | 1 | 25 | dom/quota/ActorsParent.cpp:QuotaManager::EnsureStorageIsInitialized (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/quota/ActorsParent.cpp#5763:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6949:NS_ERROR_STORAGE_BUSY |
Description
•