Symbol: m_group
src/apps/cortex/DiagramView/DiagramItem.cpp
57
m_group(0),
src/apps/cortex/DiagramView/DiagramItem.h
100
{ return m_group; }
src/apps/cortex/DiagramView/DiagramItem.h
263
DiagramItemGroup *m_group;
src/apps/cortex/DiagramView/DiagramItemGroup.cpp
225
if (item->m_group)
src/apps/cortex/DiagramView/DiagramItemGroup.cpp
226
item->m_group->RemoveItem(item);
src/apps/cortex/DiagramView/DiagramItemGroup.cpp
232
item->m_group = this;
src/apps/cortex/DiagramView/DiagramItemGroup.cpp
238
item->m_group = this;
src/apps/cortex/DiagramView/DiagramItemGroup.cpp
244
item->m_group = this;
src/apps/cortex/DiagramView/DiagramItemGroup.cpp
271
item->m_group = 0;
src/apps/cortex/DiagramView/DiagramItemGroup.cpp
278
item->m_group = 0;
src/apps/cortex/DiagramView/DiagramItemGroup.cpp
285
item->m_group = 0;
src/apps/cortex/NodeManager/NodeGroup.cpp
187
if(node->m_group) {
src/apps/cortex/NodeManager/NodeGroup.cpp
190
"!!! node already in group '%s'\n", node->m_group->name()));
src/apps/cortex/NodeManager/NodeGroup.cpp
262
if(node->m_group != this) {
src/apps/cortex/NodeManager/NodeGroup.cpp
265
"!!! node not in group '%s'\n", node->m_group->name()));
src/apps/cortex/NodeManager/NodeManager.cpp
2200
if(ref->m_group) {
src/apps/cortex/NodeManager/NodeManager.cpp
2202
ref->m_group->removeNode(ref);
src/apps/cortex/NodeManager/NodeRef.cpp
1320
if(m_group) {
src/apps/cortex/NodeManager/NodeRef.cpp
1321
Autolock _l(m_group);
src/apps/cortex/NodeManager/NodeRef.cpp
1322
m_group->_refStopped(this);
src/apps/cortex/NodeManager/NodeRef.cpp
1420
NodeGroup* group = m_group;
src/apps/cortex/NodeManager/NodeRef.cpp
1424
bool ret = m_group->lock(type, timeout);
src/apps/cortex/NodeManager/NodeRef.cpp
1441
NodeGroup* group = m_group;
src/apps/cortex/NodeManager/NodeRef.cpp
1443
bool ret = m_group->unlock(type);
src/apps/cortex/NodeManager/NodeRef.cpp
1460
NodeGroup* group = m_group;
src/apps/cortex/NodeManager/NodeRef.cpp
1462
return m_group->isLocked(type);
src/apps/cortex/NodeManager/NodeRef.cpp
1478
m_group(0),
src/apps/cortex/NodeManager/NodeRef.cpp
1633
m_group = group;
src/apps/cortex/NodeManager/NodeRef.cpp
1640
m.AddInt32("groupID", m_group ? (int32)m_group->id() : 0);
src/apps/cortex/NodeManager/NodeRef.cpp
174
if(m_group) {
src/apps/cortex/NodeManager/NodeRef.cpp
175
m_group->_refCycleChanged(this);
src/apps/cortex/NodeManager/NodeRef.cpp
1905
ASSERT(m_group);
src/apps/cortex/NodeManager/NodeRef.cpp
1907
m_group->m_transportState == NodeGroup::TRANSPORT_RUNNING ||
src/apps/cortex/NodeManager/NodeRef.cpp
1908
m_group->m_transportState == NodeGroup::TRANSPORT_STARTING);
src/apps/cortex/NodeManager/NodeRef.cpp
2001
ASSERT(m_group);
src/apps/cortex/NodeManager/NodeRef.cpp
2003
m_group->m_transportState == NodeGroup::TRANSPORT_RUNNING ||
src/apps/cortex/NodeManager/NodeRef.cpp
2004
m_group->m_transportState == NodeGroup::TRANSPORT_STARTING);
src/apps/cortex/NodeManager/NodeRef.cpp
206
return m_group;
src/apps/cortex/NodeManager/NodeRef.cpp
2071
(m_runMode == 0 && m_group && m_group->runMode() == BMediaNode::B_RECORDING))
src/apps/cortex/NodeManager/NodeRef.cpp
2107
ASSERT(m_group);
src/apps/cortex/NodeManager/NodeRef.cpp
2145
BTimeSource* ts = m_group->m_timeSourceObj;
src/apps/cortex/NodeManager/NodeRef.cpp
2215
if(m_cycle && m_group->_cycleValid()) {
src/apps/cortex/NodeManager/NodeRef.cpp
2216
if(position >= m_group->endPosition()) {
src/apps/cortex/NodeManager/NodeRef.cpp
2218
when = m_group->_cycleBoundary();
src/apps/cortex/NodeManager/NodeRef.cpp
2219
position = m_group->startPosition();
src/apps/cortex/NodeManager/NodeRef.cpp
317
if(m_group)
src/apps/cortex/NodeManager/NodeRef.cpp
318
_setRunMode(m_group->runMode(), m_recordingDelay);
src/apps/cortex/NodeManager/NodeRef.cpp
611
if(m_group)
src/apps/cortex/NodeManager/NodeRef.cpp
612
m_group->removeNode(this);
src/apps/cortex/NodeManager/NodeRef.h
592
NodeGroup* m_group;
src/apps/cortex/TransportView/TransportView.cpp
1009
ASSERT(m_group);
src/apps/cortex/TransportView/TransportView.cpp
1012
status_t err = m_group->getTimeSource(&tsNode);
src/apps/cortex/TransportView/TransportView.cpp
1072
ASSERT(m_group);
src/apps/cortex/TransportView/TransportView.cpp
1075
uint32 runMode = m_group->runMode() - 1; // real run mode starts at 1
src/apps/cortex/TransportView/TransportView.cpp
127
NodeGroup* g = m_parent->m_group;
src/apps/cortex/TransportView/TransportView.cpp
1443
if(m_group)
src/apps/cortex/TransportView/TransportView.cpp
181
NodeGroup* g = m_parent->m_group;
src/apps/cortex/TransportView/TransportView.cpp
377
if(!m_group || groupID != m_group->id()) {
src/apps/cortex/TransportView/TransportView.cpp
400
if(!m_group || groupID != m_group->id()) {
src/apps/cortex/TransportView/TransportView.cpp
419
if(!m_group || groupID != m_group->id()) {
src/apps/cortex/TransportView/TransportView.cpp
441
if(!m_group)
src/apps/cortex/TransportView/TransportView.cpp
447
BMessenger(m_group).SendMessage(message);
src/apps/cortex/TransportView/TransportView.cpp
450
if(m_group->transportState() == NodeGroup::TRANSPORT_STOPPED)
src/apps/cortex/TransportView/TransportView.cpp
458
if(!m_group)
src/apps/cortex/TransportView/TransportView.cpp
464
BMessenger(m_group).SendMessage(message);
src/apps/cortex/TransportView/TransportView.cpp
467
if(m_group->transportState() == NodeGroup::TRANSPORT_STOPPED)
src/apps/cortex/TransportView/TransportView.cpp
482
if(m_group) {
src/apps/cortex/TransportView/TransportView.cpp
483
m_group->setName(name);
src/apps/cortex/TransportView/TransportView.cpp
518
if(m_group && groupID != m_group->id())
src/apps/cortex/TransportView/TransportView.cpp
536
if(m_group)
src/apps/cortex/TransportView/TransportView.cpp
544
err = m_manager->findGroup(groupID, &m_group);
src/apps/cortex/TransportView/TransportView.cpp
558
ASSERT(m_group);
src/apps/cortex/TransportView/TransportView.cpp
560
add_observer(this, m_group);
src/apps/cortex/TransportView/TransportView.cpp
564
ASSERT(m_group);
src/apps/cortex/TransportView/TransportView.cpp
566
remove_observer(this, m_group);
src/apps/cortex/TransportView/TransportView.cpp
567
m_group = 0;
src/apps/cortex/TransportView/TransportView.cpp
847
if(m_group)
src/apps/cortex/TransportView/TransportView.cpp
848
invoker->SetTarget(m_group);
src/apps/cortex/TransportView/TransportView.cpp
852
if(m_group)
src/apps/cortex/TransportView/TransportView.cpp
898
ASSERT(m_group);
src/apps/cortex/TransportView/TransportView.cpp
899
Autolock _l(m_group); // +++++ why?
src/apps/cortex/TransportView/TransportView.cpp
932
((double)m_group->startPosition()) / 1000000.0);
src/apps/cortex/TransportView/TransportView.cpp
936
((double)m_group->endPosition()) / 1000000.0);
src/apps/cortex/TransportView/TransportView.cpp
942
(*it)->SetTarget(m_group);
src/apps/cortex/TransportView/TransportView.cpp
955
ASSERT(m_group);
src/apps/cortex/TransportView/TransportView.cpp
957
switch(m_group->transportState()) {
src/apps/cortex/TransportView/TransportView.cpp
997
!m_group->canCycle())) {
src/apps/cortex/TransportView/TransportView.h
164
NodeGroup* m_group;