Lines Matching refs:newname
596 pathname_t newname; in attr_list_path() local
602 separate_pathname(name, buf, &newname); in attr_list_path()
604 rval = attr_list_path(&newname, buffer, buffersize, flags, in attr_list_path()
608 free_pathname(&newname); in attr_list_path()
615 pathname_t newname; in attr_remove_path() local
621 separate_pathname(name, buf, &newname); in attr_remove_path()
623 rval = attr_remove_path(&newname, attrname, flags); in attr_remove_path()
626 free_pathname(&newname); in attr_remove_path()
635 pathname_t newname; in attr_set_path() local
641 separate_pathname(name, buf, &newname); in attr_set_path()
643 rval = attr_set_path(&newname, attrname, attrvalue, valuelength, in attr_set_path()
647 free_pathname(&newname); in attr_set_path()
669 pathname_t newname; in creat_path() local
675 separate_pathname(name, buf, &newname); in creat_path()
677 rval = creat_path(&newname, mode); in creat_path()
680 free_pathname(&newname); in creat_path()
923 pathname_t newname; in lchown_path() local
929 separate_pathname(name, buf, &newname); in lchown_path()
931 rval = lchown_path(&newname, owner, group); in lchown_path()
934 free_pathname(&newname); in lchown_path()
995 pathname_t newname; in lstat64_path() local
1001 separate_pathname(name, buf, &newname); in lstat64_path()
1003 rval = lstat64_path(&newname, sbuf); in lstat64_path()
1006 free_pathname(&newname); in lstat64_path()
1029 pathname_t newname; in mkdir_path() local
1035 separate_pathname(name, buf, &newname); in mkdir_path()
1037 rval = mkdir_path(&newname, mode); in mkdir_path()
1040 free_pathname(&newname); in mkdir_path()
1047 pathname_t newname; in mknod_path() local
1053 separate_pathname(name, buf, &newname); in mknod_path()
1055 rval = mknod_path(&newname, mode, dev); in mknod_path()
1058 free_pathname(&newname); in mknod_path()
1085 pathname_t newname; in open_path() local
1091 separate_pathname(name, buf, &newname); in open_path()
1093 rval = open_path(&newname, oflag); in open_path()
1096 free_pathname(&newname); in open_path()
1103 pathname_t newname; in opendir_path() local
1109 separate_pathname(name, buf, &newname); in opendir_path()
1111 rval = opendir_path(&newname); in opendir_path()
1114 free_pathname(&newname); in opendir_path()
1142 pathname_t newname; in readlink_path() local
1150 separate_pathname(name, buf, &newname); in readlink_path()
1152 rval = readlink_path(&newname, lbuf, lbufsiz); in readlink_path()
1155 free_pathname(&newname); in readlink_path()
1216 pathname_t newname; in rmdir_path() local
1222 separate_pathname(name, buf, &newname); in rmdir_path()
1224 rval = rmdir_path(&newname); in rmdir_path()
1227 free_pathname(&newname); in rmdir_path()
1231 void separate_pathname(pathname_t * name, char *buf, pathname_t * newname) in separate_pathname() argument
1235 init_pathname(newname); in separate_pathname()
1244 append_pathname(newname, slash + 1); in separate_pathname()
1288 pathname_t newname; in stat64_path() local
1294 separate_pathname(name, buf, &newname); in stat64_path()
1296 rval = stat64_path(&newname, sbuf); in stat64_path()
1299 free_pathname(&newname); in stat64_path()
1306 pathname_t newname; in symlink_path() local
1317 separate_pathname(name, buf, &newname); in symlink_path()
1319 rval = symlink_path(name1, &newname); in symlink_path()
1322 free_pathname(&newname); in symlink_path()
1329 pathname_t newname; in truncate64_path() local
1335 separate_pathname(name, buf, &newname); in truncate64_path()
1337 rval = truncate64_path(&newname, length); in truncate64_path()
1340 free_pathname(&newname); in truncate64_path()
1347 pathname_t newname; in unlink_path() local
1353 separate_pathname(name, buf, &newname); in unlink_path()
1355 rval = unlink_path(&newname); in unlink_path()
1358 free_pathname(&newname); in unlink_path()