Lines Matching defs:temp2
1007 char temp2[PATH_SIZE];
1136 strlcpy(temp2, cpos, sizeof(temp2));
1139 cpos = strchr(temp2, ' ');
1143 strlcat(string, temp2, maxsize);
1144 dbg("substitute part of result string '%s'", temp2);
1166 size = strlcpy(temp2, value, sizeof(temp2));
1167 if (size >= sizeof(temp2))
1168 size = sizeof(temp2)-1;
1169 while (size > 0 && isspace(temp2[size-1]))
1170 temp2[--size] = '\0';
1171 count = replace_untrusted_chars(temp2);
1174 strlcat(string, temp2, maxsize);
1175 dbg("substitute sysfs value '%s'", temp2);