Home | History | Annotate | Download | only in files

Lines Matching refs:file_info

205   stat_wrapper_t file_info;
206 int test = CallLstat(path_str, &file_info);
212 if (!S_ISDIR(file_info.st_mode))
383 stat_wrapper_t file_info;
384 if (CallStat(path.value().c_str(), &file_info) == 0)
385 return S_ISDIR(file_info.st_mode);
429 stat_wrapper_t file_info;
432 if (CallStat(path.value().c_str(), &file_info) != 0)
435 *mode = file_info.st_mode & FILE_PERMISSION_MASK;
614 stat_wrapper_t file_info;
615 if (CallStat(real_path_result.value().c_str(), &file_info) != 0 ||
616 S_ISDIR(file_info.st_mode))
639 stat_wrapper_t file_info;
648 if (CallStat(file_path.value().c_str(), &file_info) != 0)
654 results->FromStat(file_info);