Lines Matching defs:eid
41 static inline bool mctp_address_unicast(mctp_eid_t eid)
43 return eid >= 8 && eid < 255;
46 static inline bool mctp_address_broadcast(mctp_eid_t eid)
48 return eid == 255;
51 static inline bool mctp_address_null(mctp_eid_t eid)
53 return eid == 0;
56 static inline bool mctp_address_matches(mctp_eid_t match, mctp_eid_t eid)
58 return match == eid || match == MCTP_ADDR_ANY;
276 mctp_eid_t eid;
289 int mctp_neigh_lookup(struct mctp_dev *dev, mctp_eid_t eid,