Lines Matching refs:shiftStr
499 char *shiftStr = (char *)malloc(cmdBufLen + 1);
502 if (shiftStr == NULL) {
506 (void)memset_s(shiftStr, cmdBufLen + 1, 0, cmdBufLen + 1);
509 ret = OsCmdKeyShift(cmdBuf, shiftStr, cmdBufLen + 1);
510 shiftLen = strlen(shiftStr);
515 *output = shiftStr;
519 if ((shiftLen > removeLen) && (shiftStr[0] == '.') && (shiftStr[1] == '/')) {
536 err = memcpy_s(newCmd + execLen, newLen - execLen, shiftStr + removeLen, shiftLen - removeLen);
555 free(shiftStr);