Searched refs:st (Results 176 - 200 of 687) sorted by relevance

1234567891011>>

/freebsd-10.1-release/usr.bin/make/
H A Dutil.c283 struct stat st; local
285 if (lstat(file, &st) == -1)
288 if (S_ISDIR(st.st_mode)) {
/freebsd-10.1-release/usr.bin/netstat/
H A Dif.c475 fill_iftot(struct iftot *st) argument
483 bzero(st, sizeof(*st));
495 st->ift_ip += IFA_STAT(ipackets);
496 st->ift_ie += IFA_STAT(ierrors);
497 st->ift_id += IFA_STAT(iqdrops);
498 st->ift_ib += IFA_STAT(ibytes);
499 st->ift_op += IFA_STAT(opackets);
500 st->ift_oe += IFA_STAT(oerrors);
501 st
[all...]
/freebsd-10.1-release/contrib/libarchive/libarchive/
H A Darchive_read_support_format_mtree.c1052 struct stat st_storage, *st; local
1136 st = &st_storage;
1138 if (fstat(mtree->fd, st) == -1) {
1145 st = NULL;
1147 } else if (lstat(path, st) == -1) {
1148 st = NULL;
1155 if (st != NULL) {
1157 ((st->st_mode & S_IFMT) == S_IFREG &&
1160 || ((st->st_mode & S_IFMT) == S_IFLNK &&
1164 || ((st
[all...]
/freebsd-10.1-release/contrib/atf/atf-c/detail/
H A Dfs_test.c442 atf_fs_stat_t st; local
448 RE(atf_fs_stat_init(&st, &p));
449 ATF_CHECK_EQ(0400, atf_fs_stat_get_mode(&st));
450 atf_fs_stat_fini(&st);
454 RE(atf_fs_stat_init(&st, &p));
455 ATF_CHECK_EQ(0644, atf_fs_stat_get_mode(&st));
456 atf_fs_stat_fini(&st);
469 atf_fs_stat_t st; local
475 RE(atf_fs_stat_init(&st, &p));
476 ATF_REQUIRE_EQ(atf_fs_stat_get_type(&st), atf_fs_stat_dir_typ
495 atf_fs_stat_t st; local
[all...]
/freebsd-10.1-release/contrib/llvm/lib/Target/Hexagon/
H A DHexagonRegisterInfo.h48 HexagonRegisterInfo(HexagonSubtarget &st);
/freebsd-10.1-release/contrib/llvm/lib/Target/Sparc/
H A DSparcRegisterInfo.h31 SparcRegisterInfo(SparcSubtarget &st);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Host/common/
H A DTimeValue.cpp128 SYSTEMTIME st; local
129 GetSystemTime(&st);
130 nanoseconds = st.wMilliseconds * 1000000;
132 SystemTimeToFileTime(&st, &ft);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/
H A DRegisterInfos_x86_64.h186 DEFINE_FP_ST(st, 0),
187 DEFINE_FP_ST(st, 1),
188 DEFINE_FP_ST(st, 2),
189 DEFINE_FP_ST(st, 3),
190 DEFINE_FP_ST(st, 4),
191 DEFINE_FP_ST(st, 5),
192 DEFINE_FP_ST(st, 6),
193 DEFINE_FP_ST(st, 7),
353 UPDATE_FP_INFO(st, 0);
354 UPDATE_FP_INFO(st,
[all...]
/freebsd-10.1-release/contrib/ncurses/ncurses/tty/
H A Dhardscroll.c291 char line[BUFSIZ], *st; local
312 st = strtok(line, " ");
314 oldnums[n++] = atoi(st);
316 ((st = strtok((char *) NULL, " ")) != 0);
/freebsd-10.1-release/contrib/subversion/subversion/libsvn_client/
H A Dstatus.c631 svn_client_status_t *st = apr_palloc(result_pool, sizeof(*st));
633 *st = *status;
636 st->local_abspath = apr_pstrdup(result_pool, status->local_abspath);
639 st->repos_root_url = apr_pstrdup(result_pool, status->repos_root_url);
642 st->repos_uuid = apr_pstrdup(result_pool, status->repos_uuid);
645 st->repos_relpath = apr_pstrdup(result_pool, status->repos_relpath);
648 st->changed_author = apr_pstrdup(result_pool, status->changed_author);
651 st->lock = svn_lock_dup(status->lock, result_pool);
654 st
628 svn_client_status_t *st = apr_palloc(result_pool, sizeof(*st)); local
[all...]
/freebsd-10.1-release/contrib/xz/src/common/
H A Dtuklib_physmem.c175 inv_state_t *st = NULL; local
176 if (setinvent_r(&st) != -1) {
178 while ((i = getinvent_r(st)) != NULL) {
186 endinvent_r(st);
/freebsd-10.1-release/lib/libkvm/
H A Dkvm_sparc.c94 struct stat st; local
103 if (fstat(kd->pmfd, &st) < 0)
108 off = st.st_size - ctob(btoc(sizeof(vm->segmap)));
118 off = st.st_size - ctob(btoc(sizeof(vm->pmeg)) +
/freebsd-10.1-release/lib/libmandoc/
H A DMakefile14 msec.c read.c roff.c st.c \
/freebsd-10.1-release/lib/msun/amd64/
H A Ds_remquo.S43 fstp %st(1)
H A Ds_remquof.S43 fstp %st(1)
H A Ds_remquol.S41 fstp %st(1)
/freebsd-10.1-release/lib/msun/i387/
H A Ds_remquo.S41 fstp %st(1)
H A Ds_remquof.S41 fstp %st(1)
H A Ds_remquol.S41 fstp %st(1)
/freebsd-10.1-release/sys/fs/procfs/
H A Dprocfs_status.c84 /* comm pid ppid pgid sid tty ctty,sldr start ut st wmsg
126 struct timeval start, ut, st; local
129 calcru(p, &ut, &st);
136 (intmax_t)st.tv_sec, st.tv_usec);
/freebsd-10.1-release/usr.bin/cap_mkdb/
H A Dcap_mkdb.c162 int st; local
167 for (reccnt = 0, bplen = 0; (st = cgetnext(&bp, ifiles)) > 0;) {
187 switch(st) {
249 switch(st) {
/freebsd-10.1-release/usr.bin/tail/
H A Dextern.h52 struct stat st; member in struct:file_info
/freebsd-10.1-release/usr.sbin/ctm/mkCTM/
H A Dmkctm.c106 static struct stat st; variable in typeref:struct:stat
110 if (lstat(name, &st) < 0)
112 return &st;
128 struct stat *st; local
133 st = StatFile(buf);
136 st->st_uid, st->st_gid, st->st_mode & ~S_IFMT);
319 struct stat st; local
327 fstat(fd1, &st);
[all...]
/freebsd-10.1-release/usr.sbin/fifolog/lib/
H A Dfifolog_int.c58 struct stat st; local
72 i = fstat(f->fd, &st);
74 if (!S_ISREG(st.st_mode))
77 f->logsize = st.st_size;
/freebsd-10.1-release/usr.sbin/kgzip/
H A Delfhdr.h79 Elf32_Sym st[KGZ_STNUM]; member in struct:kgz_elfhdr

Completed in 294 milliseconds

1234567891011>>