HomeSort by relevance Sort by last modified time
    Searched defs:stat_info (Results 1 - 4 of 4) sorted by null

  /external/lldb/source/Host/linux/
Host.cpp 52 static bool GetProcessAndStatInfo (lldb::pid_t pid, ProcessInstanceInfo &process_info, ProcessStatInfo &stat_info, lldb::pid_t &tracerpid);
111 ReadProcPseudoFileStat (lldb::pid_t pid, ProcessStatInfo& stat_info)
127 stat_info.ppid = ppid;
132 stat_info.fProcessState |= eProcessStateRunning;
135 stat_info.fProcessState |= eProcessStateSleeping;
138 stat_info.fProcessState |= eProcessStateWaiting;
141 stat_info.fProcessState |= eProcessStateZombie;
144 stat_info.fProcessState |= eProcessStateTracedOrStopped;
147 stat_info.fProcessState |= eProcessStatePaging;
269 ProcessStatInfo stat_info; local
437 ProcessStatInfo stat_info; local
    [all...]
  /external/chromium_org/base/
file_util_posix.cc 99 stat_wrapper_t stat_info; local
100 if (CallLstat(path.value().c_str(), &stat_info) != 0) {
106 if (S_ISLNK(stat_info.st_mode)) {
112 if (stat_info.st_uid != owner_uid) {
118 if ((stat_info.st_mode & S_IWGRP) &&
119 !ContainsKey(group_gids, stat_info.st_gid)) {
125 if (stat_info.st_mode & S_IWOTH) {
  /external/chromium_org/third_party/icu/source/tools/tzcode/
tz2icu.cpp 647 struct stat stat_info; local
664 lstat(dir_entry->d_name,&stat_info);
665 if (S_ISDIR(stat_info.st_mode)) {
    [all...]
  /external/icu/icu4c/source/tools/tzcode/
tz2icu.cpp 647 struct stat stat_info; local
664 lstat(dir_entry->d_name,&stat_info);
665 if (S_ISDIR(stat_info.st_mode)) {
    [all...]

Completed in 246 milliseconds