Home | History | Annotate | only in /external/chromium_org/third_party/leveldatabase
Up to higher level directory
NameDateSize
chromium_logger.h03-Dec-20142.4K
env_chromium.cc03-Dec-201425.8K
env_chromium.h03-Dec-20146.9K
env_chromium_stdio.cc03-Dec-201411.4K
env_chromium_stdio.h03-Dec-20142.2K
env_chromium_unittest.cc03-Dec-20148.1K
env_chromium_win.cc03-Dec-201411.3K
env_chromium_win.h03-Dec-20142.5K
env_idb.h03-Dec-2014308
leveldatabase.gyp03-Dec-201410.3K
leveldatabase.target.darwin-arm.mk03-Dec-20149.6K
leveldatabase.target.darwin-arm64.mk03-Dec-20148.9K
leveldatabase.target.darwin-mips.mk03-Dec-20149.2K
leveldatabase.target.darwin-x86.mk03-Dec-20149.2K
leveldatabase.target.darwin-x86_64.mk03-Dec-20149.2K
leveldatabase.target.linux-arm.mk03-Dec-20149.6K
leveldatabase.target.linux-arm64.mk03-Dec-20148.9K
leveldatabase.target.linux-mips.mk03-Dec-20149.2K
leveldatabase.target.linux-x86.mk03-Dec-20149.2K
leveldatabase.target.linux-x86_64.mk03-Dec-20149.2K
OWNERS03-Dec-2014125
port/03-Dec-2014
README.chromium03-Dec-20141.2K
src/03-Dec-2014

README.chromium

      1 Name: LevelDB: A Fast Persistent Key-Value Store
      2 Short Name: leveldb
      3 URL: http://code.google.com/p/leveldb/
      4 Version: r80
      5 License: New BSD
      6 License File: src/LICENSE
      7 Security Critical: yes
      8 
      9 Description:
     10 Alternative to SQLite used as the backend for IndexedDB and internally by the
     11 FileSystem API implementation and others.
     12 
     13 Local Additions:
     14 * gyp file for building in chromium
     15 * port/port_chromium.{h,cc}, env_chromium.{h,cc}, env_chromium_stdio.{h,cc}, and
     16   env_chromium_win.{h,cc} provide (POSIX and Windows respectively) chromium
     17   implementations of primitives used by leveldb.  E.g. threading, file handling,
     18   etc. env_chromium.h allows re-use of some utility functions.
     19 * chromium_logger.h was copied from src/util/posix_logger.h and updated to use
     20   chrome primitives in place of some posix primitives
     21 * env_idb.h allows IndexedDB to emit uma stats under separate histograms from
     22   other LevelDB consumers.
     23 * ChromiumEnv wraps low-level I/O calls that may be interrupted with a
     24   HANDLE_EINTR macro that retries the call.
     25 * TRACE macros/thread name for chrome://tracing diagnostics
     26 * Handle in-process exclusive file locks, based on src/util/env_posix.cc
     27 * Unit tests for the Chromium environment.
     28