Lines Matching defs:narrow

1054  *   path.narrow
1079 * At most one of path.wide or path.narrow will be non-NULL.
1082 * both path.wide and path.narrow will be NULL
1106 BOOL narrow;
1108 const char *narrow;
1143 const char *narrow;
1169 path->narrow = FALSE;
1171 path->narrow = NULL;
1240 path->narrow = FALSE;
1283 path->narrow = FALSE;
1285 path->narrow = NULL;
1305 narrow = PyBytes_AS_STRING(bytes);
1306 if ((size_t)length != strlen(narrow)) {
1313 narrow,
1341 path->narrow = TRUE;
1350 path->narrow = narrow;
1353 worry about path->narrow is used after free. */
1429 && !path->narrow
2553 result = LSTAT(path->narrow, &st);
2559 result = fstatat(dir_fd, path->narrow, &st,
2567 result = STAT(path->narrow, &st);
3036 result = faccessat(dir_fd, path->narrow, mode, flags);
3043 result = access(path->narrow, mode);
3178 result = chdir(path->narrow);
3299 result = lchmod(path->narrow, mode);
3315 result = fchmodat(dir_fd, path->narrow, mode,
3336 result = chmod(path->narrow, mode);
3433 res = lchmod(path->narrow, mode);
3481 result = lchflags(path->narrow, flags);
3484 result = chflags(path->narrow, flags);
3517 res = lchflags(path->narrow, flags);
3542 res = chroot(path->narrow);
3682 result = lchown(path->narrow, uid, gid);
3688 result = fchownat(dir_fd, path->narrow, uid, gid,
3695 result = chown(path->narrow, uid, gid);
3777 res = lchown(path->narrow, uid, gid);
3965 if ((src->narrow && dst->wide) || (src->wide && dst->narrow)) {
3994 result = linkat(src_dir_fd, src->narrow,
3995 dst_dir_fd, dst->narrow,
4003 result = link(src->narrow, dst->narrow);
4012 result = link(src->narrow, dst->narrow);
4091 if (path->narrow && v) {
4170 if (path->narrow) {
4171 name = path->narrow;
4355 if (path->narrow) {
4428 if (result && path->narrow) {
4480 if (path->narrow)
4650 result = mkdirat(dir_fd, path->narrow, mode);
4658 result = mkdir(path->narrow);
4660 result = mkdir(path->narrow, mode);
4815 if ((src->narrow && dst->wide) || (src->wide && dst->narrow)) {
4825 result = renameat(src_dir_fd, src->narrow, dst_dir_fd, dst->narrow);
4831 result = rename(src->narrow, dst->narrow);
4934 result = unlinkat(dir_fd, path->narrow, AT_REMOVEDIR);
4941 result = rmdir(path->narrow);
5116 result = unlinkat(dir_fd, path->narrow, 0);
5122 result = unlink(path->narrow);
5625 result = utime_nofollow_symlinks(&utime, path->narrow);
5631 result = utime_dir_fd(&utime, dir_fd, path->narrow, follow_symlinks);
5642 result = utime_default(&utime, path->narrow);
5910 execv(path->narrow, argvlist);
5990 execve(path->narrow, argvlist, envlist);
6360 err_code = posix_spawnp(&pid, path->narrow,
6366 err_code = posix_spawn(&pid, path->narrow,
6608 spawnval = _rtp_spawn(mode, path->narrow, (const char **)argvlist, NULL);
6610 spawnval = _spawnv(mode, path->narrow, argvlist);
6721 spawnval = _rtp_spawn(mode, path->narrow, (const char **)argvlist,
6724 spawnval = _spawnve(mode, path->narrow, argvlist, envlist);
8720 length = readlinkat(dir_fd, path->narrow, buffer, MAXPATHLEN);
8726 length = readlink(path->narrow, buffer, MAXPATHLEN);
8805 if (result && path->narrow) {
8989 if ((src->narrow && dst->wide) || (src->wide && dst->narrow)) {
8999 result = symlinkat(src->narrow, dir_fd, dst->narrow);
9005 result = symlink(src->narrow, dst->narrow);
9314 fd = openat(dir_fd, path->narrow, flags, mode);
9322 fd = open(path->narrow, flags, mode);
10718 result = mkfifoat(dir_fd, path->narrow, mode);
10726 result = mkfifo(path->narrow, mode);
10787 result = mknodat(dir_fd, path->narrow, mode, device);
10795 result = mknod(path->narrow, mode, device);
10949 result = truncate(path->narrow, length);
11528 result = statvfs(path->narrow, &st);
11804 limit = pathconf(path->narrow, name);
12943 result = fgetxattr(path->fd, attribute->narrow, ptr, buffer_size);
12945 result = getxattr(path->narrow, attribute->narrow, ptr, buffer_size);
12947 result = lgetxattr(path->narrow, attribute->narrow, ptr, buffer_size);
13005 result = fsetxattr(path->fd, attribute->narrow,
13008 result = setxattr(path->narrow, attribute->narrow,
13011 result = lsetxattr(path->narrow, attribute->narrow,
13057 result = fremovexattr(path->fd, attribute->narrow);
13059 result = removexattr(path->narrow, attribute->narrow);
13061 result = lremovexattr(path->narrow, attribute->narrow);
13105 name = path->narrow ? path->narrow : ".";
14063 if (path->narrow) {
14077 if (path->narrow) {
14153 joined_path = join_path_filename(path->narrow, name, name_len);
14158 if (!path->narrow || !PyObject_CheckBuffer(path->object)) {
14528 if (iterator->path.narrow)
14529 path_str = iterator->path.narrow;