Lines Matching refs:temp
132 char* temp = (char*)buf; in ExtractPort() local
137 SKIP_CHAR(temp); /* skip characters */ in ExtractPort()
138 s = *temp; *temp = 0; /* replace the end character with null */ in ExtractPort()
154 if (check != temp) in ExtractPort()
163 (*temp) = s; /* recover the original character */ in ExtractPort()
164 buf = temp; /* move buf pointer to next string */ in ExtractPort()
174 char* temp = (char*)buf; in ExtractIPAddress() local
180 while ((*temp) && !isspace(*temp) && (*temp) != '/') temp++; in ExtractIPAddress()
182 s = *temp; *temp = 0; in ExtractIPAddress()
186 (*temp) = s; in ExtractIPAddress()
189 if ((*temp) == '/') { in ExtractIPAddress()
190 buf = temp + 1; in ExtractIPAddress()
191 SKIP_CHAR(temp); in ExtractIPAddress()
192 s = *temp; *temp = 0; in ExtractIPAddress()
197 if (check != temp) in ExtractIPAddress()
205 (*temp) = s; in ExtractIPAddress()
209 buf = temp; in ExtractIPAddress()