Lines Matching refs:tmp
211 const char *tmp = src; in IterateNameValuePairs() local
219 nv.name = tmp; in IterateNameValuePairs()
220 seperator = strchr(tmp, ' '); in IterateNameValuePairs()
223 nv.valueEnd = tmp + strlen(tmp); in IterateNameValuePairs()
224 tmp = NULL; in IterateNameValuePairs()
227 tmp = seperator + 1; in IterateNameValuePairs()
245 } while (tmp != NULL); in IterateNameValuePairs()
254 char *tmp = strstr(buffer, name); in GetProcCmdlineValue() local
256 if (tmp == NULL) { in GetProcCmdlineValue()
259 tmp = tmp + strlen(name); in GetProcCmdlineValue()
260 while (tmp < endData && *tmp == ' ') { in GetProcCmdlineValue()
261 tmp++; in GetProcCmdlineValue()
263 if (*tmp == '=') { in GetProcCmdlineValue()
266 tmp = strstr(tmp + 1, name); in GetProcCmdlineValue()
267 } while (tmp < endData); in GetProcCmdlineValue()
268 tmp++; in GetProcCmdlineValue()
271 while (tmp < endData && *tmp == ' ') { in GetProcCmdlineValue()
272 tmp++; in GetProcCmdlineValue()
274 for (; i < (size_t)length; tmp++) { in GetProcCmdlineValue()
275 if (tmp >= endData) { in GetProcCmdlineValue()
279 if (*tmp == ' ' || *tmp == '\n' || *tmp == '\r' || *tmp == '\t') { in GetProcCmdlineValue()
283 if (*tmp == '=') { in GetProcCmdlineValue()
291 value[i++] = *tmp; in GetProcCmdlineValue()
537 char *tmp = strstr(dp->d_name, includeExt); in ReadFileInDir() local
538 if (tmp == NULL) { in ReadFileInDir()
541 if (strcmp(tmp, includeExt) != 0) { in ReadFileInDir()