Lines Matching refs:keylen

814     const char* key, size_t keylen,  in rocksdb_put()  argument
818 db->rep->Put(options->rep, Slice(key, keylen), Slice(val, vallen))); in rocksdb_put()
825 const char* key, size_t keylen, in rocksdb_put_cf() argument
830 Slice(key, keylen), Slice(val, vallen))); in rocksdb_put_cf()
836 const char* key, size_t keylen, in rocksdb_delete() argument
838 SaveError(errptr, db->rep->Delete(options->rep, Slice(key, keylen))); in rocksdb_delete()
845 const char* key, size_t keylen, in rocksdb_delete_cf() argument
848 Slice(key, keylen))); in rocksdb_delete_cf()
865 const char* key, size_t keylen, in rocksdb_merge() argument
869 db->rep->Merge(options->rep, Slice(key, keylen), Slice(val, vallen))); in rocksdb_merge()
876 const char* key, size_t keylen, in rocksdb_merge_cf() argument
881 Slice(key, keylen), Slice(val, vallen))); in rocksdb_merge_cf()
895 const char* key, size_t keylen, in rocksdb_get() argument
900 Status s = db->rep->Get(options->rep, Slice(key, keylen), &tmp); in rocksdb_get()
917 const char* key, size_t keylen, in rocksdb_get_cf() argument
923 Slice(key, keylen), &tmp); in rocksdb_get_cf()
1858 const char* key, size_t keylen, in rocksdb_writebatch_wi_get_from_batch() argument
1863 Status s = wbwi->rep->GetFromBatch(options->rep, Slice(key, keylen), &tmp); in rocksdb_writebatch_wi_get_from_batch()
1880 const char* key, size_t keylen, in rocksdb_writebatch_wi_get_from_batch_cf() argument
1886 Slice(key, keylen), &tmp); in rocksdb_writebatch_wi_get_from_batch_cf()
1903 const char* key, size_t keylen, in rocksdb_writebatch_wi_get_from_batch_and_db() argument
1908 Status s = wbwi->rep->GetFromBatchAndDB(db->rep, options->rep, Slice(key, keylen), &tmp); in rocksdb_writebatch_wi_get_from_batch_and_db()
1926 const char* key, size_t keylen, in rocksdb_writebatch_wi_get_from_batch_and_db_cf() argument
1932 Slice(key, keylen), &tmp); in rocksdb_writebatch_wi_get_from_batch_and_db_cf()
3165 const char* key, size_t keylen) { in rocksdb_readoptions_set_iterate_upper_bound() argument
3171 opt->upper_bound = Slice(key, keylen); in rocksdb_readoptions_set_iterate_upper_bound()
3178 const char* key, size_t keylen) { in rocksdb_readoptions_set_iterate_lower_bound() argument
3183 opt->lower_bound = Slice(key, keylen); in rocksdb_readoptions_set_iterate_lower_bound()
3428 size_t keylen, const char* val, size_t vallen, in rocksdb_sstfilewriter_add() argument
3430 SaveError(errptr, writer->rep->Put(Slice(key, keylen), Slice(val, vallen))); in rocksdb_sstfilewriter_add()
3434 size_t keylen, const char* val, size_t vallen, in rocksdb_sstfilewriter_put() argument
3436 SaveError(errptr, writer->rep->Put(Slice(key, keylen), Slice(val, vallen))); in rocksdb_sstfilewriter_put()
3440 const char* key, size_t keylen, in rocksdb_sstfilewriter_merge() argument
3443 SaveError(errptr, writer->rep->Merge(Slice(key, keylen), Slice(val, vallen))); in rocksdb_sstfilewriter_merge()
3447 const char* key, size_t keylen, in rocksdb_sstfilewriter_delete() argument
3449 SaveError(errptr, writer->rep->Delete(Slice(key, keylen))); in rocksdb_sstfilewriter_delete()
4056 size_t keylen, size_t* vallen, char** errptr) { in rocksdb_transactiondb_get_cf() argument
4060 Slice(key, keylen), &tmp); in rocksdb_transactiondb_get_cf()
4100 const char* key, size_t keylen, in rocksdb_transactiondb_put_cf() argument
4104 Slice(key, keylen), Slice(val, vallen))); in rocksdb_transactiondb_put_cf()
4170 size_t keylen, char** errptr) { in rocksdb_transactiondb_delete_cf() argument
4172 Slice(key, keylen))); in rocksdb_transactiondb_delete_cf()
4313 size_t keylen, char** errptr) { in rocksdb_get_pinned() argument
4316 Slice(key, keylen), &v->rep); in rocksdb_get_pinned()
4330 size_t keylen, char** errptr) { in rocksdb_get_pinned_cf() argument
4332 Status s = db->rep->Get(options->rep, column_family->rep, Slice(key, keylen), in rocksdb_get_pinned_cf()