deimos.git2.odb

Undocumented in source.

Members

Aliases

git_odb_foreach_cb
alias git_odb_foreach_cb = int function(const(git_oid)* id, void* payload)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Functions

git_odb_add_alternate
int git_odb_add_alternate(git_odb* odb, git_odb_backend* backend, int priority)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_odb_add_backend
int git_odb_add_backend(git_odb* odb, git_odb_backend* backend, int priority)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_odb_add_disk_alternate
int git_odb_add_disk_alternate(git_odb* odb, const(char)* path)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_odb_exists
int git_odb_exists(git_odb* db, const(git_oid)* id)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_odb_foreach
int git_odb_foreach(git_odb* db, git_odb_foreach_cb cb, void* payload)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_odb_free
void git_odb_free(git_odb* db)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_odb_get_backend
int git_odb_get_backend(git_odb_backend** out_, git_odb* odb, size_t pos)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_odb_hash
int git_odb_hash(git_oid* out_, const(void)* data, size_t len, git_otype type)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_odb_hashfile
int git_odb_hashfile(git_oid* out_, const(char)* path, git_otype type)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_odb_new
int git_odb_new(git_odb** out_)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_odb_num_backends
size_t git_odb_num_backends(git_odb* odb)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_odb_object_data
const(void)* git_odb_object_data(git_odb_object* object)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_odb_object_dup
int git_odb_object_dup(git_odb_object** dest, git_odb_object* source)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_odb_object_free
void git_odb_object_free(git_odb_object* object)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_odb_object_id
const(git_oid)* git_odb_object_id(git_odb_object* object)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_odb_object_size
size_t git_odb_object_size(git_odb_object* object)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_odb_object_type
git_otype git_odb_object_type(git_odb_object* object)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_odb_open
int git_odb_open(git_odb** out_, const(char)* objects_dir)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_odb_open_rstream
int git_odb_open_rstream(git_odb_stream** out_, git_odb* db, const(git_oid)* oid)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_odb_open_wstream
int git_odb_open_wstream(git_odb_stream** out_, git_odb* db, size_t size, git_otype type)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_odb_read
int git_odb_read(git_odb_object** out_, git_odb* db, const(git_oid)* id)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_odb_read_header
int git_odb_read_header(size_t* len_out, git_otype* type_out, git_odb* db, const(git_oid)* id)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_odb_read_prefix
int git_odb_read_prefix(git_odb_object** out_, git_odb* db, const(git_oid)* short_id, size_t len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_odb_refresh
int git_odb_refresh(git_odb* db)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_odb_stream_finalize_write
int git_odb_stream_finalize_write(git_oid* out_, git_odb_stream* stream)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_odb_stream_free
void git_odb_stream_free(git_odb_stream* stream)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_odb_stream_read
int git_odb_stream_read(git_odb_stream* stream, char* buffer, size_t len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_odb_stream_write
int git_odb_stream_write(git_odb_stream* stream, const(char)* buffer, size_t len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_odb_write
int git_odb_write(git_oid* out_, git_odb* odb, const(void)* data, size_t len, git_otype type)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_odb_write_pack
int git_odb_write_pack(git_odb_writepack** out_, git_odb* db, git_transfer_progress_cb progress_cb, void* progress_payload)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Meta