Searched refs:st (Results 276 - 300 of 549) sorted by relevance

<<11121314151617181920>>

/external/qemu/block/
H A Draw-posix.c584 struct stat st; local
586 if (fstat(fd, &st))
588 if (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode)) {
594 dl.d_partitions[DISKPART(st.st_rdev)].p_size;
596 return st.st_size;
824 struct stat st; local
830 if (stat(filename, &st) >= 0 &&
831 (S_ISCHR(st.st_mode) || S_ISBLK(st
[all...]
/external/valgrind/main/coregrind/m_gdbserver/
H A Dm_gdbserver.c1081 IRStmt* st = sb_in->stmts[i]; local
1083 if (!st || st->tag == Ist_NoOp) continue;
1085 if (st->tag == Ist_Exit && instr_needed == Vg_VgdbYes) {
1088 st->Ist.Exit.dst->Ico.U64 :
1089 st->Ist.Exit.dst->Ico.U32);
1091 addStmtToIRSB( sb_out, st );
1092 if (st->tag == Ist_IMark) {
1100 st->Ist.IMark.addr,
1101 st
[all...]
/external/llvm/test/MC/X86/
H A Dx86-32-coverage.s3755 // CHECK: fld %st(2)
3757 fld %st(2)
3771 // CHECK: fld %st(2)
3773 fld %st(2)
3835 // CHECK: fst %st(2)
3837 fst %st(2)
3851 // CHECK: fst %st(2)
3853 fst %st(2)
3867 // CHECK: fstp %st(2)
3869 fstp %st(
[all...]
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
H A DANTLRTreePrinter.g106 StringTokenizer st = new StringTokenizer(g, " ", false);
108 while ( st.hasMoreTokens() ) {
109 String w = st.nextToken();
/external/e2fsprogs/misc/
H A De2image.c93 struct stat st; local
135 if (stat(device_name, &st) == 0)
136 hdr.fs_device = st.st_rdev;
138 if (fstat(fd, &st) == 0) {
139 hdr.image_device = st.st_dev;
140 hdr.image_inode = st.st_ino;
/external/elfutils/src/
H A Dstrings.c167 struct stat64 st; local
174 fstat64 (STDOUT_FILENO, &st) == 0
175 ? st.st_size : INT64_C (0x7fffffffffffffff));
189 int fstat_fail = fstat64 (fd, &st);
191 ? INT64_C (0x7fffffffffffffff) : st.st_size);
197 || !S_ISREG (st.st_mode)
/external/e2fsprogs/debugfs/
H A Ddump.c318 struct stat st; local
331 i = stat(argv[2], &st);
336 if (!S_ISDIR(st.st_mode)) {
/external/e2fsprogs/util/
H A Dsubst.c376 struct stat st; local
397 if (stat(outfn, &st) == 0)
398 chmod(outfn, st.st_mode & ~0222);
/external/iproute2/ip/
H A Dipmaddr.c97 int st; local
100 sscanf(buf, "%d%s%d%d%s", &m.index, m.name, &m.users, &st,
114 if (st)
/external/libppp/src/
H A Dudp.c283 struct stat st; local
285 if (fstat(p->fd, &st) != -1 && (st.st_mode & S_IFSOCK)) {
/external/linux-tools-perf/
H A Dbuiltin-help.c380 struct stat st; local
384 if (stat(mkpath("%s/perf.html", html_path), &st)
385 || !S_ISREG(st.st_mode))
/external/valgrind/main/coregrind/
H A Dlauncher-darwin.c259 struct stat st; local
260 if (0 == stat(clientname, &st) && (st.st_mode & S_IFDIR)) {
/external/e2fsprogs/lib/blkid/
H A Ddevname.c224 struct stat st; local
232 if (stat(device, &st) == 0 && S_ISBLK(st.st_mode) &&
233 st.st_rdev == devno) {
/external/openssh/
H A Dloginrec.c1182 struct stat st; local
1194 if (fstat(fd, &st) != 0) {
1347 struct stat st; local
1359 if (fstat(fd, &st) != 0) {
1479 struct stat st; local
1481 if (stat(LASTLOG_FILE, &st) != 0) {
1486 if (S_ISDIR(st.st_mode)) {
1489 } else if (S_ISREG(st.st_mode)) {
1504 if (S_ISREG(st.st_mode)) {
H A Dsession.c927 struct stat st; local
934 if (login_getcapbool(lc, "hushlogin", 0) || stat(buf, &st) >= 0)
937 if (stat(buf, &st) >= 0)
1323 struct stat st; local
1330 !no_user_rc && stat(_PATH_SSH_USER_RC, &st) >= 0) {
1344 } else if (stat(_PATH_SSH_SYSTEM_RC, &st) >= 0) {
1426 struct stat st; local
1448 if (stat(component, &st) != 0)
1451 if (st.st_uid != 0 || (st
2083 struct stat st; local
2604 struct stat st; local
[all...]
H A Dssh-keygen.c336 struct stat st; local
340 if (stat(identity_file, &st) < 0)
638 struct stat st; local
642 if (stat(identity_file, &st) < 0)
697 struct stat st; local
701 if (stat(identity_file, &st) < 0) {
750 struct stat st; local
757 if (stat(identity_file, &st) < 0) {
865 struct stat st; local
872 if (stat(key_types[i].path, &st)
1182 struct stat st; local
1263 struct stat st; local
1296 struct stat st; local
1805 struct stat st; local
1922 struct stat st; local
[all...]
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-port.h869 inline bool IsDir(const StatStruct& st) { argument
870 return (_S_IFDIR & st.st_mode) != 0;
886 inline bool IsDir(const StatStruct& st) { return S_ISDIR(st.st_mode); }
/external/valgrind/main/VEX/useful/
H A Dhd_fpu.c143 Int reg, st; local
145 for (st = 0; st < 8; st++) {
147 = fp_double_from_extended ( &m_fpu_state.reg[FP_REG(st)] );
154 Int reg, st; local
155 st = fp_get_tos();
158 m_fpu_data_regs[st] );
159 if (st == 7) st
[all...]
/external/blktrace/
H A Dblkrawverify.c279 struct stat st; local
299 if (stat(fname, &st) < 0) {
/external/chromium/third_party/libjingle/source/talk/examples/call/
H A Dstatus.h176 static std::string TrimStatus(const std::string & st) { argument
177 std::string s(st);
/external/chromium/third_party/libjingle/source/talk/xmllite/
H A Dxmlparser.cc63 XmlDeclCallback(void * userData, const char * ver, const char * enc, int st) { argument
64 (static_cast<XmlParser *>(userData))->ExpatXmlDecl(ver, enc, st);
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DBasicValueFactory.h48 LazyCompoundValData(const StoreRef &st, const TypedValueRegion *r) argument
49 : store(st), region(r) {}
/external/clang/test/Analysis/
H A Ddead-stores.c498 void rdar8320674(s_rdar8320674 *z, unsigned y, s2_rdar8320674 *st, int m) argument
501 s_rdar8320674 * tw1 = st->x;
/external/dropbear/
H A Dloginrec.c995 struct stat st; local
1007 if (fstat(fd, &st) != 0) {
1151 struct stat st; local
1163 if (fstat(fd, &st) != 0) {
1298 struct stat st; local
1300 if (stat(filename, &st) != 0) {
1305 if (S_ISDIR(st.st_mode))
1307 else if (S_ISREG(st.st_mode))
/external/harfbuzz/src/
H A Dharfbuzz-gsub-private.h469 _HB_GSUB_Load_SubTable( HB_GSUB_SubTable* st,
474 _HB_GSUB_Free_SubTable( HB_GSUB_SubTable* st,

Completed in 2403 milliseconds

<<11121314151617181920>>