Searched defs:stat (Results 76 - 100 of 169) sorted by relevance

1234567

/external/chromium_org/third_party/boringssl/src/crypto/x509/
H A Dby_dir.c59 #include <sys/stat.h>
391 #define stat _stat macro
394 struct stat st;
395 if (stat(b->data,&st) < 0)
/external/chromium_org/third_party/python_gflags/
H A Dgflags2man.py54 import stat namespace
196 finfo = os.stat(self.executable)
197 self.date = time.localtime(finfo[stat.ST_MTIME])
/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dloslib.c82 int stat = system(cmd); local
84 return luaL_execresult(L, stat);
86 lua_pushboolean(L, stat); /* true if there is a shell */
/external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test/
H A Dvideoprocessor.cc197 FrameStatistic& stat = stats_->NewFrame(frame_number); local
219 stat.encode_return_code = encode_result;
245 FrameStatistic& stat = stats_->stats_[frame_number]; local
246 stat.encode_time_in_us = GetElapsedTimeMicroseconds(encode_start_,
248 stat.encoding_successful = true;
249 stat.encoded_frame_length_in_bytes = encoded_image->_length;
250 stat.frame_number = encoded_image->_timeStamp;
251 stat.frame_type = encoded_image->_frameType;
252 stat.bit_rate_in_kbps = encoded_image->_length * bit_rate_factor_;
253 stat
300 FrameStatistic& stat = stats_->stats_[frame_number]; local
[all...]
/external/chromium_org/tools/auto_bisect/
H A Dbisect_utils.py15 import stat namespace
305 os.chmod(path, stat.S_IWUSR)
/external/chromium_org/tools/gyp/test/lib/
H A DTestCommon.py98 import stat namespace
179 mode = os.stat(f)[stat.ST_MODE]
180 return mode & stat.S_IWUSR
/external/clang/test/SemaCXX/
H A Dextern-c.cpp143 struct stat {}; // expected-warning{{empty struct has size 0 in C, size 1 in C++}} struct
144 void stat(struct stat);
148 void stat(struct ::stat);
151 int stat(int *p);
/external/libnfc-nci/halimpl/bcm2079x/adaptation/
H A Dpatchram.cpp519 tHAL_NFC_STATUS stat = HAL_NFC_STATUS_FAILED; local
531 stat = HAL_NfcReInit ();
/external/libpcap/
H A Dpcap-snit.c91 struct pcap_stat stat; member in struct:pcap_snit
116 *ps = psn->stat;
172 ++psn->stat.ps_recv;
184 psn->stat.ps_drop = ndp->nh_drops;
/external/lldb/test/pexpect-2.4/examples/
H A Drippy.py72 import sys, os, re, math, stat, getopt, traceback, types, time namespace
503 return os.stat(filename)[stat.ST_SIZE]
521 #audio_size = os.stat(audio_compressed_filename)[stat.ST_SIZE]
/external/lzma/CPP/7zip/UI/Common/
H A DExtract.cpp110 CDecompressStat &stat)
112 stat.Clear();
255 stat.NumFolders = extractCallbackSpec->NumFolders;
256 stat.NumFiles = extractCallbackSpec->NumFiles;
257 stat.UnpackSize = extractCallbackSpec->UnpackSize;
258 stat.CrcSum = extractCallbackSpec->CrcSum;
260 stat.NumArchives = arcPaths.Size();
261 stat.PackSize = extractCallbackSpec->LocalProgressSpec->InSize;
102 DecompressArchives( CCodecs *codecs, const CIntVector &formatIndices, UStringVector &arcPaths, UStringVector &arcPathsFull, const NWildcard::CCensorNode &wildcardCensor, const CExtractOptions &options, IOpenCallbackUI *openCallback, IExtractCallbackUI *extractCallback, UString &errorMessage, CDecompressStat &stat) argument
/external/lzma/CPP/7zip/UI/Console/
H A DMain.cpp416 CDecompressStat stat; local
423 eo, &openCallback, ecs, errorMessage, stat);
450 if (stat.NumFolders != 0)
451 stdStream << "Folders: " << stat.NumFolders << endl;
452 if (stat.NumFiles != 1 || stat.NumFolders != 0)
453 stdStream << "Files: " << stat.NumFiles << endl;
455 << "Size: " << stat.UnpackSize << endl
456 << "Compressed: " << stat.PackSize << endl;
460 ConvertUInt32ToHexWithZeros(stat
[all...]
/external/openssl/crypto/x509/
H A Dby_dir.c69 # include <sys/stat.h>
394 #define stat _stat macro
397 struct stat st;
398 if (stat(b->data,&st) < 0)
/external/srec/srec/clib/
H A Dvoc_read.c38 #include <sys/stat.h>
40 #define stat _stat macro
273 struct stat statbuf;
/external/tcpdump/
H A Dtcpdump-stdinc.h63 #define stat _stat macro
/external/valgrind/main/none/tests/x86-linux/
H A Dseg_override.c90 int stat; local
104 stat = __modify_ldt (1, &ldt_entry, sizeof (ldt_entry));
105 printf("stat = %d\n", stat);
/external/bison/linux-lib/sys/
H A Dstat.h2 /* Provide a more complete sys/stat header file.
20 /* This file is supposed to be used on platforms where <sys/stat.h> is
32 #include_next <sys/stat.h>
47 #include_next <sys/stat.h>
384 # define stat _stati64
650 _GL_FUNCDECL_RPL (fstat, int, (int fd, struct stat *buf) _GL_ARG_NONNULL ((2)));
651 _GL_CXXALIAS_RPL (fstat, int, (int fd, struct stat *buf));
653 _GL_CXXALIAS_SYS (fstat, int, (int fd, struct stat *buf));
657 /* Above, we define stat to _stati64. */
675 (int fd, char const *name, struct stat *s
994 # undef stat macro
[all...]
/external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
H A Dprivate_api_file_system.cc56 struct statvfs stat = {}; // Zero-clear local
57 if (HANDLE_EINTR(statvfs(mount_path.c_str(), &stat)) == 0) {
58 *total_size = static_cast<uint64>(stat.f_blocks) * stat.f_frsize;
59 *remaining_size = static_cast<uint64>(stat.f_bavail) * stat.f_frsize;
66 struct statvfs stat = {}; local
67 if (HANDLE_EINTR(statvfs(path.c_str(), &stat)) != 0) {
73 return stat.f_namemax;
/external/chromium_org/chrome/browser/extensions/api/processes/
H A Dprocesses_api.cc49 const blink::WebCache::ResourceTypeStat& stat) {
52 cache->SetDouble(keys::kCacheSize, static_cast<double>(stat.size));
53 cache->SetDouble(keys::kCacheLiveSize, static_cast<double>(stat.liveSize));
48 CreateCacheData( const blink::WebCache::ResourceTypeStat& stat) argument
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/fusefs/
H A Dfuse_fs.cc88 struct stat statbuf;
185 struct stat statbuf;
220 struct stat statbuf;
230 Error FuseFsNode::GetStat(struct stat* stat) { argument
233 result = fuse_ops_->fgetattr(path_.c_str(), stat, &info_);
237 result = fuse_ops_->getattr(path_.c_str(), stat);
245 // Also update the cached stat values.
246 stat_ = *stat;
300 struct stat statbu
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dplurfmts.cpp144 UErrorCode stat = U_ZERO_ERROR; local
145 PluralFormat *pf = new PluralFormat(stat);
149 if(U_FAILURE(stat)) {
150 dataerrln("ERROR: PluralFormat::parseObject: %s", u_errorName(stat));
/external/chromium_org/tools/valgrind/
H A Dvalgrind_test.py16 import stat namespace
463 os.chmod(indirect_fname, stat.S_IRUSR|stat.S_IXUSR)
/external/icu/icu4c/source/test/intltest/
H A Dplurfmts.cpp144 UErrorCode stat = U_ZERO_ERROR; local
145 PluralFormat *pf = new PluralFormat(stat);
149 if(U_FAILURE(stat)) {
150 dataerrln("ERROR: PluralFormat::parseObject: %s", u_errorName(stat));
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dsort.h84 struct he_stat stat; member in struct:hist_entry
/external/opencv/cvaux/src/
H A Dcvbgfg_acmmm2003.cpp364 CvBGPixelStat* stat = model->pixel_stat + i * model->Ftd->width + j; local
366 CvBGPixelCStatTable* ctable = stat->ctable;
367 CvBGPixelCCStatTable* cctable = stat->cctable;
377 if( !stat->is_trained_dyn_model ) {
397 Pb = stat->Pbcc;
401 else if( stat->is_trained_st_model )
414 Pb = stat->Pbc;
479 CvBGPixelStat* stat = model->pixel_stat + i * model->Ftd->width + j; local
480 stat->is_trained_st_model = stat
490 CvBGPixelStat* stat = model->pixel_stat + i * model->Ftd->width + j; local
[all...]

Completed in 591 milliseconds

1234567