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

<<21222324252627282930>>

  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/summary/
Product.java 17 package org.apache.commons.math.stat.descriptive.summary;
21 import org.apache.commons.math.stat.descriptive.AbstractStorelessUnivariateStatistic;
22 import org.apache.commons.math.stat.descriptive.WeightedEvaluation;
  /external/autotest/client/profilers/powertop/src/
bluetooth.c 86 struct hci_dev_stats stat; member in struct:hci_dev_info
125 thisbytes += devinfo.stat.byte_rx;
126 thisbytes += devinfo.stat.byte_tx;
  /external/autotest/client/site_tests/login_ChromeProfileSanitary/
login_ChromeProfileSanitary.py 5 import errno, os, stat
38 cookies_info = os.stat(constants.LOGIN_PROFILE + '/Cookies')
39 return cookies_info[stat.ST_MTIME]
  /external/cn-cbor/test/
test.c 4 #include <sys/stat.h>
19 struct stat st;
20 if (stat(filepath, &st)==-1) {
  /external/compiler-rt/test/msan/Linux/
glob_altdirfunc.cc 12 #include <sys/stat.h>
38 static int my_gl_lstat(const char *s, struct stat *st) {
45 static int my_gl_stat(const char *s, struct stat *st) {
  /external/curl/docs/examples/
ftpupload.c 27 #include <sys/stat.h>
71 struct stat file_info;
79 if(stat(LOCAL_FILE, &file_info)) {
  /external/f2fs-tools/mkfs/
f2fs_format_utils.c 27 #include <sys/stat.h>
48 struct stat *stat_buf;
53 stat_buf = malloc(sizeof(struct stat));
55 MSG(1, "\tError: Failed to get the device stat!!!\n");
  /external/libcap/progs/
getcap.c 15 #include <sys/stat.h>
34 static int do_getcap(const char *fname, const struct stat *stbuf,
94 struct stat stbuf;
  /external/libmicrohttpd/src/examples/
https_fileserver_example.c 37 #include <sys/stat.h>
128 struct stat buf;
140 if ( (0 == stat (&url[1], &buf)) &&
  /external/libmtp/examples/
thumb.c 35 #include <sys/stat.h>
53 struct stat statbuff;
79 if ( stat(path, &statbuff) == -1 ) {
81 perror("stat");
  /external/linux-kselftest/tools/testing/selftests/nsfs/
owner.c 10 #include <sys/stat.h>
29 struct stat st1, st2;
68 if (stat(path, &st2))
69 return pr_err("stat");
pidns.c 10 #include <sys/stat.h>
46 struct stat st1, st2;
65 if (stat(path, &st2))
66 return pr_err("Unable to stat %s", path);
68 return pr_err("Unable to stat the parent pidns");
  /external/ltp/testcases/kernel/device-drivers/dev_sim_framework/user_space/
user_tmod.c 40 #include <sys/stat.h>
55 struct stat st;
68 ("ERROR: Problem with Base dev directory. Error code from stat() is %d\n\n",
87 rc = stat(DEVICE_NAME, &st);
96 ("ERROR:Problem with tbase device node directory. Error code form stat() is %d\n\n",
  /external/ltp/testcases/kernel/device-drivers/usb/user_usb/
user_tusb.c 24 #include <sys/stat.h>
36 struct stat st;
49 ("ERROR: Problem with Base dev directory. Error code from stat() is %d\n\n",
68 rc = stat(DEVICE_NAME, &st);
77 ("ERROR:Problem with tbase device node directory. Error code form stat() is %d\n\n",
  /external/ltp/testcases/kernel/syscalls/chmod/
chmod07.c 75 #include <sys/stat.h>
107 struct stat stat_buf; /* stat(2) struct contents */
131 * stat(2).
133 if (stat(TESTFILE, &stat_buf) == -1)
135 "stat failed");
  /external/ltp/testcases/kernel/syscalls/chown/
chown05.c 72 #include <sys/stat.h>
105 struct stat stat_buf; /* stat(2) struct contents */
129 if (stat(TESTFILE, &stat_buf) == -1)
130 tst_brkm(TFAIL, cleanup, "stat failed");
  /external/ltp/testcases/kernel/syscalls/fchownat/
fchownat02.c 26 #include <sys/stat.h>
73 struct stat c_buf, l_buf;
119 struct stat c_buf, l_buf;
  /external/ltp/testcases/kernel/syscalls/fstat/
fstat05.c 92 #include <sys/stat.h>
132 struct stat stat_buf; /* stat structure buffer */
133 struct stat *ptr_str;
  /external/ltp/testcases/kernel/syscalls/stat/
stat01.c 20 * Verify that, stat(2) succeeds to get the status of a file and fills the
21 * stat structure elements.
26 #include <sys/stat.h>
52 struct stat stat_buf;
55 TEST(stat(TESTFILE, &stat_buf));
stat02.c 24 * Verify that, stat(2) succeeds to get the status of a file and fills the
25 * stat structure elements though process doesn't have read access to the
29 * stat() should return value 0 on success and the stat structure elements
73 #include <sys/stat.h>
102 struct stat stat_buf; /* stat structure buffer */
114 * Call stat(2) to get the status of
115 * specified 'file' into stat structure.
117 TEST(stat(TESTFILE, &stat_buf))
    [all...]
  /external/ltp/testcases/kernel/syscalls/truncate/
truncate01.c 72 #include <sys/stat.h>
96 struct stat stat_buf; /* stat(2) struct contents */
122 * stat(2).
124 if (stat(TESTFILE, &stat_buf) < 0) {
125 tst_brkm(TFAIL, cleanup, "stat(2) of "
  /external/mesa3d/src/gbm/main/
gbmint.h 32 #include <sys/stat.h>
58 struct stat stat; member in struct:gbm_device
  /external/python/cpython2/Lib/
filecmp.py 13 import stat
30 shallow -- Just check stat signature (do not read the files).
42 s1 = _sig(os.stat(f1))
43 s2 = _sig(os.stat(f2))
44 if s1[0] != stat.S_IFREG or s2[0] != stat.S_IFREG:
60 return (stat.S_IFMT(st.st_mode),
104 dir1 and dir2, or the name is not stat-able.
149 a_stat = os.stat(a_path)
151 # print 'Can\'t stat', a_path, ':', why[1
    [all...]
  /external/python/cpython2/Tools/scripts/
mkreal.py 9 from stat import *
18 st = os.stat(name) # Get the mode
32 st = os.stat(name) # Get the mode
  /external/python/cpython3/Lib/
filecmp.py 14 import stat
38 shallow -- Just check stat signature (do not read the files).
46 with cache entries invalidated if their stat information
51 s1 = _sig(os.stat(f1))
52 s2 = _sig(os.stat(f2))
53 if s1[0] != stat.S_IFREG or s2[0] != stat.S_IFREG:
69 return (stat.S_IFMT(st.st_mode),
113 dir1 and dir2, or the name is not stat-able.
158 a_stat = os.stat(a_path
    [all...]

Completed in 1505 milliseconds

<<21222324252627282930>>