MCPcopy Create free account
hub / github.com/acl-dev/acl / hs_dump

Function hs_dump

lib_acl_cpp/samples/hsclient/main.cpp:151–172  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

149}
150
151static void hs_dump(const std::vector<acl::hsrow*>& rows)
152{
153 std::vector<acl::hsrow*>::const_iterator cit_row;
154 std::vector<const char*>::const_iterator cit_colum;
155
156 cit_row = rows.begin();
157
158 for (; cit_row != rows.end(); cit_row++)
159 {
160 cit_colum = (*cit_row)->get_row().begin();
161
162 printf(">>results:\n");
163
164 for (; cit_colum != (*cit_row)->get_row().end();
165 cit_colum++)
166 {
167 printf("\t|%s|", *cit_colum);
168 }
169
170 printf("\n");
171 }
172}
173
174static void hs_find(const char* addr, int num, bool enable_cache)
175{

Callers 3

hs_findFunction · 0.85
hs_find2Function · 0.85
hspool_findFunction · 0.85

Calls 3

beginMethod · 0.80
endMethod · 0.45
get_rowMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…