Lines Matching refs:p
90 char *p = strrchr(bprm->interp, '.'); in check_file() local
105 if (p && !strcmp(e->magic, p + 1)) in check_file()
277 char *p = sfs; in check_special_flags() local
282 switch (*p) { in check_special_flags()
285 p++; in check_special_flags()
290 p++; in check_special_flags()
295 p++; in check_special_flags()
303 p++; in check_special_flags()
311 return p; in check_special_flags()
323 char *buf, *p; in create_entry() local
339 p = buf = (char *)e + sizeof(Node); in create_entry()
345 del = *p++; /* delimeter */ in create_entry()
353 e->name = p; in create_entry()
354 p = strchr(p, del); in create_entry()
355 if (!p) in create_entry()
357 *p++ = '\0'; in create_entry()
367 switch (*p++) { in create_entry()
379 if (*p++ != del) in create_entry()
387 s = strchr(p, del); in create_entry()
391 if (p != s) { in create_entry()
392 int r = kstrtoint(p, 10, &e->offset); in create_entry()
396 p = s; in create_entry()
397 if (*p++) in create_entry()
402 e->magic = p; in create_entry()
403 p = scanarg(p, del); in create_entry()
404 if (!p) in create_entry()
411 DUMP_PREFIX_NONE, e->magic, p - e->magic); in create_entry()
414 e->mask = p; in create_entry()
415 p = scanarg(p, del); in create_entry()
416 if (!p) in create_entry()
424 DUMP_PREFIX_NONE, e->mask, p - e->mask); in create_entry()
468 p = strchr(p, del); in create_entry()
469 if (!p) in create_entry()
471 *p++ = '\0'; in create_entry()
474 e->magic = p; in create_entry()
475 p = strchr(p, del); in create_entry()
476 if (!p) in create_entry()
478 *p++ = '\0'; in create_entry()
484 p = strchr(p, del); in create_entry()
485 if (!p) in create_entry()
487 *p++ = '\0'; in create_entry()
491 e->interpreter = p; in create_entry()
492 p = strchr(p, del); in create_entry()
493 if (!p) in create_entry()
495 *p++ = '\0'; in create_entry()
501 p = check_special_flags(p, e); in create_entry()
502 if (*p == '\n') in create_entry()
503 p++; in create_entry()
504 if (p != buf + count) in create_entry()