• Home
  • Raw
  • Download

Lines Matching refs:appHeader

152   EXPECT_EQ(response->appHeader.handle, handle);  in validateChppTestResponse()
153 EXPECT_EQ(response->appHeader.type, CHPP_MESSAGE_TYPE_SERVICE_RESPONSE); in validateChppTestResponse()
154 EXPECT_EQ(response->appHeader.transaction, transactionID); in validateChppTestResponse()
157 return response->appHeader.error; in validateChppTestResponse()
229 ChppAppHeader appHeader = {}; in addAppHeaderToBuf() local
230 appHeader.handle = CHPP_HANDLE_NEGOTIATED_RANGE_START; in addAppHeaderToBuf()
231 appHeader.type = CHPP_MESSAGE_TYPE_CLIENT_REQUEST; in addAppHeaderToBuf()
232 appHeader.transaction = 0; in addAppHeaderToBuf()
233 appHeader.error = CHPP_APP_ERROR_NONE; in addAppHeaderToBuf()
234 appHeader.command = 0; in addAppHeaderToBuf()
236 memcpy(&buf[*location], &appHeader, sizeof(appHeader)); in addAppHeaderToBuf()
237 *location += sizeof(appHeader); in addAppHeaderToBuf()
282 ChppAppHeader *appHeader = addAppHeaderToBuf(buf, &len); in openService() local
283 appHeader->handle = handle; in openService()
284 appHeader->transaction = transactionID; in openService()
285 appHeader->command = command; in openService()
335 ChppAppHeader *appHeader = addAppHeaderToBuf(buf, &len); in sendCommandToService() local
336 appHeader->handle = handle; in sendCommandToService()
337 appHeader->transaction = transactionID; in sendCommandToService()
338 appHeader->command = command; in sendCommandToService()
716 ChppAppHeader *appHeader = addAppHeaderToBuf(mBuf, &len); in TEST_P() local
717 appHeader->handle = CHPP_HANDLE_DISCOVERY; in TEST_P()
718 appHeader->transaction = transactionID; in TEST_P()
719 appHeader->command = CHPP_DISCOVERY_COMMAND_DISCOVER_ALL; in TEST_P()
980 ChppAppHeader *appHeader = addAppHeaderToBuf(mBuf, &len); in TEST_F() local
981 appHeader->handle = CHPP_HANDLE_DISCOVERY; in TEST_F()
982 appHeader->command = CHPP_DISCOVERY_COMMAND_DISCOVER_ALL; in TEST_F()
983 appHeader->type = CHPP_MESSAGE_TYPE_SERVICE_RESPONSE; in TEST_F()
1035 ChppAppHeader *appHeader = addAppHeaderToBuf(buf, &len); in TEST_F() local
1036 appHeader->handle = CHPP_HANDLE_NEGOTIATED_RANGE_START + 1; in TEST_F()
1037 appHeader->command = CHPP_WIFI_CONFIGURE_SCAN_MONITOR_ASYNC; in TEST_F()
1038 appHeader->type = CHPP_MESSAGE_TYPE_SERVICE_RESPONSE; in TEST_F()
1063 ChppAppHeader *appHeader = addAppHeaderToBuf(mBuf, &loc); in TEST_F() local
1064 appHeader->handle = CHPP_HANDLE_DISCOVERY; in TEST_F()
1065 appHeader->command = CHPP_DISCOVERY_COMMAND_DISCOVER_ALL; in TEST_F()
1066 appHeader->type = CHPP_MESSAGE_TYPE_SERVICE_RESPONSE; in TEST_F()
1110 ChppAppHeader *appHeader = addAppHeaderToBuf(buf, &len); in messageToInvalidHandle() local
1111 appHeader->handle = in messageToInvalidHandle()
1113 appHeader->type = type; in messageToInvalidHandle()