Searched refs:destStr (Results 1 – 1 of 1) sorted by relevance
/test/xts/acts/kernel_lite/mem_posix/src/ |
D | ActsMemApiTest.cpp | 94 char destStr[] = "00000000"; variable 97 LogPrint(" bcopy *src:='%s' *dest:='%s', size:='4', \n", srcStr, destStr); 98 bcopy(srcStr, destStr, 4); 99 LogPrint(" --> *dest:='%s'\n", destStr); 103 if (srcStr[iLoop] != destStr[iLoop]) { 111 << "' size:='4', --> *dest:='" << destStr << "'"; 121 char destStr[] = "this is string1"; variable 125 bzero(destStr, 4); 126 LogPrint("--> afterrun s:='%s', ", destStr); 130 if (destStr[iLoop] != '\0') { [all …]
|