Lines Matching refs:cwcArgs
2954 uint32_t cwcArgs = pCmdLineStr->Length / sizeof(WCHAR);
2957 while (cwcArgs > 0 && suplibCommandLineIsArgSeparator(*pawcArgs) )
2958 cwcArgs--, pawcArgs++;
2959 SUPR3HARDENED_ASSERT(cwcArgs > 0 && *pawcArgs != '\0');
2968 cwcArgs--; pawcArgs++;
2971 cwcArgs--, pawcArgs++;
2978 cwcArgs--;
2981 while (cwcArgs > 0 && *pawcArgs == '\\');
2982 if (cwcArgs > 0 && *pawcArgs == '"' && (cSlashes & 1))
2983 cwcArgs--, pawcArgs++; /* odd number of slashes == escaped quote */
2985 } while (cwcArgs > 0 && (fQuoted || !suplibCommandLineIsArgSeparator(*pawcArgs)));
2988 while (cwcArgs > 0 && suplibCommandLineIsArgSeparator(*pawcArgs))
2989 cwcArgs--, pawcArgs++;
2996 + !!cwcArgs + cwcArgs; /* if arguments present, add space + arguments. */
3011 if (cwcArgs)
3014 suplibHardenedMemCopy(pwszDst, pawcArgs, cwcArgs * sizeof(RTUTF16));
3015 pwszDst += cwcArgs;