Home
last modified time | relevance | path

Searched refs:library (Results 1 – 25 of 28) sorted by relevance

12

/rocksdb-6.9/utilities/
Dobject_registry_test.cc66 registry->AddLibrary(library); in TEST_F()
67 library->Register<Env>( in TEST_F()
91 registry->AddLibrary(library); in TEST_F()
92 library->Register<Env>( in TEST_F()
97 library->Register<Env>( in TEST_F()
115 registry->AddLibrary(library); in TEST_F()
116 library->Register<Env>( in TEST_F()
121 library->Register<Env>( in TEST_F()
139 registry->AddLibrary(library); in TEST_F()
140 library->Register<Env>( in TEST_F()
[all …]
/rocksdb-6.9/
Dthirdparty.inc27 message(STATUS "GFLAGS library is enabled")
48 message(STATUS "GFLAGS library is disabled")
66 message(STATUS "SNAPPY library is enabled")
87 message(STATUS "SNAPPY library is disabled")
106 message(STATUS "LZ4 library is enabled")
127 message(STATUS "LZ4 library is disabled")
145 message(STATUS "ZLIB library is enabled")
166 message(STATUS "ZLIB library is disabled")
204 message(STATUS "ZSTD library is enabled")
226 message(STATUS "ZSTD library is disabled")
[all …]
DINSTALL.md7 RocksDB's library should be able to compile without any dependency installed,
13 …`make static_lib` will compile librocksdb.a, RocksDB static library. Compiles static library in re…
15 * `make shared_lib` will compile librocksdb.so, RocksDB shared library. Compiles shared library in …
19 * `make all` will compile our static library, and all our tools and unit tests. Our tools
33 - [zlib](http://www.zlib.net/) - a library for data compression.
34 - [bzip2](http://www.bzip.org/) - a library for data compression.
35 - [lz4](https://github.com/lz4/lz4) - a library for extremely fast data compression.
36 - [snappy](http://google.github.io/snappy/) - a library for fast
42 - [gflags](https://gflags.github.io/gflags/) - a library that handles
43 command line flags processing. You can compile rocksdb library even
[all …]
DCMakeCache.txt325 //Path to a library.
388 //build with debug version of runtime library
434 //Path to a library.
547 //Have library pthreads
549 //Have library pthread
DREADME.md11 This code is a library that forms the core building block for a fast
DCMakeLists.txt383 option(WITH_RUNTIME_DEBUG "build with debug version of runtime library" ON)
418 # no debug info for IOS, that will make our library big
506 # Main library source code
864 message(STATUS "JNI library is enabled")
867 message(STATUS "JNI library is disabled")
DCOPYING336 proprietary programs. If your program is a subroutine library, you may
338 library. If this is what you want to do, use the GNU Lesser General
/rocksdb-6.9/include/rocksdb/utilities/lua/
Drocks_lua_util.h43 for (const auto& library : libraries) { in Init() local
44 luaL_openlib(lua_state_, library->Name(), library->Lib(), 0); in Init()
45 library->CustomSetup(lua_state_); in Init()
/rocksdb-6.9/env/
Denv_test.cc244 std::shared_ptr<DynamicLibrary> library; in TEST_F() local
248 ASSERT_EQ(nullptr, library.get()); in TEST_F()
251 ASSERT_NE(nullptr, library.get()); in TEST_F()
257 ASSERT_OK(env_->LoadLibrary(library->Name(), "", &library)); in TEST_F()
259 ASSERT_EQ(nullptr, library.get()); in TEST_F()
269 ASSERT_EQ(nullptr, library.get()); in TEST_F()
271 ASSERT_EQ(nullptr, library.get()); in TEST_F()
274 ASSERT_NE(nullptr, library.get()); in TEST_F()
275 ASSERT_OK(env_->LoadLibrary(library->Name(), "", &library)); in TEST_F()
282 ASSERT_NE(nullptr, library.get()); in TEST_F()
[all …]
/rocksdb-6.9/cmake/modules/
DFindgflags.cmake1 # - Find gflags library
2 # Find the gflags includes and library
DFindJeMalloc.cmake1 # - Find JeMalloc library
2 # Find the native JeMalloc includes and library
DFindlz4.cmake2 # Find the lz4 compression library and includes
DFindzstd.cmake2 # Find the zstd compression library and includes
DFindsnappy.cmake2 # Find the snappy compression library and includes
DFindNUMA.cmake2 # Find the NUMA library and includes
DFindTBB.cmake2 # Find the Thread Building Blocks library and includes
/rocksdb-6.9/java/
DMakefile264 …java $(JAVA_ARGS) -Djava.library.path=target -cp $(MAIN_CLASSES):$(SAMPLES_MAIN_CLASSES) RocksDBSa…
272 …java $(JAVA_ARGS) -Djava.library.path=target -cp $(MAIN_CLASSES):$(SAMPLES_MAIN_CLASSES) RocksDBCo…
279 …java -ea -Xcheck:jni -Djava.library.path=target -cp $(MAIN_CLASSES):$(SAMPLES_MAIN_CLASSES) Transa…
286 …java -ea -Xcheck:jni -Djava.library.path=target -cp $(MAIN_CLASSES):$(SAMPLES_MAIN_CLASSES) Optimi…
315 …java $(JAVA_ARGS) -Djava.library.path=target -cp "$(MAIN_CLASSES):$(TEST_CLASSES):$(JAVA_TESTCLASS…
DHISTORY-JAVA.md13 * lz4 compression is now included in rocksjava static library when running `make rocksdbjavastatic`.
54 * Added static method RocksDB.loadLibrary(), which loads necessary library files.
Djdb_bench.sh13 java -server -d$PLATFORM -XX:NewSize=4m -XX:+AggressiveOpts -Djava.library.path=target -cp "${ROCKS…
/rocksdb-6.9/tools/rdb/
DREADME.md10 * static RocksDB library (i.e. librocksdb.a)
21 1. Make sure you have the static library (i.e. "librocksdb.a") in the root
/rocksdb-6.9/include/rocksdb/utilities/
Dobject_registry.h99 void AddLibrary(const std::shared_ptr<ObjectLibrary>& library) { in AddLibrary() argument
100 libraries_.emplace_back(library); in AddLibrary()
/rocksdb-6.9/docs/_docs/
Dgetting-started.md10 The RocksDB library provides a persistent key value store. Keys and values are arbitrary byte array…
12 The library is maintained by the Facebook Database Engineering Team, and is based on [LevelDB](http…
/rocksdb-6.9/CMakeFiles/3.30.5/
DCMakeCXXCompiler.cmake97 ### Imported target for C++23 standard library
/rocksdb-6.9/docs/_posts/
D2015-07-17-spatial-indexing-in-rocksdb.markdown50 …e add a link from the tile's [quad key](https://msdn.microsoft.com/en-us/library/bb259689.aspx) to…
/rocksdb-6.9/CMakeFiles/
DCMakeConfigureLog.yaml228 collapse library dir [/usr/lib] ==> [/usr/lib]
375 collapse library dir [/usr/lib] ==> [/usr/lib]
775 ld: error: unable to find library -lpthreads

12