Searched refs:st (Results 26 - 50 of 649) sorted by relevance

1234567891011>>

/freebsd-9.3-release/crypto/heimdal/appl/ftp/common/
H A Dbuffer.c42 * Allocate a buffer enough to handle st->st_blksize, if
47 alloc_buffer (void *oldbuf, size_t *sz, struct stat *st) argument
53 if (st)
54 new_sz = max(BUFSIZ, st->st_blksize);
/freebsd-9.3-release/lib/msun/i387/
H A Ds_cos.S47 fadd %st(0)
48 fxch %st(1)
53 fstp %st(1)
H A Ds_sin.S47 fadd %st(0)
48 fxch %st(1)
53 fstp %st(1)
H A Ds_logb.S42 fstp %st
H A Ds_logbf.S14 fstp %st
H A Ds_logbl.S42 fstp %st
H A Ds_scalbn.S43 fstp %st(1)
H A Ds_significand.S42 fstp %st(1)
H A Ds_significandf.S14 fstp %st(1)
/freebsd-9.3-release/contrib/sendmail/libsm/
H A Dmakebuf.c97 struct stat st; local
99 if (fp->f_file < 0 || fstat(fp->f_file, &st) < 0)
107 *couldbetty = S_ISCHR(st.st_mode);
108 if (st.st_blksize == 0)
115 if (S_ISREG(st.st_mode) && st.st_blksize > SM_IO_MAX_BUF_FILE)
116 st.st_blksize = SM_IO_MAX_BUF_FILE;
120 if (!S_ISREG(st.st_mode))
123 if (st.st_blksize > SM_IO_MAX_BUF)
124 st
[all...]
/freebsd-9.3-release/sys/compat/svr4/
H A Dsvr4_stat.c96 bsd_to_svr4_stat(st, st4)
97 struct stat *st;
101 st4->st_dev = bsd_to_svr4_odev_t(st->st_dev);
102 st4->st_ino = st->st_ino;
103 st4->st_mode = BSD_TO_SVR4_MODE(st->st_mode);
104 st4->st_nlink = st->st_nlink;
105 st4->st_uid = st->st_uid;
106 st4->st_gid = st->st_gid;
107 st4->st_rdev = bsd_to_svr4_odev_t(st->st_rdev);
108 st4->st_size = st
167 struct stat st; local
192 struct stat st; local
217 struct stat st; local
235 struct stat st; local
262 struct stat st; local
289 struct stat st; local
306 struct stat st; local
332 struct stat st; local
358 struct stat st; local
[all...]
/freebsd-9.3-release/sys/sparc64/sparc64/
H A Dstack_machdep.c39 static void stack_capture(struct stack *st, struct frame *frame);
42 stack_capture(struct stack *st, struct frame *frame) argument
47 stack_zero(st);
62 if (stack_put(st, callpc) == -1)
72 stack_save_td(struct stack *st, struct thread *td) argument
80 stack_capture(st, (struct frame *)(td->td_pcb->pcb_sp + SPOFF));
84 stack_save(struct stack *st) argument
87 stack_capture(st, (struct frame *)__builtin_frame_address(1));
/freebsd-9.3-release/usr.sbin/pw/
H A Drm_r.c50 struct stat st; local
56 if (lstat(file, &st) == 0) { /* Need symlinks, not
58 if (S_ISDIR(st.st_mode)) /* Directory - recurse */
61 if (S_ISLNK(st.st_mode) || st.st_uid == uid)
68 if (lstat(dir, &st) == 0) {
69 if (S_ISLNK(st.st_mode))
71 else if (st.st_uid == uid)
/freebsd-9.3-release/contrib/openpam/
H A Dmissing81 "$@"; st=$?
84 test $st -eq 0 && exit 0
89 case $2 in --version|--help) exit $st;; esac
94 if test $st -eq 63; then
96 elif test $st -eq 127; then
101 exit $st
207 exit $st
/freebsd-9.3-release/crypto/openssh/
H A Dsftp-common.c68 stat_to_attrib(const struct stat *st, Attrib *a) argument
73 a->size = st->st_size;
75 a->uid = st->st_uid;
76 a->gid = st->st_gid;
78 a->perm = st->st_mode;
80 a->atime = st->st_atime;
81 a->mtime = st->st_mtime;
86 attrib_to_stat(const Attrib *a, struct stat *st) argument
88 memset(st, 0, sizeof(*st));
193 ls_file(const char *name, const struct stat *st, int remote, int si_units) argument
[all...]
/freebsd-9.3-release/sys/amd64/amd64/
H A Dstack_machdep.c43 stack_capture(struct stack *st, register_t rbp) argument
48 stack_zero(st);
56 if (stack_put(st, callpc) == -1)
67 stack_save_td(struct stack *st, struct thread *td) argument
77 stack_capture(st, rbp);
81 stack_save(struct stack *st) argument
86 stack_capture(st, rbp);
/freebsd-9.3-release/sys/i386/i386/
H A Dstack_machdep.c43 stack_capture(struct stack *st, register_t ebp) argument
48 stack_zero(st);
56 if (stack_put(st, callpc) == -1)
67 stack_save_td(struct stack *st, struct thread *td) argument
77 stack_capture(st, ebp);
81 stack_save(struct stack *st) argument
86 stack_capture(st, ebp);
/freebsd-9.3-release/sys/powerpc/powerpc/
H A Dstack_machdep.c52 stack_capture(struct stack *st, vm_offset_t frame) argument
56 stack_zero(st);
82 if (stack_put(st, callpc) == -1)
88 stack_save_td(struct stack *st, struct thread *td) argument
98 stack_capture(st, frame);
102 stack_save(struct stack *st) argument
107 stack_capture(st, frame);
/freebsd-9.3-release/contrib/file/
H A Dmissing81 "$@"; st=$?
84 test $st -eq 0 && exit 0
89 case $2 in --version|--help) exit $st;; esac
94 if test $st -eq 63; then
96 elif test $st -eq 127; then
101 exit $st
207 exit $st
/freebsd-9.3-release/usr.sbin/fifolog/lib/
H A Dfifolog_create.c49 struct stat st; local
67 i = fstat(fd, &st);
69 if (!S_ISBLK(st.st_mode) &&
70 !S_ISCHR(st.st_mode) &&
71 !S_ISREG(st.st_mode)) {
76 if(!created && S_ISREG(st.st_mode)) {
91 if (size == 0 && S_ISREG(st.st_mode))
92 size = st.st_size;
97 if (S_ISREG(st.st_mode) && ftruncate(fd, size) < 0)
/freebsd-9.3-release/contrib/libarchive/libarchive/test/
H A Dtest_write_disk_secure.c42 struct stat st;
127 assertEqualInt(0, lstat("link_to_dir3", &st));
128 assert(S_ISLNK(st.st_mode));
149 assertEqualInt(0, lstat("link_to_dir4", &st));
150 assert(S_ISDIR(st.st_mode));
177 assertEqualInt(0, lstat("link_to_dir5", &st));
178 assert(S_ISDIR(st.st_mode));
207 assert(0 == lstat("dir", &st));
208 failure("dir: st.st_mode=%o", st
[all...]
/freebsd-9.3-release/sys/i386/ibcs2/
H A Dibcs2_stat.c59 bsd_stat2ibcs_stat(st, st4)
60 struct stat *st;
64 st4->st_dev = (ibcs2_dev_t)st->st_dev;
65 st4->st_ino = (ibcs2_ino_t)st->st_ino;
66 st4->st_mode = (ibcs2_mode_t)st->st_mode;
67 st4->st_nlink= (ibcs2_nlink_t)st->st_nlink;
68 st4->st_uid = (ibcs2_uid_t)st->st_uid;
69 st4->st_gid = (ibcs2_gid_t)st->st_gid;
70 st4->st_rdev = (ibcs2_dev_t)st->st_rdev;
71 if (st
142 struct stat st; local
163 struct stat st; local
184 struct stat st; local
[all...]
/freebsd-9.3-release/contrib/opie/libopie/
H A Dopen.c34 struct stat st; local
36 if (lstat(file, &st)) {
48 if (lstat(file, &st))
52 if (!S_ISREG(st.st_mode))
/freebsd-9.3-release/lib/msun/amd64/
H A Ds_logbl.S42 fstp %st
/freebsd-9.3-release/tools/regression/geom_gpt/
H A Dgctl.t135 my $st = system("cc -o $cmd -g $srcdir/test.c -lgeom");
136 if ($st != 0) {
162 $st = `tail -1 $out`;
163 if ($st =~ "^$res") {
166 print "not ok $nr \# gctl($key) - $st\n";
186 $st = `tail -1 $out`;
187 if ($st =~ "^$res") {
190 print "not ok $nr \# conf($key) - $st\n";

Completed in 149 milliseconds

1234567891011>>