Lines Matching refs:newname
623 pathname_t newname; in attr_list_path() local
629 separate_pathname(name, buf, &newname); in attr_list_path()
631 rval = attr_list_path(&newname, buffer, buffersize, flags, in attr_list_path()
635 free_pathname(&newname); in attr_list_path()
642 pathname_t newname; in attr_remove_path() local
648 separate_pathname(name, buf, &newname); in attr_remove_path()
650 rval = attr_remove_path(&newname, attrname, flags); in attr_remove_path()
653 free_pathname(&newname); in attr_remove_path()
662 pathname_t newname; in attr_set_path() local
668 separate_pathname(name, buf, &newname); in attr_set_path()
670 rval = attr_set_path(&newname, attrname, attrvalue, valuelength, in attr_set_path()
674 free_pathname(&newname); in attr_set_path()
696 pathname_t newname; in creat_path() local
702 separate_pathname(name, buf, &newname); in creat_path()
704 rval = creat_path(&newname, mode); in creat_path()
707 free_pathname(&newname); in creat_path()
950 pathname_t newname; in lchown_path() local
956 separate_pathname(name, buf, &newname); in lchown_path()
958 rval = lchown_path(&newname, owner, group); in lchown_path()
961 free_pathname(&newname); in lchown_path()
1022 pathname_t newname; in lstat64_path() local
1028 separate_pathname(name, buf, &newname); in lstat64_path()
1030 rval = lstat64_path(&newname, sbuf); in lstat64_path()
1033 free_pathname(&newname); in lstat64_path()
1056 pathname_t newname; in mkdir_path() local
1062 separate_pathname(name, buf, &newname); in mkdir_path()
1064 rval = mkdir_path(&newname, mode); in mkdir_path()
1067 free_pathname(&newname); in mkdir_path()
1074 pathname_t newname; in mknod_path() local
1080 separate_pathname(name, buf, &newname); in mknod_path()
1082 rval = mknod_path(&newname, mode, dev); in mknod_path()
1085 free_pathname(&newname); in mknod_path()
1112 pathname_t newname; in open_path() local
1118 separate_pathname(name, buf, &newname); in open_path()
1120 rval = open_path(&newname, oflag); in open_path()
1123 free_pathname(&newname); in open_path()
1130 pathname_t newname; in opendir_path() local
1136 separate_pathname(name, buf, &newname); in opendir_path()
1138 rval = opendir_path(&newname); in opendir_path()
1141 free_pathname(&newname); in opendir_path()
1169 pathname_t newname; in readlink_path() local
1175 separate_pathname(name, buf, &newname); in readlink_path()
1177 rval = readlink_path(&newname, lbuf, lbufsiz); in readlink_path()
1180 free_pathname(&newname); in readlink_path()
1241 pathname_t newname; in rmdir_path() local
1247 separate_pathname(name, buf, &newname); in rmdir_path()
1249 rval = rmdir_path(&newname); in rmdir_path()
1252 free_pathname(&newname); in rmdir_path()
1256 void separate_pathname(pathname_t * name, char *buf, pathname_t * newname) in separate_pathname() argument
1260 init_pathname(newname); in separate_pathname()
1269 append_pathname(newname, slash + 1); in separate_pathname()
1313 pathname_t newname; in stat64_path() local
1319 separate_pathname(name, buf, &newname); in stat64_path()
1321 rval = stat64_path(&newname, sbuf); in stat64_path()
1324 free_pathname(&newname); in stat64_path()
1331 pathname_t newname; in symlink_path() local
1342 separate_pathname(name, buf, &newname); in symlink_path()
1344 rval = symlink_path(name1, &newname); in symlink_path()
1347 free_pathname(&newname); in symlink_path()
1354 pathname_t newname; in truncate64_path() local
1360 separate_pathname(name, buf, &newname); in truncate64_path()
1362 rval = truncate64_path(&newname, length); in truncate64_path()
1365 free_pathname(&newname); in truncate64_path()
1372 pathname_t newname; in unlink_path() local
1378 separate_pathname(name, buf, &newname); in unlink_path()
1380 rval = unlink_path(&newname); in unlink_path()
1383 free_pathname(&newname); in unlink_path()