Lines Matching defs:ptr

139 	char	*ptr;			/* temp pointer			*/
290 for (ptr = optarg; *ptr; ++ptr) {
291 if ((*ptr == ':') && !sawsep) {
301 if (!isdigit(*ptr))
304 ptr = strchr(optarg, ':');
305 if (ptr)
307 *ptr = ',';
356 ptr = strchr(buf, ':');
357 ptr++;
358 ptr2 = strchr(ptr, ':');
360 if (strcmp(ptr, LISTENTYPE) != 0) {
1245 char *ptr; /* temporary pointer into buffer */
1249 if ((ptr = strchr(buf, ':')) == NULL)
1251 *ptr++ = NULL;
1252 entry->pmtype = ptr;
1253 if ((ptr = strchr(entry->pmtype, ':')) == NULL)
1255 *ptr++ = NULL;
1256 entry->svc_code = ptr;
1261 if ((ptr = strchr(entry->svc_code, ':')) == NULL)
1263 *ptr++ = NULL;
1264 entry->flags = ptr;
1265 if ((ptr = strchr(entry->flags, ':')) == NULL)
1267 *ptr++ = NULL;
1268 entry->id = ptr;
1269 if ((ptr = strchr(entry->id, ':')) == NULL)
1271 *ptr++ = NULL;
1272 entry->res1 = ptr;
1273 if ((ptr = strchr(entry->res1, ':')) == NULL)
1275 *ptr++ = NULL;
1276 entry->res2 = ptr;
1277 if ((ptr = strchr(entry->res2, ':')) == NULL)
1279 *ptr++ = NULL;
1280 entry->res3 = ptr;
1281 if ((ptr = strchr(entry->res3, ':')) == NULL)
1283 *ptr++ = NULL;
1284 entry->addr = ptr;
1285 if ((ptr = strchr(entry->addr, ':')) == NULL)
1287 *ptr++ = NULL;
1288 entry->rpc = ptr;
1289 if ((ptr = strchr(entry->rpc, ':')) == NULL)
1291 *ptr++ = NULL;
1297 entry->lflags = ptr;
1298 if ((ptr = strchr(entry->lflags, ':')) == NULL)
1300 *ptr++ = NULL;
1301 entry->modules = ptr;
1302 if ((ptr = strchr(entry->modules, ':')) == NULL)
1304 *ptr++ = NULL;
1305 entry->command = ptr;
1306 if ((ptr = strchr(entry->command, '#')) == NULL)
1308 *ptr++ = NULL;
1309 entry->comment = ptr;