Home
last modified time | relevance | path

Searched refs:file (Results 1 – 25 of 384) sorted by relevance

12345678910>>...16

/sysdeps/unix/sysv/linux/
A Dutimensat.c28 __utimensat64_helper (int fd, const char *file, in __utimensat64_helper() argument
36 return INLINE_SYSCALL_CALL (utimensat_time64, fd, file, &tsp64[0], flags); in __utimensat64_helper()
49 int r = INLINE_SYSCALL_CALL (utimensat_time64, fd, file, &tsp64[0], in __utimensat64_helper()
65 return INLINE_SYSCALL_CALL (utimensat, fd, file, ptsp32, flags); in __utimensat64_helper()
75 __utimensat64 (int fd, const char *file, const struct __timespec64 tsp64[2], in libc_hidden_def()
78 if (file == NULL) in libc_hidden_def()
81 return __utimensat64_helper (fd, file, &tsp64[0], flags); in libc_hidden_def()
88 __utimensat (int fd, const char *file, const struct timespec tsp[2], in libc_hidden_def()
98 return __utimensat64 (fd, file, tsp ? &tsp64[0] : NULL, flags); in libc_hidden_def()
A Dpathconf.c30 static long int posix_pathconf (const char *file, int name);
39 __pathconf (const char *file, int name) in __pathconf() argument
46 return __statfs_link_max (__statfs (file, &fsbuf), &fsbuf, file, -1); in __pathconf()
49 return __statfs_filesize_max (__statfs (file, &fsbuf), &fsbuf); in __pathconf()
52 return __statfs_symlinks (__statfs (file, &fsbuf), &fsbuf); in __pathconf()
55 return __statfs_chown_restricted (__statfs (file, &fsbuf), &fsbuf); in __pathconf()
58 return posix_pathconf (file, name); in __pathconf()
64 distinguish_extX (const struct statfs *fsbuf, const char *file, int fd) in distinguish_extX() argument
70 if ((file == NULL ? __fstat64_time64 (fd, &st) in distinguish_extX()
71 : __stat64_time64 (file, &st)) != 0) in distinguish_extX()
[all …]
A Dfstatat64.c50 int r = INTERNAL_SYSCALL_CALL (statx, fd, file, AT_NO_AUTOMOUNT | flag, in fstatat64_time64_statx()
98 r = INTERNAL_SYSCALL_CALL (newfstatat, fd, file, buf, flag); in fstatat64_time64_stat()
102 r = INTERNAL_SYSCALL_CALL (fstatat64, fd, file, buf, flag); in fstatat64_time64_stat()
106 r = INTERNAL_SYSCALL_CALL (fstatat64, fd, file, &kst64, flag); in fstatat64_time64_stat()
117 r = INTERNAL_SYSCALL_CALL (fstatat64, fd, file, &st64, flag); in fstatat64_time64_stat()
140 r = INTERNAL_SYSCALL_CALL (newfstatat, fd, file, &kst, flag); in fstatat64_time64_stat()
157 r = fstatat64_time64_statx (fd, file, buf, flag); in __fstatat64_time64()
160 r = fstatat64_time64_stat (fd, file, buf, flag); in __fstatat64_time64()
163 r = fstatat64_time64_stat (fd, file, buf, flag); in __fstatat64_time64()
174 __fstatat64 (int fd, const char *file, struct stat64 *buf, int flags) in hidden_def()
[all …]
A Dstat64.c27 __stat64_time64 (const char *file, struct __stat64_t64 *buf) in __stat64_time64() argument
29 return __fstatat64_time64 (AT_FDCWD, file, buf, 0); in __stat64_time64()
35 __stat64 (const char *file, struct stat64 *buf) in hidden_def()
38 return __stat64_time64 (file, &st_t64) in hidden_def()
A Daccess.c24 __access (const char *file, int type) in __access() argument
27 return INLINE_SYSCALL_CALL (access, file, type); in __access()
29 return INLINE_SYSCALL_CALL (faccessat, AT_FDCWD, file, type); in __access()
A Dlstat64.c27 __lstat64_time64 (const char *file, struct __stat64_t64 *buf) in __lstat64_time64() argument
29 return __fstatat64_time64 (AT_FDCWD, file, buf, AT_SYMLINK_NOFOLLOW); in __lstat64_time64()
35 __lstat64 (const char *file, struct stat64 *buf) in hidden_def()
38 return __lstat64_time64 (file, &st_t64) in hidden_def()
A Dutimes.c23 __utimes64 (const char *file, const struct __timeval64 tvp[2]) in __utimes64() argument
33 return __utimensat64_helper (AT_FDCWD, file, tvp ? ts64 : NULL, 0); in __utimes64()
40 __utimes (const char *file, const struct timeval tvp[2]) in libc_hidden_def()
50 return __utimes64 (file, tvp ? tv64 : NULL); in libc_hidden_def()
A Dcreat.c28 __creat (const char *file, mode_t mode) in __creat() argument
31 return SYSCALL_CANCEL (creat, file, mode); in __creat()
33 return __open (file, O_WRONLY | O_CREAT | O_TRUNC, mode); in __creat()
A Dlutimes.c25 __lutimes64 (const char *file, const struct __timeval64 tvp64[2]) in __lutimes64() argument
34 return __utimensat64_helper (AT_FDCWD, file, tvp64 ? &ts64[0] : NULL, in __lutimes64()
42 __lutimes (const char *file, const struct timeval tvp[2]) in libc_hidden_def()
52 return __lutimes64 (file, tvp ? &tv64[0] : NULL); in libc_hidden_def()
A Dfutimesat.c25 __futimesat64 (int fd, const char *file, const struct __timeval64 tvp64[2]) in __futimesat64() argument
34 return __utimensat64_helper (fd, file, tvp64 ? &ts64[0] : NULL, 0); in __futimesat64()
41 __futimesat (int fd, const char *file, const struct timeval tvp[2]) in libc_hidden_def()
51 return __futimesat64 (fd, file, tvp ? &tv64[0] : NULL); in libc_hidden_def()
A Dfxstatat64.c34 __fxstatat64 (int vers, int fd, const char *file, struct stat64 *st, int flag) in __fxstatat64() argument
41 return INLINE_SYSCALL_CALL (newfstatat, fd, file, st, flag); in __fxstatat64()
45 int r = INLINE_SYSCALL_CALL (fstatat64, fd, file, &st64, flag); in __fxstatat64()
52 int r = INLINE_SYSCALL_CALL (statx, fd, file, AT_NO_AUTOMOUNT | flag, in __fxstatat64()
63 return INLINE_SYSCALL_CALL (fstatat64, fd, file, st, flag); in __fxstatat64()
A Dcreat64.c25 __creat64 (const char *file, mode_t mode) in __creat64() argument
28 return SYSCALL_CANCEL (creat, file, mode); in __creat64()
31 return __open64 (file, O_WRONLY | O_CREAT | O_TRUNC, mode); in __creat64()
/sysdeps/mach/hurd/
A Dreadlink.c31 file_t file; in __readlink() local
34 file = __file_name_lookup (file_name, O_READ | O_NOLINK, 0); in __readlink()
35 if (file == MACH_PORT_NULL) in __readlink()
38 err = __io_stat (file, &st); in __readlink()
44 err = __io_read (file, &rbuf, &len, 0, len); in __readlink()
54 __mach_port_deallocate (__mach_task_self (), file); in __readlink()
A Daccess.c27 __access_noerrno (const char *file, int type) in __access_noerrno() argument
29 return __faccessat_noerrno (AT_FDCWD, file, type, 0); in __access_noerrno()
34 __access (const char *file, int type) in __access() argument
36 return __faccessat (AT_FDCWD, file, type, 0); in __access()
A Dreadlinkat.c32 file_t file; in readlinkat() local
35 file = __file_name_lookup_at (fd, 0, file_name, O_READ | O_NOLINK, 0); in readlinkat()
36 if (file == MACH_PORT_NULL) in readlinkat()
39 err = __io_stat (file, &st); in readlinkat()
45 err = __io_read (file, &rbuf, &len, 0, len); in readlinkat()
55 __mach_port_deallocate (__mach_task_self (), file); in readlinkat()
A Dexecveat.c36 file_t file = __file_name_lookup_at (dirfd, flags, file_name, O_EXEC, 0); in __execveat() local
37 if (file == MACH_PORT_NULL) in __execveat()
54 __mach_port_deallocate (__mach_task_self (), file); in __execveat()
65 __mach_port_deallocate (__mach_task_self (), file); in __execveat()
74 __mach_port_deallocate (__mach_task_self (), file); in __execveat()
82 err = _hurd_exec_paths (__mach_task_self (), file, in __execveat()
86 __mach_port_deallocate (__mach_task_self (), file); in __execveat()
A Drevoke.c27 file_t file = __file_name_lookup (file_name, 0, 0); in __revoke() local
29 if (file == MACH_PORT_NULL) in __revoke()
32 err = __io_revoke (file); in __revoke()
33 __mach_port_deallocate (__mach_task_self (), file); in __revoke()
A Dtruncate.c29 file_t file = __file_name_lookup (file_name, O_WRITE, 0); in __truncate() local
31 if (file == MACH_PORT_NULL) in __truncate()
34 err = __file_set_size (file, length); in __truncate()
35 __mach_port_deallocate (__mach_task_self (), file); in __truncate()
A Dtruncate64.c29 file_t file = __file_name_lookup (file_name, O_WRITE, 0); in __truncate64() local
31 if (file == MACH_PORT_NULL) in __truncate64()
34 err = __file_set_size (file, length); in __truncate64()
35 __mach_port_deallocate (__mach_task_self (), file); in __truncate64()
A Dfexecve.c28 file_t file; in fexecve() local
34 __dir_lookup (port, "", O_EXEC, 0, &doretry, retryname, &file)); in fexecve()
41 err = _hurd_exec_paths (__mach_task_self (), file, NULL, NULL, argv, envp); in fexecve()
45 __mach_port_deallocate (__mach_task_self (), file); in fexecve()
A Dunlink.c30 const char *file; in __unlink() local
32 dir = __directory_name_split (name, (char **) &file); in __unlink()
36 err = __dir_unlink (dir, file); in __unlink()
A Dconnect.c45 file_t file; in __connect() local
47 file = __file_name_lookup (name, 0, 0); in __connect()
49 if (file == MACH_PORT_NULL) in __connect()
51 err = __ifsock_getsockaddr (file, &aport); in __connect()
52 __mach_port_deallocate (__mach_task_self (), file); in __connect()
/sysdeps/ia64/fpu/
A Dimport_check15 echo -e "$(basename $file):\tError: undefined reference $name doesn't start with \"__\"."
34 echo -e "$(basename $file):\tError: detected $global_count strong " \
41 file=$1
42 size=$(readelf -S $file | \
51 summands=$(readelf -s $file | fgrep " OBJECT " | tr -s ' ' |
55 echo -e "$(basename $file):\tError: sum of objects=$sum bytes, .rodata size=$size bytes"
60 nm -g $file > $tmp
/sysdeps/unix/
A Dmake-syscalls.sh57 while read file caller rest; do
63 { test -f $dir/$file.c && srcfile=$dir/$file.c; } ||
64 { test -f $dir/$file.S && srcfile=$dir/$file.S; } ||
69 echo $file $srcfile $caller $rest;
151 while read file srcfile caller syscall args strong weak; do
212 echo "#### CALL=$file NUMBER=$callnum ARGS=$args SOURCE=$srcfile"
236 echo "ifeq (,\$(filter $file,\$(unix-syscalls)))"
243 echo "unix-syscalls += $file"
244 test x$caller = x- || echo "unix-extra-syscalls += $file"
249 echo "shared-only-routines += $file"
[all …]
/sysdeps/posix/
A Dremove.c30 remove (const char *file) in remove() argument
33 if (__unlink (file) != 0 in remove()
37 || __rmdir (file) != 0)) in remove()

Completed in 31 milliseconds

12345678910>>...16