Home
last modified time | relevance | path

Searched refs:cvalue (Results 1 – 1 of 1) sorted by relevance

/rocksdb-6.9/java/rocksjni/
Drocksjni.cc981 std::string cvalue; in rocksdb_get_helper_direct() local
984 s = db->Get(read_options, column_family_handle, key_slice, &cvalue); in rocksdb_get_helper_direct()
987 s = db->Get(read_options, key_slice, &cvalue); in rocksdb_get_helper_direct()
1007 const jint cvalue_len = static_cast<jint>(cvalue.size()); in rocksdb_get_helper_direct()
1010 memcpy(value, cvalue.c_str(), length); in rocksdb_get_helper_direct()
1469 std::string cvalue; in rocksdb_get_helper() local
1472 s = db->Get(read_options, column_family_handle, key_slice, &cvalue); in rocksdb_get_helper()
1475 s = db->Get(read_options, key_slice, &cvalue); in rocksdb_get_helper()
1498 const jint cvalue_len = static_cast<jint>(cvalue.size()); in rocksdb_get_helper()
1503 const_cast<jbyte*>(reinterpret_cast<const jbyte*>(cvalue.c_str()))); in rocksdb_get_helper()