Home
last modified time | relevance | path

Searched refs:to_stat (Results 1 – 9 of 9) sorted by relevance

/netbsd/src/bin/cp/
Dcp.c108 struct stat to_stat, tmp_stat; in main() local
238 r = lstat(to.p_path, &to_stat); in main()
240 r = stat(to.p_path, &to_stat); in main()
245 if (r == -1 || !S_ISDIR(to_stat.st_mode)) { in main()
326 struct stat to_stat; in copy() local
419 sval = Pflag ? lstat(to.p_path, &to_stat) : stat(to.p_path, &to_stat); in copy()
424 if (to_stat.st_dev == curr->fts_statp->st_dev && in copy()
425 to_stat.st_ino == curr->fts_statp->st_ino) { in copy()
434 S_ISDIR(to_stat.st_mode)) { in copy()
487 } else if (!S_ISDIR(to_stat.st_mode)) { in copy()
Dutils.c102 struct stat to_stat, *fs; in copy_file() local
283 if (fstat(to_fd, &to_stat)) { in copy_file()
286 } else if (fs->st_gid == to_stat.st_gid && in copy_file()
/netbsd/src/external/gpl3/gdb/dist/sim/common/
Dsim-io.c399 return STATE_CALLBACK (sd)->to_stat (STATE_CALLBACK (sd), path, buf); in sim_io_stat()
Dsyscall.c497 result = (*cb->to_stat) (cb, path, &statbuf); in cb_syscall()
DChangeLog-20212005 and "fstat" callbacks by calls to "to_stat" and "to_fstat" (resp)
/netbsd/src/external/gpl3/gdb/dist/include/gdb/
DChangeLog71 * callback.h (struct host_callback_struct) <to_stat>: Renamed
/netbsd/src/external/gpl3/binutils/dist/include/gdb/
DChangeLog71 * callback.h (struct host_callback_struct) <to_stat>: Renamed
/netbsd/src/external/gpl3/gdb/dist/sim/h8300/
DChangeLog-2021498 callbacks by calls to "to_stat" and "to_fstat" (resp) callbacks
Dcompile.c2962 sim_callback->to_stat (sim_callback, filename, &stat_rec); in step_once()