Lines Matching defs:cp
1198 const char *cp;
1249 cp = strchr(cmd, ' ');
1250 if(cp == NULL) {
1262 result = get_pathname(&cp, &sshc->quote_path1);
1287 result = get_pathname(&cp, &sshc->quote_path2);
1309 result = get_pathname(&cp, &sshc->quote_path2);
1334 result = get_pathname(&cp, &sshc->quote_path2);
3208 const char *cp = *cpp, *end;
3213 cp += strspn(cp, WHITESPACE);
3214 if(!*cp) {
3215 *cpp = cp;
3220 *path = malloc(strlen(cp) + 1);
3225 if(*cp == '\"' || *cp == '\'') {
3226 quot = *cp++;
3229 for(i = j = 0; i <= strlen(cp); i++) {
3230 if(cp[i] == quot) { /* Found quote */
3235 if(cp[i] == '\0') { /* End of string */
3239 if(cp[i] == '\\') { /* Escaped characters */
3241 if(cp[i] != '\'' && cp[i] != '\"' &&
3242 cp[i] != '\\') {
3244 cp[i]);*/
3248 (*path)[j++] = cp[i];
3255 *cpp = cp + i + strspn(cp + i, WHITESPACE);
3259 end = strpbrk(cp, WHITESPACE);
3261 end = strchr(cp, '\0');
3264 memcpy(*path, cp, end - cp);
3265 (*path)[end - cp] = '\0';