Searched refs:st (Results 226 - 250 of 666) sorted by relevance

1234567891011>>

/freebsd-10.0-release/contrib/wpa/src/utils/
H A Dos_win32.c33 SYSTEMTIME st; local
35 GetSystemTime(&st);
36 SystemTimeToFileTime(&st, &ft);
/freebsd-10.0-release/release/picobsd/tinyware/passwd/
H A Dpw_util.c125 struct stat st; local
138 if (fstat(lockfd, &st) < 0)
140 if (st.st_nlink != 0)
/freebsd-10.0-release/sys/contrib/octeon-sdk/
H A Docteon-feature.h150 cvmx_rnm_ctl_status_t st; local
151 st.u64 = cvmx_read_csr(CVMX_RNM_CTL_STATUS);
152 return st.s.eer_val;
/freebsd-10.0-release/sys/dev/scc/
H A Dscc_dev_quicc.c107 uint16_t rb, st; local
113 st = quicc_read2(bas, rb);
115 quicc_write2(bas, rb, st | 0x9000);
/freebsd-10.0-release/tools/regression/aio/aiop/
H A Daiop.c137 struct timeval st, et, rt; local
199 gettimeofday(&st, NULL);
217 timersub(&et, &st, &rt);
/freebsd-10.0-release/usr.bin/csup/
H A Drsyncfile.c76 struct stat st; local
80 error = stat(path, &st);
85 rf->fsize = st.st_size;
/freebsd-10.0-release/usr.sbin/ppp/
H A Dtcp.c171 struct stat st; local
173 if (fstat(p->fd, &st) != -1 && (st.st_mode & S_IFSOCK)) {
/freebsd-10.0-release/contrib/opie/
H A Dopieftpd.c664 struct stat st; local
669 st.st_size = 0;
676 st.st_size = -1;
678 st.st_blksize = BUFSIZ;
687 (fstat(fileno(fin), &st) < 0 || (st.st_mode & S_IFMT) != S_IFREG)) {
711 dout = dataconn(name, st.st_size, "w");
715 send_data(fin, dout, st.st_blksize);
729 struct stat st; local
732 if (unique && stat(name, &st)
1178 struct stat st; local
1235 struct stat st; local
1371 struct stat st; local
1411 struct stat st; local
[all...]
/freebsd-10.0-release/contrib/sendmail/makemap/
H A Dmakemap.c94 int st; local
478 st = 1;
482 st = 0;
486 st = -1;
490 if (st < 0)
499 else if (st > 0)
/freebsd-10.0-release/usr.sbin/makefs/
H A Dcd9660.c871 newnode->fileDataLength = node->inode->st.st_size;
877 cd9660_time_915(newnode->isoDirRecord->date, node->inode->st.st_mtime);
1895 (int)inode->st.st_ino, inode->ino));
1911 to->node->inode->st.st_dev = 0;
1912 to->node->inode->st.st_ino = 0;
1913 to->node->inode->st.st_size = 0;
1914 to->node->inode->st.st_blksize = from->node->inode->st.st_blksize;
1915 to->node->inode->st.st_atime = from->node->inode->st
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Target/Sparc/
H A DSparcRegisterInfo.cpp31 SparcRegisterInfo::SparcRegisterInfo(SparcSubtarget &st, argument
33 : SparcGenRegisterInfo(SP::I7), Subtarget(st), TII(tii) {
/freebsd-10.0-release/contrib/tcp_wrappers/
H A Dsafe_finger.c153 struct stat st; local
163 if (fstat(i, &st) == -1 && open("/dev/null", 2) != i)
/freebsd-10.0-release/etc/
H A Dnewsyslog.conf37 /var/log/sendmail.st 640 10 * 168 BN
/freebsd-10.0-release/sys/dev/stg/
H A Dtmc18c30reg.h136 #define STG_IS_PHASE_DATA(st) \
137 ((((st) & PHASE_MASK) & ~BSTAT_IO) == BSTAT_BSY)
/freebsd-10.0-release/sys/kern/
H A Dsubr_kdb.c376 struct stack st; local
379 stack_zero(&st);
380 stack_save(&st);
381 stack_print_ddb(&st);
400 struct stack st; local
403 stack_zero(&st);
404 stack_save_td(&st, td);
405 stack_print_ddb(&st);
/freebsd-10.0-release/usr.bin/calendar/calendars/
H A Dcalendar.usholiday28 09/MonFirst Labor Day in USA (1st Monday of September)
33 11/05* Election Day in USA (1st Tuesday after 1st Monday for even years)
34 11/SunFirst Daylight Savings Time ends in USA; clocks move back (1st Sunday of November)
/freebsd-10.0-release/usr.sbin/ctm/ctm/
H A Dctm_input.c114 struct stat st; local
126 if ( -1 == stat(Buffer, &st) ) {
/freebsd-10.0-release/contrib/gdb/gdb/
H A Dmdebugread.c643 if (sh->st != stEnd && sh->st != stBlock)
659 switch (sh->st)
769 if (sh->st == stProc && sh->sc != scText)
780 switch (tsym.st)
789 "unknown symbol type 0x%x", sh->st);
821 if (sh->st == stProc)
859 top_stack->blocktype = sh->st;
912 switch (tsym.st)
1007 tsym.st);
3803 struct symtab *st = NULL; local
4777 struct symtab *st; local
[all...]
/freebsd-10.0-release/sys/dev/bwi/
H A Dif_bwi.c2072 struct bwi_txstats_data *st; local
2076 st = malloc(sizeof(*st), M_DEVBUF, M_NOWAIT | M_ZERO);
2077 if (st == NULL) {
2081 sc->sc_txstats = st;
2099 &st->stats_ring_dtag);
2106 error = bus_dmamem_alloc(st->stats_ring_dtag, &st->stats_ring,
2108 &st->stats_ring_dmap);
2112 bus_dma_tag_destroy(st
2181 struct bwi_txstats_data *st; local
2436 struct bwi_txstats_data *st = sc->sc_txstats; local
3407 struct bwi_txstats_data *st = sc->sc_txstats; local
[all...]
/freebsd-10.0-release/contrib/nvi/common/
H A Drecover.c339 int st; local
399 if ((st = rcv_dlnwrite(sp, "file", t, fp))) {
400 if (st == 1)
404 if ((st = rcv_dlnwrite(sp, "path", cp_path, fp))) {
405 if (st == 1)
520 int st; local
561 if ((st = rcv_dlnread(sp, &dtype, &data, fp))) {
562 if (st == 1)
632 int st; local
682 if ((st
[all...]
/freebsd-10.0-release/contrib/sendmail/src/
H A Dcollect.c759 struct stat st; local
763 if (stat(dfile, &st) < 0)
764 st.st_size = -1;
767 dfile, (long) st.st_size);
979 struct stat64 st; local
981 struct stat st;
990 fstat64(sm_io_getinfo(df, SM_IO_WHAT_FD, NULL), &st)
992 fstat(sm_io_getinfo(df, SM_IO_WHAT_FD, NULL), &st)
995 st.st_size = 0;
998 if (st
[all...]
/freebsd-10.0-release/contrib/tcsh/
H A Dglob.c195 struct stat st; local
204 if (stat(str, &st) == -1 || !S_ISDIR(st.st_mode))
214 int st; local
216 st = lstat(fn, sb);
219 st = -1;
221 return st;
230 int st; local
232 st = stat(fn, sb);
235 st
[all...]
/freebsd-10.0-release/contrib/libarchive/libarchive/
H A Darchive_write_disk_posix.c220 * If this is valid, pst points to st. Otherwise,
223 struct stat st; member in struct:archive_write_disk
378 if (a->fd >= 0 && fstat(a->fd, &a->st) == 0) {
379 a->pst = &a->st;
387 if (lstat(a->name, &a->st) == 0) {
388 a->pst = &a->st;
857 a->st.st_flags |= UF_COMPRESSED;
858 if (fchflags(a->fd, a->st.st_flags) != 0) {
1547 if (a->st.st_size < a->filesize) {
1908 r = stat(a->name, &a->st);
2629 struct stat st; local
3561 struct stat st; local
3783 older(struct stat *st, struct archive_entry *entry) argument
[all...]
H A Darchive_read_disk_posix.c227 struct stat st; member in struct:tree
258 #define hasStat 16 /* The st entry is valid. */
861 const struct stat *st; /* info to use for this entry */ local
866 st = NULL;
951 st = tree_current_stat(t);
952 if (st != NULL && !tree_target_is_same_as_parent(t, st))
964 st = lst;
968 if (update_current_filesystem(a, st->st_dev) != ARCHIVE_OK) {
987 if (st
2434 const struct stat *st; local
2472 const struct stat *st; local
2505 tree_target_is_same_as_parent(struct tree *t, const struct stat *st) argument
2524 static const struct stat *lst, *st; local
[all...]
/freebsd-10.0-release/contrib/diff/lib/
H A Derror.c159 mbstate_t st; local
161 memset (&st, '\0', sizeof (st));
162 res = mbsrtowcs (wbuf, &tmp, len, &st);

Completed in 444 milliseconds

1234567891011>>