Lines Matching defs:node

81 	const media_node *node;
89 msg->FindData("node", B_RAW_TYPE, reinterpret_cast<const void **>(&node),
95 n.node = *node;
99 TRACE("NotificationManager::RequestNotifications node %ld, team %ld, "
100 "what %#lx\n",node->node, team, what);
117 const media_node *node;
125 msg->FindData("node", B_RAW_TYPE, reinterpret_cast<const void **>(&node),
129 TRACE("NotificationManager::CancelNotifications node %ld, team %ld, what "
130 "%#lx\n", node->node, team, what);
132 /* if what == B_MEDIA_WILDCARD && node == media_node::null
134 * else if what != B_MEDIA_WILDCARD && node == media_node::null
136 * else if what == B_MEDIA_WILDCARD && node != media_node::null
137 * => delete all notifications for the matching team & messenger & node
138 * else if what != B_MEDIA_WILDCARD && node != media_node::null
140 * & node
148 if (what == B_MEDIA_WILDCARD && *node == media_node::null
151 else if (what != B_MEDIA_WILDCARD && *node == media_node::null
154 else if (what == B_MEDIA_WILDCARD && *node != media_node::null
155 && team == n->team && messenger == n->messenger && n->node == *node)
157 else if (what != B_MEDIA_WILDCARD && *node != media_node::null
159 && n->node == *node)
178 const media_node *node;
205 if (n->node != media_node::null)
213 msg->FindData("node", B_RAW_TYPE,
214 reinterpret_cast<const void **>(&node), &size);
216 if (n->node != *node)
228 if (n->node.port != source->port
229 && n->node.port != destination->port)
305 printf(" team %" B_PRId32 ", what %#08" B_PRIx32 ", node-id %" B_PRId32
306 ", node-port %" B_PRId32 ", messenger %svalid\n", n->team, n->what,
307 n->node.node, n->node.port, n->messenger.IsValid() ? "" : "NOT ");