HomeSort by relevance Sort by last modified time
    Searched defs:stat (Results 176 - 200 of 571) sorted by null

1 2 3 4 5 6 78 91011>>

  /frameworks/native/libs/gui/tests/
SurfaceParcelable_test.cpp 97 int stat, retval; local
98 retval = wait(&stat);
  /packages/apps/LegacyCamera/src/com/android/camera/
Storage.java 122 StatFs stat = new StatFs(DIRECTORY); local
123 return stat.getAvailableBlocks() * (long) stat.getBlockSize();
  /packages/apps/Nfc/nci/jni/
PowerSwitch.cpp 279 tNFA_STATUS stat = NFA_STATUS_FAILED; local
291 stat = NFA_PowerOffSleepMode(TRUE);
292 if (stat == NFA_STATUS_OK) {
296 LOG(ERROR) << StringPrintf("%s: API fail; stat=0x%X", fn, stat);
317 stat = NFA_PowerOffSleepMode(FALSE);
318 if (stat == NFA_STATUS_OK) {
322 "%s: unable to full power; curr device mgt power stat=%s (%u)",
330 LOG(ERROR) << StringPrintf("%s: API fail; stat=0x%X", fn, stat);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/rpcsvc/
klm_prot.h 44 klm_stats stat; member in struct:klm_stat
49 klm_stats stat; member in struct:klm_testrply
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
_mingw_stat64.h 34 struct stat { struct
  /prebuilts/gdb/darwin-x86/lib/python2.7/
poplib.py 45 STAT stat()
192 def stat(self): member in class:POP3
197 retval = self._shortcmd('STAT')
199 if self._debugging: print '*stat*', repr(rets)
410 (numMsgs, totalSize) = a.stat()
  /prebuilts/gdb/linux-x86/lib/python2.7/
poplib.py 45 STAT stat()
192 def stat(self): member in class:POP3
197 retval = self._shortcmd('STAT')
199 if self._debugging: print '*stat*', repr(rets)
410 (numMsgs, totalSize) = a.stat()
  /prebuilts/go/darwin-x86/src/net/
parse.go 75 func stat(name string) (mtime time.Time, size int64, err error) { func
76 st, err := os.Stat(name)
  /prebuilts/go/darwin-x86/src/syscall/
fd_nacl.go 34 stat(*Stat_t) error
155 return f.impl.stat(st)
209 func (*defaultFileImpl) stat(*Stat_t) error { return ENOSYS } func
222 func (f *naclFile) stat(st *Stat_t) error { func
  /prebuilts/go/linux-x86/src/net/
parse.go 75 func stat(name string) (mtime time.Time, size int64, err error) { func
76 st, err := os.Stat(name)
  /prebuilts/go/linux-x86/src/syscall/
fd_nacl.go 34 stat(*Stat_t) error
155 return f.impl.stat(st)
209 func (*defaultFileImpl) stat(*Stat_t) error { return ENOSYS } func
222 func (f *naclFile) stat(st *Stat_t) error { func
  /prebuilts/misc/common/swig/include/2.0.11/perl5/
noembed.h 82 #ifdef Stat
83 #undef Stat
103 #ifdef stat
104 #undef stat macro
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
poplib.py 45 STAT stat()
192 def stat(self): member in class:POP3
197 retval = self._shortcmd('STAT')
199 if self._debugging: print '*stat*', repr(rets)
410 (numMsgs, totalSize) = a.stat()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
poplib.py 45 STAT stat()
192 def stat(self): member in class:POP3
197 retval = self._shortcmd('STAT')
199 if self._debugging: print '*stat*', repr(rets)
410 (numMsgs, totalSize) = a.stat()
  /system/core/init/
bootchart.cpp 24 #include <sys/stat.h>
114 // /proc/<pid>/stat only has truncated task names, so get the full
120 // Read process stat line.
121 std::string stat; local
122 if (android::base::ReadFileToString(StringPrintf("/proc/%d/stat", pid), &stat)) {
125 size_t open = stat.find('(');
126 size_t close = stat.find_last_of(')');
128 stat.replace(open + 1, close - open - 1, full_name);
131 fputs(stat.c_str(), log)
    [all...]
  /system/core/libdiskconfig/
diskconfig.c 28 #include <sys/stat.h>
240 struct stat stat; local
245 if (fstat(fd, &stat)) {
246 ALOGE("Cannot stat, errno=%d.", errno);
250 if (S_ISBLK(stat.st_mode) && ((rv = ioctl(fd, BLKRRPART, NULL)) < 0)) {
277 struct stat stat; local
287 if (fstat(fd, &stat)) {
288 ALOGE("Cannot stat file '%s', errno=%d.", dinfo->device, errno)
    [all...]
  /system/extras/tests/binder/benchmarks/
binderAddInts.cpp 318 int stat; local
319 rv = wait(&stat);
  /system/extras/tests/directiotest/
directiotest.c 39 #include <sys/stat.h>
175 struct stat stat; local
193 if (fstat(fd, &stat) == -1) {
194 perror("stat");
196 } else if (!S_ISBLK(stat.st_mode)) {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
MultivariateSummaryStatistics.java 17 package org.apache.commons.math.stat.descriptive;
26 import org.apache.commons.math.stat.descriptive.moment.GeometricMean;
27 import org.apache.commons.math.stat.descriptive.moment.Mean;
28 import org.apache.commons.math.stat.descriptive.moment.VectorialCovariance;
29 import org.apache.commons.math.stat.descriptive.rank.Max;
30 import org.apache.commons.math.stat.descriptive.rank.Min;
31 import org.apache.commons.math.stat.descriptive.summary.Sum;
32 import org.apache.commons.math.stat.descriptive.summary.SumOfLogs;
33 import org.apache.commons.math.stat.descriptive.summary.SumOfSquares;
375 MultivariateSummaryStatistics stat = (MultivariateSummaryStatistics) object local
    [all...]
SummaryStatistics.java 17 package org.apache.commons.math.stat.descriptive;
23 import org.apache.commons.math.stat.descriptive.moment.GeometricMean;
24 import org.apache.commons.math.stat.descriptive.moment.Mean;
25 import org.apache.commons.math.stat.descriptive.moment.SecondMoment;
26 import org.apache.commons.math.stat.descriptive.moment.Variance;
27 import org.apache.commons.math.stat.descriptive.rank.Max;
28 import org.apache.commons.math.stat.descriptive.rank.Min;
29 import org.apache.commons.math.stat.descriptive.summary.Sum;
30 import org.apache.commons.math.stat.descriptive.summary.SumOfLogs;
31 import org.apache.commons.math.stat.descriptive.summary.SumOfSquares
364 SummaryStatistics stat = (SummaryStatistics)object; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
loslib.c 82 int stat = system(cmd); local
84 return luaL_execresult(L, stat);
86 lua_pushboolean(L, stat); /* true if there is a shell */
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
pystate.c 476 int stat; local
483 stat = PyDict_SetItem(result, id, (PyObject *)frame);
485 if (stat < 0)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
FSProxy.py 22 from stat import *
155 return os.stat(name)[ST_SIZE]
159 return time.localtime(os.stat(name)[ST_MTIME])
161 def stat(self, name): member in class:FSProxyLocal
163 size = os.stat(name)[ST_SIZE]
164 mtime = time.localtime(os.stat(name)[ST_MTIME])
169 size = os.stat(name)[ST_SIZE]
170 mtime = time.localtime(os.stat(name)[ST_MTIME])
188 return self._list(self.stat, list)
220 return self.dict(self.stat, list)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
nntplib.py 369 """Internal: parse the response of a STAT, NEXT or LAST command."""
383 """Internal: process a STAT, NEXT or LAST command."""
387 def stat(self, id): member in class:NNTP
388 """Process a STAT command. Argument:
395 return self.statcmd('STAT ' + id)
398 """Process a NEXT command. No arguments. Return as for STAT."""
402 """Process a LAST command. No arguments. Return as for STAT."""
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
pystate.c 474 int stat; local
481 stat = PyDict_SetItem(result, id, (PyObject *)frame);
483 if (stat < 0)

Completed in 1582 milliseconds

1 2 3 4 5 6 78 91011>>