HomeSort by relevance Sort by last modified time
    Searched refs:STAT (Results 1 - 25 of 41) sorted by null

1 2

  /external/bzip2/
bzdiff 48 STAT="$?"
58 STAT="$?"
62 STAT="$?";;
67 STAT="$?";;
69 STAT="$?";;
72 exit "$STAT"
  /external/ltp/testcases/kernel/io/disktest/
stats.c 34 #include <sys/stat.h>
190 pMsg(STAT, args, HRTSTR,
195 pMsg(STAT, args, HWTSTR,
202 pMsg(STAT, args, CRTSTR,
207 pMsg(STAT, args, CWTSTR,
214 pMsg(STAT, args, TRTSTR,
219 pMsg(STAT, args, TWTSTR,
234 pMsg(STAT, args, HRTHSTR,
244 pMsg(STAT, args, HWTHSTR,
256 pMsg(STAT, args, CRTHSTR
    [all...]
sfunc.h 110 START, END, STAT, INFO, DBUG, WARN, ERR
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/command/
StatCommandHandlerTest.java 43 final Command COMMAND = new Command(CommandNames.STAT, EMPTY);
61 final Command COMMAND = new Command(CommandNames.STAT, array(PATHNAME));
79 final Command COMMAND = new Command(CommandNames.STAT, EMPTY);
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/
StatCommandHandlerTest.java 45 final Command COMMAND = new Command(CommandNames.STAT, EMPTY);
63 final Command COMMAND = new Command(CommandNames.STAT, array(PATHNAME));
81 final Command COMMAND = new Command(CommandNames.STAT, EMPTY);
  /system/core/toolbox/upstream-netbsd/bin/dd/
extern.h 70 extern STAT st;
dd.h 38 #include <sys/stat.h>
53 int (*op_fstat)(int, struct stat *);
103 } STAT;
  /tools/tradefederation/core/tests/src/com/android/tradefed/util/
SimplePerfUtilTest.java 45 spu = SimplePerfUtil.newInstance(mockDevice, SimplePerfType.STAT);
48 Assert.assertEquals("simpleperf stat " + command, fullCommand);
73 spu = SimplePerfUtil.newInstance(null, SimplePerfType.STAT);
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/command/
CommandNames.java 54 public static final String STAT = "STAT";
  /external/webrtc/webrtc/tools/converter/
converter.cc 12 #include <sys/stat.h>
21 #define STAT _stat
24 #define STAT stat
161 struct STAT file_info;
162 int result = STAT(file_name_to_check.c_str(), &file_info);
  /external/e2fsprogs/contrib/
populate-extfs.sh 46 # Only stat once since stat is a time consuming command
47 STAT=$(stat -c "TYPE=\"%F\";DEVNO=\"0x%t 0x%T\";MODE=\"%f\";U=\"%u\";G=\"%g\"" $FILE)
48 eval $STAT
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/src/details/
fstream_stdio.cpp 21 // For sunpro, it chokes if time.h is included through stat.h
33 # include <sys/stat.h>
47 # include <sys/stat.h> // For _fstat
114 # define STAT stat
120 # define STAT stat64
129 struct STAT buf;
137 struct STAT buf;
165 // Return the size of the file. This is a wrapper for stat.
278 struct STAT buf
    [all...]
fstream_unistd.cpp 21 // For sunpro, it chokes if time.h is included through stat.h
32 #include <sys/stat.h> // For stat
60 # define STAT stat
66 # define STAT stat64
105 struct STAT buf;
113 struct STAT buf;
148 // Return the size of the file. This is a wrapper for stat.
  /prebuilts/ndk/r13/sources/cxx-stl/stlport/src/details/
fstream_stdio.cpp 21 // For sunpro, it chokes if time.h is included through stat.h
33 # include <sys/stat.h>
47 # include <sys/stat.h> // For _fstat
114 # define STAT stat
120 # define STAT stat64
129 struct STAT buf;
137 struct STAT buf;
165 // Return the size of the file. This is a wrapper for stat.
278 struct STAT buf
    [all...]
fstream_unistd.cpp 21 // For sunpro, it chokes if time.h is included through stat.h
32 #include <sys/stat.h> // For stat
60 # define STAT stat
66 # define STAT stat64
105 struct STAT buf;
113 struct STAT buf;
148 // Return the size of the file. This is a wrapper for stat.
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/
Fuzzy.h 35 #define STAT 18
FuzzyLexer.h 25 #define STAT 15
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/output1/
FuzzyLexer.h 25 #define STAT 15
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/command/
CommandNames.java 54 public static final String STAT = "STAT";
  /external/ltp/utils/ffsb-6.0-rc2/
util.c 19 #include <sys/stat.h>
40 #define STAT(a, b) do { stat((a), (b)); } while (0)
41 struct stat filestat;
43 #define STAT(a, b) do { stat64((a), (b)); } while (0)
47 STAT(name, &filestat);
49 #undef STAT
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/stub/
StubFtpServer.java 129 setCommandHandler(CommandNames.STAT, new StatCommandHandler());
  /tools/tradefederation/core/src/com/android/tradefed/util/
SimplePerfUtil.java 163 STAT("stat"),
  /external/abi-compliance-checker/modules/Internals/
SysCheck.pm 544 my %STAT = ();
547 $STAT{$Comp}{"total"} = keys(%TestResults) - keys(%SONAME_Changed);
548 $STAT{$Comp}{"added"} = keys(%Added);
549 $STAT{$Comp}{"removed"} = keys(%Removed);
557 $STAT{$Comp}{$Kind} += $TestResults{$LName}{$Comp}{$_};
559 push(@{$META_DATA{$Comp}}, $Kind.":".$STAT{$Comp}{$Kind});
569 $STAT{$Comp}{$Kind} += $TestResults{$LName}{$Comp}{$Kind};
571 push(@{$META_DATA{$Comp}}, $Kind.":".$STAT{$Comp}{$Kind});
578 $STAT{$Comp}{$_} += $TestResults{$LName}{$Comp}{$_};
580 if(not defined $STAT{$Comp}{"verdict"
    [all...]
  /device/linaro/bootloader/edk2/Vlv2DeviceRefCodePkg/AcpiTablesPCAT/
IgdOpRn.ASL 195 STAT, 32, // Status register
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/
FakeFtpServer.java 202 setCommandHandler(CommandNames.STAT, new StatCommandHandler());
286 * Set the system status description text, used by the STAT command handler.

Completed in 514 milliseconds

1 2