HomeSort by relevance Sort by last modified time
    Searched defs:stb (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/strace/tests/
sendfile.c 59 struct stat stb; local
60 assert(fstat(reg_in, &stb) == 0);
61 const size_t blen = stb.st_size / 3;
62 const size_t alen = stb.st_size - blen;
63 assert(S_ISREG(stb.st_mode) && blen > 0);
100 assert(syscall(__NR_sendfile, sv[1], reg_in, p_off, stb.st_size + 1)
104 (unsigned long) stb.st_size,
105 (unsigned long) stb.st_size + 1,
sendfile64.c 59 struct stat stb; local
60 assert(fstat(reg_in, &stb) == 0);
61 const size_t blen = stb.st_size / 3;
62 const size_t alen = stb.st_size - blen;
63 assert(S_ISREG(stb.st_mode) && blen > 0);
92 assert(syscall(__NR_sendfile64, sv[1], reg_in, p_off, stb.st_size + 1)
96 (unsigned long) stb.st_size,
97 (unsigned long) stb.st_size + 1,
  /external/strace/tests-m32/
sendfile.c 59 struct stat stb; local
60 assert(fstat(reg_in, &stb) == 0);
61 const size_t blen = stb.st_size / 3;
62 const size_t alen = stb.st_size - blen;
63 assert(S_ISREG(stb.st_mode) && blen > 0);
100 assert(syscall(__NR_sendfile, sv[1], reg_in, p_off, stb.st_size + 1)
104 (unsigned long) stb.st_size,
105 (unsigned long) stb.st_size + 1,
sendfile64.c 59 struct stat stb; local
60 assert(fstat(reg_in, &stb) == 0);
61 const size_t blen = stb.st_size / 3;
62 const size_t alen = stb.st_size - blen;
63 assert(S_ISREG(stb.st_mode) && blen > 0);
92 assert(syscall(__NR_sendfile64, sv[1], reg_in, p_off, stb.st_size + 1)
96 (unsigned long) stb.st_size,
97 (unsigned long) stb.st_size + 1,
  /external/strace/tests-mx32/
sendfile.c 59 struct stat stb; local
60 assert(fstat(reg_in, &stb) == 0);
61 const size_t blen = stb.st_size / 3;
62 const size_t alen = stb.st_size - blen;
63 assert(S_ISREG(stb.st_mode) && blen > 0);
100 assert(syscall(__NR_sendfile, sv[1], reg_in, p_off, stb.st_size + 1)
104 (unsigned long) stb.st_size,
105 (unsigned long) stb.st_size + 1,
sendfile64.c 59 struct stat stb; local
60 assert(fstat(reg_in, &stb) == 0);
61 const size_t blen = stb.st_size / 3;
62 const size_t alen = stb.st_size - blen;
63 assert(S_ISREG(stb.st_mode) && blen > 0);
92 assert(syscall(__NR_sendfile64, sv[1], reg_in, p_off, stb.st_size + 1)
96 (unsigned long) stb.st_size,
97 (unsigned long) stb.st_size + 1,
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
ShapingTypeBuilder.java 71 ShapingTypeBuilder stb = new ShapingTypeBuilder(); local
73 stb.buildShapingTypes(args[0]);
  /packages/apps/Car/Stream/src/com/android/car/stream/
PermissionsActivity.java 103 StringBuilder stb = new StringBuilder(); local
105 stb.append(" ").append(s);
107 showDialog(getString(R.string.permission_not_granted, stb.toString()));
  /art/test/031-class-attributes/src/
ClassAttrs.java 339 StringBuilder stb = new StringBuilder(); local
342 stb.append("[" + types.length + "]");
346 stb.append(" ");
349 stb.append(", ");
351 stb.append(typeString);
354 return stb.toString();
  /external/iproute2/misc/
rtacct.c 545 struct stat stb; local
556 if (fstat(fd, &stb) != 0) {
560 if (stb.st_nlink != 1 || stb.st_uid != getuid()) {
564 if (stb.st_size != sizeof(*hist_db))
589 if (uptime >= 0 && time(NULL) >= stb.st_mtime+uptime) {
ifstat.c 789 struct stat stb; local
804 if (fstat(fileno(hist_fp), &stb) != 0) {
808 if (stb.st_nlink != 1 || stb.st_uid != getuid()) {
820 if (uptime >= 0 && time(NULL) >= stb.st_mtime+uptime) {
nstat.c 619 struct stat stb; local
634 if (fstat(fileno(hist_fp), &stb) != 0) {
638 if (stb.st_nlink != 1 || stb.st_uid != getuid()) {
650 if (uptime >= 0 && time(NULL) >= stb.st_mtime+uptime) {
  /external/javassist/src/main/javassist/compiler/
Javac.java 212 SymbolTable stb = new SymbolTable(stable); local
213 Stmnt s = p.parseStatement(stb);
564 SymbolTable stb = new SymbolTable(stable); local
566 Stmnt s = p.parseStatement(stb);
  /external/kmod/testsuite/
testsuite.c 491 struct stat sta, stb; local
513 if (fstat(fdb, &stb) != 0) {
518 if (sta.st_size != stb.st_size) {
  /art/test/046-reflect/src/
Main.java 543 StringBuilder stb = new StringBuilder(); local
546 stb.append("[" + types.length + "]");
550 stb.append(" ");
553 stb.append(", ");
555 stb.append(t.toString());
558 return stb.toString();
  /external/openssh/
scp.c 747 struct stat stb; local
768 if (fstat(fd, &stb) < 0) {
772 if (stb.st_size < 0) {
777 switch (stb.st_mode & S_IFMT) {
782 rsource(name, &stb);
796 if (do_times(remout, verbose_mode, &stb) < 0)
801 (u_int) (stb.st_mode & FILEMODEMASK),
802 (long long)stb.st_size, last);
817 start_progress_meter(curfile, stb.st_size, &statbytes);
819 for (haderr = i = 0; i < stb.st_size; i += bp->cnt)
910 struct stat stb; local
1273 struct stat stb; local
1319 struct stat stb; local
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/fr30/
allinsn.s 181 .global stb
182 stb: label
183 STB r14, @r15
184 stb r0, @(r13, r1)
185 STB r2, @(r14, -128)
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/m32r/
allinsn.s 435 .global stb
436 stb: label
437 stb fp,@fp
441 stb fp,@(fp)
445 stb fp,@(0,fp)
449 stb fp,@(fp,0)
  /external/ltp/testcases/kernel/fs/fsstress/
fsstress.c 1426 struct stat64 stb; local
1446 if (fstat64(fd, &stb) < 0) {
1455 off = lr % MIN(stb.st_size + (1024 * 1024), MAXFSIZE);
1777 struct stat64 stb; local
1878 struct stat64 stb; local
2001 struct stat64 stb; local
2230 struct stat64 stb; local
2366 struct stat64 stb; local
2438 struct stat64 stb; local
2515 struct stat64 stb; local
2578 struct stat64 stb; local
2632 struct stat64 stb; local
    [all...]
  /external/ltp/testcases/network/nfs/nfs_fsstress/
fsstress.c 1374 struct stat64 stb; local
1394 if (fstat64(fd, &stb) < 0) {
1403 off = (off64_t) (lr % MIN(stb.st_size + (1024 * 1024), MAXFSIZE));
1721 struct stat64 stb; local
1811 struct stat64 stb; local
1923 struct stat64 stb; local
2151 struct stat64 stb; local
2287 struct stat64 stb; local
2357 struct stat64 stb; local
2434 struct stat64 stb; local
2497 struct stat64 stb; local
2549 struct stat64 stb; local
    [all...]
  /external/e2fsprogs/contrib/
fsstress.c 1453 struct stat64 stb; local
1473 if (fstat64(fd, &stb) < 0) {
1482 off = lr % MIN(stb.st_size + (1024 * 1024), MAXFSIZE);
1804 struct stat64 stb; local
1905 struct stat64 stb; local
2028 struct stat64 stb; local
2257 struct stat64 stb; local
2393 struct stat64 stb; local
2465 struct stat64 stb; local
2542 struct stat64 stb; local
2605 struct stat64 stb; local
2659 struct stat64 stb; local
    [all...]
  /external/v8/src/ppc/
assembler-ppc.cc 1249 void Assembler::stb(Register dst, const MemOperand& src) { function in class:v8::internal::Assembler
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.sat4j.core_2.3.5.v201308161310.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.sat4j.core_2.3.5.v20130525.jar 
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/frv/
allinsn.s 654 .global stb
655 stb: label
656 stb sp,@(sp,sp)

Completed in 553 milliseconds

1 2 3