Searched refs:statusRead (Results 1 - 2 of 2) sorted by relevance
/test/xts/acts/applications/kitframework_ipcamera/ |
H A D | kitfwk_oem_api_test.cpp | 153 char* statusRead = (char*)malloc(len + 1);
in HWTEST_F() local 154 if (statusRead == nullptr) {
in HWTEST_F() 164 ret = OEMReadAuthStatus(statusRead, len);
in HWTEST_F() 165 LOG("statusRead:%s", statusRead);
in HWTEST_F() 167 statusRead[len] = 0;
in HWTEST_F() 168 ASSERT_STREQ(TEST_AUTH_STATUS, statusRead) << "authStatus not match!" << "\n";
in HWTEST_F() 177 int ret = OEMReadAuthStatus(statusRead, len);
in HWTEST_F() 178 LOG("statusRead:%s", statusRead);
in HWTEST_F() [all...] |
/test/xts/acts/applications/kitframework/ |
H A D | kitfwk_oem_api_test.c | 160 char* statusRead = malloc(len + 1);
variable 161 if (statusRead == NULL) {
171 ret = OEMReadAuthStatus(statusRead, len);
172 LOG("statusRead:%s", statusRead);
174 statusRead[len] = 0;
175 TEST_ASSERT_EQUAL_STRING_MESSAGE(TEST_AUTH_STATUS, statusRead, "authStatus not match!");
184 int ret = OEMReadAuthStatus(statusRead, len);
185 LOG("statusRead:%s", statusRead);
199 free(statusRead); global() variable [all...] |
Completed in 2 milliseconds