HomeSort by relevance Sort by last modified time
    Searched refs:stat (Results 676 - 700 of 5197) sorted by null

<<21222324252627282930>>

  /external/python/cpython3/Lib/
tracemalloc.py 118 for traceback, stat in new_group.items():
121 stat = StatisticDiff(traceback,
122 stat.size, stat.size - previous.size,
123 stat.count, stat.count - previous.count)
125 stat = StatisticDiff(traceback,
126 stat.size, stat.size,
127 stat.count, stat.count
    [all...]
  /external/autotest/client/site_tests/platform_EncryptedStateful/
platform_EncryptedStateful.py 5 import logging, os, tempfile, shutil, stat, time, posix
132 # Sanity check the key file stat.
133 info = os.stat(keyfile)
134 chk.check(stat.S_ISREG(info.st_mode),
138 chk.check(stat.S_IMODE(info.st_mode) == (stat.S_IRUSR | stat.S_IWUSR),
142 # Sanity check the block file stat.
143 info = os.stat(self.block)
144 chk.check(stat.S_ISREG(info.st_mode)
    [all...]
  /external/e2fsprogs/lib/ext2fs/
ismounted.c 48 #include <sys/stat.h>
99 struct stat st_buf;
117 if (stat(file, &st_buf) == 0) {
119 #ifndef __GNU__ /* The GNU hurd is broken with respect to stat devices */
132 if (stat(mnt->mnt_fsname, &st_buf) == 0) {
151 #ifndef __GNU__ /* The GNU hurd is broken with respect to stat devices */
159 if (file_rdev && stat("/", &st_buf) == 0) {
177 if (stat(mnt->mnt_dir, &st_buf) < 0) {
307 struct stat st_buf;
311 #ifndef __GNU__ /* The GNU hurd is broken with respect to stat devices *
    [all...]
  /hardware/interfaces/drm/1.1/vts/functional/
drm_hal_clearkey_test.cpp 593 auto stat = drmPlugin->removeAllSecureStops(); local
594 EXPECT_OK(stat);
608 auto stat = drmPlugin->removeAllSecureStops(); local
609 EXPECT_OK(stat);
622 stat = drmPlugin->removeAllSecureStops();
623 EXPECT_OK(stat);
643 auto stat = drmPlugin->removeAllSecureStops(); local
644 EXPECT_OK(stat);
658 auto stat = drmPlugin->removeAllSecureStops(); local
659 EXPECT_OK(stat);
692 auto stat = drmPlugin->removeAllSecureStops(); local
707 auto stat = drmPlugin->removeAllSecureStops(); local
768 auto stat = drmPlugin->removeAllSecureStops(); local
802 auto stat = drmPlugin->removeSecureStop(emptyId); local
812 auto stat = drmPlugin->removeAllSecureStops(); local
839 auto stat = drmPlugin->removeAllSecureStops(); local
    [all...]
  /bionic/libc/kernel/uapi/asm-mips/asm/
stat.h 24 struct stat { struct
69 struct stat { struct
  /bionic/libc/kernel/uapi/asm-x86/asm/
stat.h 24 struct stat { struct
71 struct stat { struct
  /bionic/libc/upstream-netbsd/lib/libc/gen/
utmp.c 44 #include <sys/stat.h>
62 struct stat st;
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
makebuf.c 35 #include <sys/stat.h>
82 struct stat st;
  /cts/tests/tests/security/jni/
android_security_cts_MMapExecutableTest.cpp 28 #include <sys/stat.h>
48 struct stat stat_buf;
  /device/generic/goldfish-opengl/host/include/libOpenglRender/
IOStream.h 75 int stat = commitBuffer(m_bufsize - m_free);
78 return stat;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/comparisons/
systemtest.py 21 from stat import *
54 print "%s%s: can't stat: %s" % (prefix, name, msg)
58 os.stat(name)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
install_scripts.py 13 from stat import ST_MODE
54 mode = ((os.stat(file)[ST_MODE]) | 0555) & 07777
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
byteyears.py 10 from stat import *
14 # Use lstat() to stat files if it exists, else stat()
18 statfunc = os.stat
47 sys.stderr.write("can't stat %r: %r\n" % (filename, msg))
checkpyc.py 7 from stat import ST_MTIME
34 st = os.stat(name)
36 print 'Cannot stat', repr(name)
which.py 11 from stat import *
31 st = os.stat(filename)
  /device/linaro/bootloader/edk2/StdLib/Include/
glob.h 43 #include <sys/stat.h>
49 #define __gl_stat_t struct stat
63 * versions of closedir(3), readdir(3), opendir(3), stat(2)
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
fopen.c 50 #include <sys/stat.h>
74 struct stat st;
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/token-rewrite/
via-parser.rb 32 : lcurly='{' stat* '}'
41 stat: ID '=' expr ';' {$body::decls << $ID.text.to_s}
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
FirstMoment.java 17 package org.apache.commons.math.stat.descriptive.moment;
20 import org.apache.commons.math.stat.descriptive.AbstractStorelessUnivariateStatistic;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/rank/
Max.java 17 package org.apache.commons.math.stat.descriptive.rank;
21 import org.apache.commons.math.stat.descriptive.AbstractStorelessUnivariateStatistic;
Min.java 17 package org.apache.commons.math.stat.descriptive.rank;
21 import org.apache.commons.math.stat.descriptive.AbstractStorelessUnivariateStatistic;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/summary/
SumOfLogs.java 17 package org.apache.commons.math.stat.descriptive.summary;
21 import org.apache.commons.math.stat.descriptive.AbstractStorelessUnivariateStatistic;
SumOfSquares.java 17 package org.apache.commons.math.stat.descriptive.summary;
21 import org.apache.commons.math.stat.descriptive.AbstractStorelessUnivariateStatistic;
  /external/autotest/client/tests/iosched_bugs/src/
dirty.c 7 #include <sys/stat.h>
25 struct stat st;
  /external/curl/lib/
config-win32ce.h 93 /* Define if you have the <sys/stat.h> header file. */
446 extern int stat(const char *path, struct stat *buffer);

Completed in 567 milliseconds

<<21222324252627282930>>