Lines Matching +full:0 +full:x78
57 uint8_t msgPlain[] = {0x56, 0x34, 0x12};
58 uint8_t replyPlain[] = {0x56, 0x34, 0x12, 0x31, 0x41};
59 uint8_t msgPlus2[] = {0x67, 0x45, 0x23, 0x10, 0x20};
60 uint8_t msgBadOen[] = {0x57, 0x34, 0x12};
67 EXPECT_EQ(0x78, cmd); in RegisterTwoWays()
68 EXPECT_EQ(0, *dataLen); // Excludes OEN in RegisterTwoWays()
73 return 0; in RegisterTwoWays()
75 RegisterWithRouter(0x123456, 0x78, f); in RegisterTwoWays()
85 return 0xE0; in RegisterTwoWays()
87 EXPECT_EQ(msgPlus2[3], reqBuf[0]); in RegisterTwoWays()
91 *dataLen = 0; in RegisterTwoWays()
92 return 0; in RegisterTwoWays()
94 RegisterWithRouter(0x234567, ipmi::cmdWildcard, g); in RegisterTwoWays()
105 lastNetFunction = 0; in TEST()
118 EXPECT_EQ(0, wildHandler(NETFUN_OEM_GROUP, 0x78, msgPlain, reply, &dataLen, in TEST()
121 EXPECT_EQ(replyPlain[0], reply[0]); in TEST()
138 cmd = 0x89; in TEST()
139 EXPECT_EQ(0, wildHandler(NETFUN_OEM_GROUP, cmd, msgPlus2, reply, &dataLen, in TEST()
144 cmd = 0x67; in TEST()
145 EXPECT_EQ(0, wildHandler(NETFUN_OEM_GROUP, cmd, msgPlus2, reply, &dataLen, in TEST()
161 wildHandler(NETFUN_OEM_GROUP, 0x78, msgPlain, reply, &dataLen, in TEST()
166 EXPECT_EQ(IPMI_CC_INVALID, wildHandler(NETFUN_OEM_GROUP, 0x89, msgPlain, in TEST()
171 EXPECT_EQ(IPMI_CC_INVALID, wildHandler(NETFUN_OEM_GROUP, 0x78, msgBadOen, in TEST()