MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / PushDatabase

Method PushDatabase

collaboration.cpp:107–117  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

105
106
107size_t BinaryNinja::Collaboration::PushDatabase(Ref<Database> database, Ref<RemoteFile> file, ProgressFunction progress)
108{
109 ProgressContext pctxt;
110 pctxt.callback = progress;
111 size_t count = 0;
112
113 if (!BNCollaborationPushDatabase(database->m_object, file->m_object, &count, ProgressCallback, &pctxt))
114 throw SyncException("Failed to push database");
115
116 return count;
117}
118
119
120void BinaryNinja::Collaboration::DumpDatabase(Ref<Database> database)

Callers

nothing calls this directly

Calls 1

SyncExceptionClass · 0.85

Tested by

no test coverage detected