Lines Matching defs:info
446 static void OnNodeOnline(NodeBasicInfo* info)
448 if (info == NULL) {
449 LOG("[cb]Online: info is null");
452 LOG("[cb]Online id:%s, name:%s ,type id:%u", info->networkId, info->deviceName, info->deviceTypeId);
455 static void OnNodeOffline(NodeBasicInfo* info)
457 if (info == NULL) {
458 LOG("[cb]Offline: info is null");
462 LOG("[cb]Offline id:%s, name:%s ,type id:%u", info->networkId, info->deviceName, info->deviceTypeId);
465 static void OnNodeBasicInfoChanged(NodeBasicInfoType type, NodeBasicInfo* info)
467 if (info == NULL) {
468 LOG("[cb]InfoChanged: info is null, type[%d]", type);
471 LOG("[cb]InfoChanged id: %s, name: %s", info->networkId, info->deviceName);
477 LOG("[cb]StatusChanged: info is null, type[%d]", type);