Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(175)

Side by Side Diff: trunk/src/tools/metrics/histograms/histograms.xml

Issue 14555006: Revert 197147 "Deeper histogram for SQLITE_IOERR." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « trunk/src/sql/connection.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- 1 <!--
2 Copyright 2013 The Chromium Authors. All rights reserved. 2 Copyright 2013 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. 4 found in the LICENSE file.
5 --> 5 -->
6 6
7 <!-- 7 <!--
8 This file is used to generate a comprehensive list of Chrome histograms along 8 This file is used to generate a comprehensive list of Chrome histograms along
9 with a detailed description for each histogram. 9 with a detailed description for each histogram.
10 10
(...skipping 5782 matching lines...) Expand 10 before | Expand all | Expand 10 after
5793 </histogram> 5793 </histogram>
5794 5794
5795 <histogram name="Sqlite.DomStorageDatabase.Error" enum="SqliteErrorCode"> 5795 <histogram name="Sqlite.DomStorageDatabase.Error" enum="SqliteErrorCode">
5796 <summary>Error codes returned by sqlite for the domstorage db.</summary> 5796 <summary>Error codes returned by sqlite for the domstorage db.</summary>
5797 </histogram> 5797 </histogram>
5798 5798
5799 <histogram name="Sqlite.Error" enum="SqliteErrorCode"> 5799 <histogram name="Sqlite.Error" enum="SqliteErrorCode">
5800 <summary>Error codes returned by sqlite for all databases.</summary> 5800 <summary>Error codes returned by sqlite for all databases.</summary>
5801 </histogram> 5801 </histogram>
5802 5802
5803 <histogram name="Sqlite.Error.IOERR" enum="SqliteIOERRCode">
5804 <summary>Error codes returned by sqlite for all databases.</summary>
5805 </histogram>
5806
5807 <histogram name="Sqlite.History.Error" enum="SqliteErrorCode"> 5803 <histogram name="Sqlite.History.Error" enum="SqliteErrorCode">
5808 <summary>Error codes returned by sqlite for the history db.</summary> 5804 <summary>Error codes returned by sqlite for the history db.</summary>
5809 </histogram> 5805 </histogram>
5810 5806
5811 <histogram name="Sqlite.Quota.Error" enum="SqliteErrorCode"> 5807 <histogram name="Sqlite.Quota.Error" enum="SqliteErrorCode">
5812 <summary>Error codes returned by sqlite for the quota db.</summary> 5808 <summary>Error codes returned by sqlite for the quota db.</summary>
5813 </histogram> 5809 </histogram>
5814 5810
5815 <histogram name="Sqlite.Text.Error" enum="SqliteErrorCode"> 5811 <histogram name="Sqlite.Text.Error" enum="SqliteErrorCode">
5816 <summary>Error codes returned by sqlite the full text db.</summary> 5812 <summary>Error codes returned by sqlite the full text db.</summary>
(...skipping 3543 matching lines...) Expand 10 before | Expand all | Expand 10 after
9360 <enum name="TabSwitchedToForegroundLaunchedWithURL" type="int"> 9356 <enum name="TabSwitchedToForegroundLaunchedWithURL" type="int">
9361 <int value="0" label="Launched without an URL"/> 9357 <int value="0" label="Launched without an URL"/>
9362 <int value="1" label="Launched with an URL"/> 9358 <int value="1" label="Launched with an URL"/>
9363 </enum> 9359 </enum>
9364 9360
9365 <enum name="TabSwitchedToForegroundRevisit" type="int"> 9361 <enum name="TabSwitchedToForegroundRevisit" type="int">
9366 <int value="0" label="First time"/> 9362 <int value="0" label="First time"/>
9367 <int value="1" label="Revisit"/> 9363 <int value="1" label="Revisit"/>
9368 </enum> 9364 </enum>
9369 9365
9370 <enum name="SqliteIOERRCode" type="int">
9371 <summary>Extended error codes returned by SQLite - see sqlite.h</summary>
9372 <int value="0" label="SQLITE_IOERR">No extended code given</int>
9373 <int value="1" label="SQLITE_IOERR_READ">Error reading from file</int>
9374 <int value="2" label="SQLITE_IOERR_SHORT_READ">Short read from file</int>
9375 <int value="3" label="SQLITE_IOERR_WRITE">
9376 Error writing to file (other than SQLITE_FULL)
9377 </int>
9378 <int value="4" label="SQLITE_IOERR_FSYNC">Error syncing to disk</int>
9379 <int value="5" label="SQLITE_IOERR_DIR_FSYNC">
9380 Error syncing directory changes to disk
9381 </int>
9382 <int value="6" label="SQLITE_IOERR_TRUNCATE">Error truncating file</int>
9383 <int value="7" label="SQLITE_IOERR_FSTAT">Error reading file metadata</int>
9384 <int value="8" label="SQLITE_IOERR_UNLOCK">Error unlocking file</int>
9385 <int value="9" label="SQLITE_IOERR_RDLOCK">
9386 Error getting read lock - should not be possible
9387 </int>
9388 <int value="10" label="SQLITE_IOERR_DELETE">Error deleting file</int>
9389 <int value="11" label="SQLITE_IOERR_BLOCKED">
9390 Deadlock due to other process access to SQLite files
9391 </int>
9392 <int value="12" label="SQLITE_IOERR_NOMEM">Error mapping shared memory</int>
9393 <int value="13" label="SQLITE_IOERR_ACCESS">
9394 Error getting file attributes (other than not found)
9395 </int>
9396 <int value="14" label="SQLITE_IOERR_CHECKRESERVEDLOCK">
9397 Error while querying lock status
9398 </int>
9399 <int value="15" label="SQLITE_IOERR_LOCK">Error acquiring lock</int>
9400 <int value="16" label="SQLITE_IOERR_CLOSE">Error closing file</int>
9401 <int value="17" label="SQLITE_IOERR_DIR_CLOSE">Unused</int>
9402 <int value="18" label="SQLITE_IOERR_SHMOPEN">Error mmapping file</int>
9403 <int value="19" label="SQLITE_IOERR_SHMSIZE">
9404 Error in stat while mmapping file
9405 </int>
9406 <int value="20" label="SQLITE_IOERR_SHMLOCK">Unused</int>
9407 </enum>
9408
9409 <enum name="TcpSocketStatus" type="int"> 9366 <enum name="TcpSocketStatus" type="int">
9410 <int value="0" label="Unknown"/> 9367 <int value="0" label="Unknown"/>
9411 <int value="1" label="Fast Connection Return"/> 9368 <int value="1" label="Fast Connection Return"/>
9412 <int value="2" label="Slow Connection Return"/> 9369 <int value="2" label="Slow Connection Return"/>
9413 <int value="3" label="Connection Error"/> 9370 <int value="3" label="Connection Error"/>
9414 <int value="4" label="Syn Data Acknowledged"/> 9371 <int value="4" label="Syn Data Acknowledged"/>
9415 <int value="5" label="Syn Data Nacked"/> 9372 <int value="5" label="Syn Data Nacked"/>
9416 <int value="6" label="Syn Data Probe Failed"/> 9373 <int value="6" label="Syn Data Probe Failed"/>
9417 <int value="7" label="No syn data + ack (can't happen)"/> 9374 <int value="7" label="No syn data + ack (can't happen)"/>
9418 <int value="8" label="No syn data + nack"/> 9375 <int value="8" label="No syn data + nack"/>
(...skipping 1298 matching lines...) Expand 10 before | Expand all | Expand 10 after
10717 <fieldtrial name="SSLResumption"> 10674 <fieldtrial name="SSLResumption">
10718 <group name="Resume_Handshake" label="Session Resumption"/> 10675 <group name="Resume_Handshake" label="Session Resumption"/>
10719 <group name="Full_Handshake" label="Full"/> 10676 <group name="Full_Handshake" label="Full"/>
10720 <affected-histogram name="Net.SSL_Connection_Latency"/> 10677 <affected-histogram name="Net.SSL_Connection_Latency"/>
10721 <affected-histogram name="Net.SSL_Connection_Latency_Google"/> 10678 <affected-histogram name="Net.SSL_Connection_Latency_Google"/>
10722 </fieldtrial> 10679 </fieldtrial>
10723 10680
10724 </fieldtrials> 10681 </fieldtrials>
10725 10682
10726 </histogram-configuration> 10683 </histogram-configuration>
OLDNEW
« no previous file with comments | « trunk/src/sql/connection.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698