/external/chromium_org/native_client_sdk/src/libraries/nacl_io/ |
mount_node.cc | 29 memset(&stat_, 0, sizeof(stat_)); 30 stat_.st_gid = GRP_ID; 31 stat_.st_uid = USR_ID; 32 stat_.st_mode = S_IRALL | S_IWALL; 39 stat_.st_ino = 1; 66 return (stat_.st_mode & S_IRALL) != 0; 68 return (stat_.st_mode & S_IWALL) != 0; 70 return (stat_.st_mode & S_IRALL) != 0 && (stat_.st_mode & S_IWALL) != 0 [all...] |
mount.cc | 43 node->stat_.st_ino = inode_pool_.Acquire(); 44 node->stat_.st_dev = dev_; 48 if (node->stat_.st_ino) 49 inode_pool_.Release(node->stat_.st_ino);
|
mount_node_mem.cc | 43 size_t size = stat_.st_size; 64 if (count + attr.offs > static_cast<size_t>(stat_.st_size)) { 66 count = stat_.st_size - attr.offs; 86 } else if (new_size < stat_.st_size) { 92 stat_.st_size = new_size;
|
mount_node_dir.cc | 26 cache_(stat_.st_ino, kParentDirIno), 30 stat_.st_mode |= S_IRALL | S_IWALL | S_IXALL; 123 ino_t ino = it->second->stat_.st_ino;
|
mount_node_http.cc | 152 stat_.st_size = size; 212 *out_size = stat_.st_size; 224 void MountNodeHttp::SetMode(int mode) { stat_.st_mode = mode; } 252 // via DownloadToCache, which will also set stat_.st_size; 269 stat_.st_atime = 0; // TODO(binji): Use "Last-Modified". 270 stat_.st_mtime = 0; 271 stat_.st_ctime = 0; 273 stat_.st_mode |= S_IFREG; 278 *stat = stat_;
|
mount_node.h | 124 struct stat stat_; member in class:nacl_io::MountNode
|
mount_node_html5fs.cc | 152 memcpy(stat, &stat_, sizeof(stat_));
|
mount_fuse.cc | 222 // GetStat cached the mode in stat_.st_mode. Forward to MountNode::CanOpen, 242 stat_ = *stat; 273 *out_size = stat_.st_size;
|
/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 | 61 const struct stat& stat() const { return stat_; } 70 struct stat stat_; member in class:base::FileEnumerator::FileInfo
|
/external/chromium_org/chrome/browser/sync/ |
about_sync_util.cc | 69 DictionaryValue* stat_; member in class:__anon5676::StringSyncStat 73 stat_ = new DictionaryValue(); 74 stat_->SetString("stat_name", key); 75 stat_->SetString("stat_value", "Uninitialized"); 76 stat_->SetBoolean("is_valid", false); 77 section->Append(stat_); 81 stat_->SetString("stat_value", value); 82 stat_->SetBoolean("is_valid", true); 86 stat_->SetString("stat_value", value); 87 stat_->SetBoolean("is_valid", true) 97 DictionaryValue* stat_; member in class:__anon5676::BoolSyncStat 120 DictionaryValue* stat_; member in class:__anon5676::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
|