OLD | NEW |
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 5731 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5742 </histogram> | 5742 </histogram> |
5743 | 5743 |
5744 <histogram name="Sqlite.DomStorageDatabase.Error" enum="SqliteErrorCode"> | 5744 <histogram name="Sqlite.DomStorageDatabase.Error" enum="SqliteErrorCode"> |
5745 <summary>Error codes returned by sqlite for the domstorage db.</summary> | 5745 <summary>Error codes returned by sqlite for the domstorage db.</summary> |
5746 </histogram> | 5746 </histogram> |
5747 | 5747 |
5748 <histogram name="Sqlite.Error" enum="SqliteErrorCode"> | 5748 <histogram name="Sqlite.Error" enum="SqliteErrorCode"> |
5749 <summary>Error codes returned by sqlite for all databases.</summary> | 5749 <summary>Error codes returned by sqlite for all databases.</summary> |
5750 </histogram> | 5750 </histogram> |
5751 | 5751 |
| 5752 <histogram name="Sqlite.Error.IOERR" enum="SqliteIOERRCode"> |
| 5753 <summary>Error codes returned by sqlite for all databases.</summary> |
| 5754 </histogram> |
| 5755 |
5752 <histogram name="Sqlite.History.Error" enum="SqliteErrorCode"> | 5756 <histogram name="Sqlite.History.Error" enum="SqliteErrorCode"> |
5753 <summary>Error codes returned by sqlite for the history db.</summary> | 5757 <summary>Error codes returned by sqlite for the history db.</summary> |
5754 </histogram> | 5758 </histogram> |
5755 | 5759 |
5756 <histogram name="Sqlite.Quota.Error" enum="SqliteErrorCode"> | 5760 <histogram name="Sqlite.Quota.Error" enum="SqliteErrorCode"> |
5757 <summary>Error codes returned by sqlite for the quota db.</summary> | 5761 <summary>Error codes returned by sqlite for the quota db.</summary> |
5758 </histogram> | 5762 </histogram> |
5759 | 5763 |
5760 <histogram name="Sqlite.Text.Error" enum="SqliteErrorCode"> | 5764 <histogram name="Sqlite.Text.Error" enum="SqliteErrorCode"> |
5761 <summary>Error codes returned by sqlite the full text db.</summary> | 5765 <summary>Error codes returned by sqlite the full text db.</summary> |
(...skipping 3395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
9157 </int> | 9161 </int> |
9158 <int value="26" label="SQLITE_NOTADB"> | 9162 <int value="26" label="SQLITE_NOTADB"> |
9159 File opened that is not a database file | 9163 File opened that is not a database file |
9160 </int> | 9164 </int> |
9161 <int value="100" label="SQLITE_ROW">sqlite3_step() has another row ready</int> | 9165 <int value="100" label="SQLITE_ROW">sqlite3_step() has another row ready</int> |
9162 <int value="101" label="SQLITE_DONE"> | 9166 <int value="101" label="SQLITE_DONE"> |
9163 sqlite3_step() has finished executing | 9167 sqlite3_step() has finished executing |
9164 </int> | 9168 </int> |
9165 </enum> | 9169 </enum> |
9166 | 9170 |
| 9171 <enum name="SqliteIOERRCode" type="int"> |
| 9172 <summary>Extended error codes returned by SQLite - see sqlite.h</summary> |
| 9173 <int value="0" label="SQLITE_IOERR">No extended code given</int> |
| 9174 <int value="1" label="SQLITE_IOERR_READ">Error reading from file</int> |
| 9175 <int value="2" label="SQLITE_IOERR_SHORT_READ">Short read from file</int> |
| 9176 <int value="3" label="SQLITE_IOERR_WRITE"> |
| 9177 Error writing to file (other than SQLITE_FULL) |
| 9178 </int> |
| 9179 <int value="4" label="SQLITE_IOERR_FSYNC">Error syncing to disk</int> |
| 9180 <int value="5" label="SQLITE_IOERR_DIR_FSYNC"> |
| 9181 Error syncing directory changes to disk |
| 9182 </int> |
| 9183 <int value="6" label="SQLITE_IOERR_TRUNCATE">Error truncating file</int> |
| 9184 <int value="7" label="SQLITE_IOERR_FSTAT">Error reading file metadata</int> |
| 9185 <int value="8" label="SQLITE_IOERR_UNLOCK">Error unlocking file</int> |
| 9186 <int value="9" label="SQLITE_IOERR_RDLOCK"> |
| 9187 Error getting read lock - should not be possible |
| 9188 </int> |
| 9189 <int value="10" label="SQLITE_IOERR_DELETE">Error deleting file</int> |
| 9190 <int value="11" label="SQLITE_IOERR_BLOCKED"> |
| 9191 Deadlock due to other process access to SQLite files |
| 9192 </int> |
| 9193 <int value="12" label="SQLITE_IOERR_NOMEM">Error mapping shared memory</int> |
| 9194 <int value="13" label="SQLITE_IOERR_ACCESS"> |
| 9195 Error getting file attributes (other than not found) |
| 9196 </int> |
| 9197 <int value="14" label="SQLITE_IOERR_CHECKRESERVEDLOCK"> |
| 9198 Error while querying lock status |
| 9199 </int> |
| 9200 <int value="15" label="SQLITE_IOERR_LOCK">Error acquiring lock</int> |
| 9201 <int value="16" label="SQLITE_IOERR_CLOSE">Error closing file</int> |
| 9202 <int value="17" label="SQLITE_IOERR_DIR_CLOSE">Unused</int> |
| 9203 <int value="18" label="SQLITE_IOERR_SHMOPEN">Error mmapping file</int> |
| 9204 <int value="19" label="SQLITE_IOERR_SHMSIZE"> |
| 9205 Error in stat while mmapping file |
| 9206 </int> |
| 9207 <int value="20" label="SQLITE_IOERR_SHMLOCK">Unused</int> |
| 9208 </enum> |
| 9209 |
9167 <enum name="TcpSocketStatus" type="int"> | 9210 <enum name="TcpSocketStatus" type="int"> |
9168 <int value="0" label="Unknown"/> | 9211 <int value="0" label="Unknown"/> |
9169 <int value="1" label="Fast Connection Return"/> | 9212 <int value="1" label="Fast Connection Return"/> |
9170 <int value="2" label="Slow Connection Return"/> | 9213 <int value="2" label="Slow Connection Return"/> |
9171 <int value="3" label="Connection Error"/> | 9214 <int value="3" label="Connection Error"/> |
9172 <int value="4" label="Syn Data Acknowledged"/> | 9215 <int value="4" label="Syn Data Acknowledged"/> |
9173 <int value="5" label="Syn Data Nacked"/> | 9216 <int value="5" label="Syn Data Nacked"/> |
9174 <int value="6" label="Syn Data Probe Failed"/> | 9217 <int value="6" label="Syn Data Probe Failed"/> |
9175 <int value="7" label="No syn data + ack (can't happen)"/> | 9218 <int value="7" label="No syn data + ack (can't happen)"/> |
9176 <int value="8" label="No syn data + nack"/> | 9219 <int value="8" label="No syn data + nack"/> |
(...skipping 1275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
10452 <fieldtrial name="SSLResumption"> | 10495 <fieldtrial name="SSLResumption"> |
10453 <group name="Resume_Handshake" label="Session Resumption"/> | 10496 <group name="Resume_Handshake" label="Session Resumption"/> |
10454 <group name="Full_Handshake" label="Full"/> | 10497 <group name="Full_Handshake" label="Full"/> |
10455 <affected-histogram name="Net.SSL_Connection_Latency"/> | 10498 <affected-histogram name="Net.SSL_Connection_Latency"/> |
10456 <affected-histogram name="Net.SSL_Connection_Latency_Google"/> | 10499 <affected-histogram name="Net.SSL_Connection_Latency_Google"/> |
10457 </fieldtrial> | 10500 </fieldtrial> |
10458 | 10501 |
10459 </fieldtrials> | 10502 </fieldtrials> |
10460 | 10503 |
10461 </histogram-configuration> | 10504 </histogram-configuration> |
OLD | NEW |