Searched refs:st (Results 101 - 125 of 709) sorted by relevance

1234567891011>>

/freebsd-10.2-release/sys/net80211/
H A Dieee80211_scan_sta.c159 struct sta_table *st; local
161 st = (struct sta_table *) malloc(sizeof(struct sta_table),
163 if (st == NULL)
165 IEEE80211_SCAN_TABLE_LOCK_INIT(st, "scantable");
166 mtx_init(&st->st_scanlock, "scangen", "802.11 scangen", MTX_DEF);
167 TAILQ_INIT(&st->st_entry);
168 ss->ss_priv = st;
179 struct sta_table *st = ss->ss_priv; local
181 if (st != NULL) {
182 sta_flush_table(st);
198 struct sta_table *st = ss->ss_priv; local
211 sta_flush_table(struct sta_table *st) argument
238 struct sta_table *st = ss->ss_priv; local
698 struct sta_table *st = ss->ss_priv; local
720 struct sta_table *st = ss->ss_priv; local
1150 sta_update_notseen(struct sta_table *st) argument
1172 sta_dec_fails(struct sta_table *st) argument
1186 struct sta_table *st = ss->ss_priv; local
1213 struct sta_table *st = ss->ss_priv; local
1275 sta_lookup(struct sta_table *st, const uint8_t macaddr[IEEE80211_ADDR_LEN]) argument
1294 struct sta_table *st = ss->ss_priv; local
1397 struct sta_table *st = ss->ss_priv; local
1424 struct sta_table *st = ss->ss_priv; local
1441 struct sta_table *st = ss->ss_priv; local
1501 struct sta_table *st = ss->ss_priv; local
1524 struct sta_table *st = ss->ss_priv; local
1566 struct sta_table *st = ss->ss_priv; local
1670 struct sta_table *st = ss->ss_priv; local
1727 struct sta_table *st = ss->ss_priv; local
1759 struct sta_table *st = ss->ss_priv; local
1864 struct sta_table *st = ss->ss_priv; local
[all...]
/freebsd-10.2-release/lib/libc/string/
H A Dwcsxfrm.c114 mbstate_t st; local
120 st = initial;
121 if ((len = wcsrtombs(NULL, &wcp, 0, &st)) == (size_t)-1)
125 st = initial;
126 wcsrtombs(mbs, &ws, len + 1, &st);
/freebsd-10.2-release/contrib/gcc/
H A Dsched-vis.c71 const char *st[4];
80 st[i] = (char *) 0;
91 st[1] = "-";
96 st[1] = "+";
102 st[1] = "+low(";
104 st[2] = ")";
108 st[1] = "-";
117 st[0] = "-";
122 st[1] = "*";
127 st[
70 const char *st[4]; local
[all...]
/freebsd-10.2-release/contrib/sendmail/contrib/
H A Dbuildvirtuser116 my $st;
118 $st = stat($old);
119 return if (!defined($st));
120 chmod($st->mode, $new) || warn "Could not chmod($st->mode, $new): $!\n";
121 chown($st->uid, $st->gid, $new) || warn "Could not chmod($st->uid, $st->gid, $new): $!\n";
142 my $st
[all...]
/freebsd-10.2-release/sys/i386/ibcs2/
H A Dibcs2_ioctl.c119 stios2btios(st, bt)
120 struct ibcs2_termios *st;
125 l = st->c_iflag; r = 0;
141 l = st->c_oflag; r = 0;
147 l = st->c_cflag; r = 0;
164 l = st->c_lflag; r = 0;
176 st->c_cc[IBCS2_VINTR] ? st->c_cc[IBCS2_VINTR] : _POSIX_VDISABLE;
178 st->c_cc[IBCS2_VQUIT] ? st
358 struct ibcs2_termio st; local
389 struct ibcs2_termio st; local
[all...]
/freebsd-10.2-release/lib/libthr/thread/
H A Dthr_stack.c94 * | Red Zone | red zone for 1st thread
97 * | stack 1 - _thr_stack_default | top of 1st thread stack
103 * +-----------------------------------+ <-- start of 1st thread stack
169 struct stack *st; local
177 LIST_FOREACH(st, &mstackq, qe)
178 mprotect((char *)st->stackaddr + st->guardsize, st->stacksize,
180 LIST_FOREACH(st, &dstackq, qe)
181 mprotect((char *)st
[all...]
/freebsd-10.2-release/contrib/netbsd-tests/lib/libc/c063/
H A Dt_fchmodat.c63 struct stat st; local
73 ATF_REQUIRE(stat(FILE, &st) == 0);
74 ATF_REQUIRE(st.st_mode = 0600);
86 struct stat st; local
95 ATF_REQUIRE(stat(BASEFILE, &st) == 0);
96 ATF_REQUIRE(st.st_mode = 0600);
170 struct stat st; local
184 ATF_REQUIRE(lstat(LINK, &st) == 0);
185 ATF_REQUIRE(st.st_mode = 0600);
/freebsd-10.2-release/crypto/heimdal/lib/krb5/
H A Dkuserok.c52 struct stat st; local
62 if (fstat(fileno(f), &st) != 0) {
66 if (S_ISDIR(st.st_mode)) {
70 if (st.st_uid != pwd->pw_uid && st.st_uid != 0) {
74 if ((st.st_mode & (S_IWGRP | S_IWOTH)) != 0) {
119 struct stat st; local
123 if(lstat(dirname, &st) < 0)
126 if (!S_ISDIR(st.st_mode))
129 if (st
[all...]
/freebsd-10.2-release/contrib/libarchive/libarchive/test/
H A Dtest_write_disk.c41 struct stat st; local
51 assert(0 == stat(archive_entry_pathname(ae), &st));
58 st.st_mode &= ~S_ISGID;
59 assertEqualInt(st.st_mode & MODE_MASK,
144 struct stat st; local
157 assert(0 == stat(archive_entry_pathname(ae), &st));
158 failure("st.st_mode=%o archive_entry_mode(ae)=%o",
159 st.st_mode, archive_entry_mode(ae));
161 assertEqualInt(st.st_mode, (archive_entry_mode(ae) & ~UMASK));
163 assertEqualInt(st
171 struct stat st; local
198 struct _stat st; local
[all...]
/freebsd-10.2-release/gnu/usr.bin/gdb/kgdb/
H A Dmain.c97 struct stat st; local
107 if (stat(path, &st) == 0) {
108 if (S_ISREG(st.st_mode)) {
112 if (S_ISDIR(st.st_mode)) {
115 if (stat(path, &st) == 0 && S_ISREG(st.st_mode)) {
143 if (stat(path, &st) == -1 || !S_ISREG(st.st_mode)) {
145 if (stat(path, &st) == -1 ||
146 !S_ISREG(st
274 struct stat st; local
302 struct stat st; local
[all...]
/freebsd-10.2-release/usr.bin/stat/
H A Dstat.c204 struct stat st; local
321 rc = fstat(STDIN_FILENO, &st);
330 if ((rc = stat(file, &st)) == -1 &&
332 (rc = lstat(file, &st)) == -1)
336 rc = lstat(file, &st);
346 output(&st, file, statfmt, fn, nonl);
387 output(const struct stat *st, const char *file, argument
555 t = format1(st,
580 format1(const struct stat *st, argument
609 small = (sizeof(st
[all...]
/freebsd-10.2-release/usr.sbin/snapinfo/
H A Dsnapinfo.c57 struct stat st; local
94 stat(resolved, &st) == -1 || /* is it stat'able */
95 !S_ISDIR(st.st_mode)) { /* is it a directory */
144 compare_function(const char *path, const struct stat *st, int flags, argument
148 if (flags == FTW_F && st->st_ino == inode) {
153 printf(" (inode %ju)", (uintmax_t)st->st_ino);
/freebsd-10.2-release/contrib/ofed/management/opensm/libvendor/
H A Dosm_vendor_mlx_rmpp_ctx.c52 ib_api_status_t st = IB_SUCCESS; local
73 st = osmv_rmpp_sar_init(&p_ctx->sar, p_arbt_mad, p_ctx->mad_sz,
75 if (st == IB_SUCCESS) {
81 return st;
119 ib_api_status_t st = IB_SUCCESS; local
126 st = osmv_rmpp_sar_get_mad_seg(&p_send_ctx->sar, seg_idx, p_buf);
127 if (st != IB_SUCCESS) {
182 return st;
188 ib_api_status_t st = IB_SUCCESS; local
200 st
345 ib_api_status_t st = IB_SUCCESS; local
[all...]
/freebsd-10.2-release/contrib/ntp/libntp/
H A Dstatestr.c423 u_int32 st
426 return decode_bitflags(st, " ", k_st_bits, COUNTOF(k_st_bits));
437 int st
450 getcode(CTL_SYS_LI(st), leap_codes),
451 getcode(CTL_SYS_SOURCE(st), sync_codes),
452 getevents(CTL_SYS_NEVNT(st)),
453 getcode(CTL_SYS_EVENT(st), sys_codes));
457 pst = (u_char)CTL_PEER_STATVAL(st);
461 getevents(CTL_PEER_NEVNT(st)));
462 if (CTL_PEER_EVENT(st) !
[all...]
/freebsd-10.2-release/lib/msun/amd64/
H A De_remainder.S52 fstp %st
H A De_remainderf.S22 fstp %st
H A Ds_scalbn.S36 fstp %st(1)
H A Ds_scalbnf.S36 fstp %st(1)
H A Ds_scalbnl.S15 fstp %st(1)
/freebsd-10.2-release/lib/libc/include/
H A Dnss_tls.h53 static struct name##_state st; \
58 *p = &st; \
/freebsd-10.2-release/contrib/libarchive/libarchive/
H A Darchive_write_open_filename.c135 struct stat st; local
188 if (fstat(mine->fd, &st) != 0) {
200 if (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode) ||
201 S_ISFIFO(st.st_mode))
214 if (S_ISREG(st.st_mode))
215 archive_write_set_skip_file(a, st.st_dev, st.st_ino);
/freebsd-10.2-release/usr.sbin/cpucontrol/
H A Damd.c78 struct stat st; local
121 error = fstat(fd, &st);
126 if (st.st_size < 0 || (unsigned)st.st_size < sizeof(*fw_header)) {
133 fw_image = (uint32_t *)mmap(NULL, st.st_size, PROT_READ,
146 fw_size = (st.st_size - sizeof(*fw_header)) / sizeof(uint32_t);
162 args.size = st.st_size;
178 if(munmap(fw_image, st.st_size) != 0)
H A Dvia.c80 struct stat st; local
143 error = fstat(fd, &st);
148 if (st.st_size < 0 || (unsigned)st.st_size < sizeof(*fw_header)) {
156 fw_image = (uint32_t *)mmap(NULL, st.st_size, PROT_READ,
171 if (total_size > (unsigned)st.st_size || st.st_size < 0) {
217 if (munmap(fw_image, st.st_size) != 0)
/freebsd-10.2-release/contrib/unbound/compat/
H A Dgetentropy_solaris.c169 struct stat st; local
194 if (fstat(fd, &st) == -1 || !S_ISCHR(st.st_mode) ||
195 (devfscheck && (strcmp(st.st_fstype, "devfs") != 0))) {
257 struct stat st; local
377 HX(stat(".", &st) == -1, st);
380 HX(stat("/", &st) == -1, st);
383 HX((e = fstat(0, &st))
[all...]
/freebsd-10.2-release/lib/libpam/modules/pam_nologin/
H A Dpam_nologin.c65 struct stat st; local
107 if (fstat(fd, &st) == 0) {
108 mtmp = malloc(st.st_size + 1);
110 ss = read(fd, mtmp, st.st_size);

Completed in 178 milliseconds

1234567891011>>