Lines Matching refs:custom_hdr

184 	struct mipi_syst_header custom_hdr;  in TEST_F()  local
186 MIPI_SYST_INIT_STATE(&custom_hdr, mipi_syst_platform_init, (void*)0); in TEST_F()
188 …EXPECT_EQ(custom_hdr.systh_version, MIPI_SYST_VERSION_CODE) << "syst header has unexpected versio… in TEST_F()
190 EXPECT_EQ(custom_hdr.systh_inith, &platform_handle_init) << "syst header handle init hook wrong"; in TEST_F()
191 …EXPECT_EQ(custom_hdr.systh_releaseh, &platform_handle_release) << "syst header handle release hook… in TEST_F()
194 …EXPECT_EQ(custom_hdr.systh_writer, &mipi_syst_scatter_write) << "syst header writer function wrong… in TEST_F()
197 MIPI_SYST_SHUTDOWN_STATE(&custom_hdr, mipi_syst_platform_destroy); in TEST_F()
224 struct mipi_syst_header custom_hdr; in TEST_F() local
225 MIPI_SYST_INIT_STATE(&custom_hdr, mipi_syst_platform_init, (void*)0); in TEST_F()
227 ph = MIPI_SYST_INIT_HANDLE_STATE(&custom_hdr, &sh, &origin); in TEST_F()
231 EXPECT_EQ(&custom_hdr, ph->systh_header) << "custom header not set in handle"; in TEST_F()
237 MIPI_SYST_SHUTDOWN_STATE(&custom_hdr, mipi_syst_platform_destroy); in TEST_F()
283 struct mipi_syst_header custom_hdr; in TEST_F() local
284 MIPI_SYST_INIT_STATE(&custom_hdr, mipi_syst_platform_init, (void*)0); in TEST_F()
286 ph = MIPI_SYST_ALLOC_HANDLE_STATE(&custom_hdr, NULL); in TEST_F()
291 EXPECT_EQ(&custom_hdr, ph->systh_header) << "custom header not set in handle"; in TEST_F()
302 struct mipi_syst_header custom_hdr; in TEST_F() local
303 MIPI_SYST_INIT_STATE(&custom_hdr, mipi_syst_platform_init, (void*)0); in TEST_F()
305 ph = MIPI_SYST_ALLOC_HANDLE_STATE(&custom_hdr, &origin); in TEST_F()