Home
last modified time | relevance | path

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

/frameworks/native/cmds/lshal/
Dtest.cpp198 void forEachTable(const std::function<void(Table &)> &f) { in forEachTable() function in android::lshal::MockListCommand
199 return ListCommand::forEachTable(f); in forEachTable()
201 void forEachTable(const std::function<void(const Table &)> &f) const { in forEachTable() function in android::lshal::MockListCommand
202 return ListCommand::forEachTable(f); in forEachTable()
240 mockList->forEachTable([](const Table& table) { in TEST_F()
250 mockList->forEachTable([](const Table& table) { in TEST_F()
347 mockList->forEachTable([&](Table& table) { in initMockList()
422 mockList->forEachTable([&](const Table& table) { in TEST_F()
DListCommand.h139 void forEachTable(const std::function<void(Table &)> &f);
140 void forEachTable(const std::function<void(const Table &)> &f) const;
DListCommand.cpp327 void ListCommand::forEachTable(const std::function<void(Table &)> &f) { in forEachTable() function in android::lshal::ListCommand
332 void ListCommand::forEachTable(const std::function<void(const Table &)> &f) const { in forEachTable() function in android::lshal::ListCommand
339 forEachTable([this](Table &table) { in postprocess()
536 forEachTable([&tables](const Table &table) { in dumpTable()
543 forEachTable([this, &out](const Table &table) { in dumpTable()
1176 forEachTable([this] (Table& table) { in parseArgs()