MCPcopy Create free account
hub / github.com/analogdevicesinc/scopy / build

Method build

gr-util/src/grtopblock.cpp:86–103  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

84size_t GRTopBlock::vlen() { return m_vlen; }
85
86void GRTopBlock::build()
87{
88 top->disconnect_all();
89 Q_EMIT aboutToBuild();
90
91 for(GRSignalPath *sig : qAsConst(m_signalPaths)) {
92 if(sig->enabled()) {
93 sig->connect_blk(this, nullptr);
94 }
95 }
96 for(GRIIODeviceSource *dev : qAsConst(m_iioDeviceSources)) {
97 dev->build_blks(this);
98 dev->connect_blk(this, nullptr);
99 }
100 Q_EMIT builtSignalPaths();
101
102 built = true;
103}
104
105void GRTopBlock::teardown()
106{

Callers 5

test1Method · 0.45
test2Method · 0.45
test3Method · 0.45
test4Method · 0.45
test5Method · 0.45

Calls 3

enabledMethod · 0.45
connect_blkMethod · 0.45
build_blksMethod · 0.45

Tested by 5

test1Method · 0.36
test2Method · 0.36
test3Method · 0.36
test4Method · 0.36
test5Method · 0.36