Lines Matching refs:lp
524 char *prefix, int typeflag, int filetype, struct linkbuf *lp);
8024 struct linkbuf *lp;
8027 for (lp = ihead; lp != NULL; lp = lp->nextp)
8028 if (lp->inum == stbuf.st_ino &&
8029 lp->devnum == stbuf.st_dev) {
8037 longattrname, prefix, type, filetype, lp)) {
8044 if (chk_path_build(name, longname, lp->pathname,
8070 lp->attrname);
8074 longname, lp->pathname);
8077 lp->count--;
8080 lp = (struct linkbuf *)getmem(sizeof (*lp));
8081 if (lp != (struct linkbuf *)NULL) {
8082 lp->nextp = ihead;
8083 ihead = lp;
8084 lp->inum = stbuf.st_ino;
8085 lp->devnum = stbuf.st_dev;
8086 lp->count = stbuf.st_nlink - 1;
8088 (void) strcpy(lp->pathname, longname);
8089 (void) strcpy(lp->attrname,
8092 (void) strcpy(lp->pathname, longname);
8093 (void) strcpy(lp->attrname, "");
8166 int typeflag, int filetype, struct linkbuf *lp)
8198 prepare_xattr(&attrbuf, longname, longattrname, typeflag, lp, &attrlen);