HomeSort by relevance Sort by last modified time
    Searched refs:stat_ (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
mount_node_char.h 15 stat_.st_mode = S_IFCHR;
mount_node.cc 27 memset(&stat_, 0, sizeof(stat_));
28 stat_.st_gid = GRP_ID;
29 stat_.st_uid = USR_ID;
36 stat_.st_ino = 1;
42 stat_.st_mode |= perm;
74 memcpy(pstat, &stat_, sizeof(stat_));
141 int MountNode::GetLinks() { return stat_.st_nlink; }
143 int MountNode::GetMode() { return stat_.st_mode & ~S_IFMT;
    [all...]
mount.cc 56 node->stat_.st_ino = inode_pool_.Acquire();
57 node->stat_.st_dev = dev_;
61 if (node->stat_.st_ino)
62 inode_pool_.Release(node->stat_.st_ino);
mount_node_mem.cc 20 stat_.st_mode |= S_IFREG;
32 size_t size = stat_.st_size;
53 if (count + offs > stat_.st_size) {
58 count = stat_.st_size - offs;
68 size_t old_size = stat_.st_size;
72 stat_.st_size = static_cast<off_t>(new_size);
85 stat_.st_size = static_cast<off_t>(new_size);
94 stat_.st_size = static_cast<off_t>(new_size);
mount_node_http.cc 150 stat_.st_size = size;
169 if (stat_.st_size == 0 || !mount->cache_stat_) {
201 stat_.st_size = 0;
204 stat_.st_atime = 0; // TODO(binji): Use "Last-Modified".
205 stat_.st_mtime = 0;
206 stat_.st_ctime = 0;
211 memcpy(stat, &stat_, sizeof(stat_));
255 // was written to stat_.st_size.
263 *out_size = stat_.st_size
    [all...]
mount_node_dir.cc 18 stat_.st_mode |= S_IFDIR;
139 cache_[index].d_ino = it->second->stat_.st_ino;
mount_node.h 109 struct stat stat_; member in class:nacl_io::MountNode
mount_dev.cc 101 stat_.st_mode = S_IFCHR;
171 ZeroNode::ZeroNode(Mount* mount) : MountNode(mount) { stat_.st_mode = S_IFCHR; }
188 stat_.st_mode = S_IFCHR;
mount_node_html5fs.cc 168 memcpy(stat, &stat_, sizeof(stat_));
  /external/chromium_org/base/files/
file_enumerator_posix.cc 19 memset(&stat_, 0, sizeof(stat_));
23 return S_ISDIR(stat_.st_mode);
31 return stat_.st_size;
35 return base::Time::FromTimeT(stat_.st_mtime);
102 if (recursive_ && S_ISDIR(i->stat_.st_mode))
105 if ((S_ISDIR(i->stat_.st_mode) && (file_type_ & DIRECTORIES)) ||
106 (!S_ISDIR(i->stat_.st_mode) && (file_type_ & FILES)))
141 ret = lstat(full_name.value().c_str(), &info.stat_);
143 ret = stat(full_name.value().c_str(), &info.stat_);
    [all...]
file_enumerator.h 58 const struct stat& stat() const { return stat_; }
67 struct stat stat_; member in class:base::FileEnumerator::FileInfo
  /external/chromium_org/chrome/browser/sync/
about_sync_util.cc 53 DictionaryValue* stat_; member in class:__anon8199::StringSyncStat
57 stat_ = new DictionaryValue();
58 stat_->SetString("stat_name", key);
59 stat_->SetString("stat_value", "Uninitialized");
60 stat_->SetBoolean("is_valid", false);
61 section->Append(stat_);
65 stat_->SetString("stat_value", value);
66 stat_->SetBoolean("is_valid", true);
70 stat_->SetString("stat_value", value);
71 stat_->SetBoolean("is_valid", true)
81 DictionaryValue* stat_; member in class:__anon8199::BoolSyncStat
104 DictionaryValue* stat_; member in class:__anon8199::IntSyncStat
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
fileutils.cc 98 if (::stat(std::string(directory_ + Name()).c_str(), &stat_) != 0)
114 return ::stat(std::string(directory_ + Name()).c_str(), &stat_) == 0;
123 return S_ISDIR(stat_.st_mode);
140 return stat_.st_size;
153 return stat_.st_mtime;
fileutils.h 103 struct stat stat_; member in class:talk_base::DirectoryIterator
  /external/chromium_org/third_party/libjingle/source/talk/base/
fileutils.cc 101 if (::stat(std::string(directory_ + Name()).c_str(), &stat_) != 0)
117 return ::stat(std::string(directory_ + Name()).c_str(), &stat_) == 0;
126 return S_ISDIR(stat_.st_mode);
143 return stat_.st_size;
156 return stat_.st_mtime;
fileutils.h 103 struct stat stat_; member in class:talk_base::DirectoryIterator

Completed in 270 milliseconds