Lines Matching refs:temp
310 char *temp = value;
314 while (*temp != '\0') {
315 if (*temp == ':') {
317 } else if (*temp == ';') {
319 } else if ((*temp == '\n') || (*temp == '\r')) {
320 *temp = ' ';
322 temp++;
338 temp = value;
339 while (*temp != 0) {
340 if ((*temp == ':') || (*temp == ';')) {
341 *regularTemp++ = *temp;
343 *regularTemp++ = *temp;
344 temp++;