reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Support/Unix/Path.inc
  853     StringRef Name(CurDir->d_name);
projects/openmp/runtime/src/z_Linux_util.cpp
 2253     if (proc_entry->d_type == DT_DIR && isdigit(proc_entry->d_name[0])) {
 2266       __kmp_str_buf_cat(&task_path, proc_entry->d_name,
 2267                         KMP_STRLEN(proc_entry->d_name));
 2280         if (strcmp(proc_entry->d_name, "1") == 0) {
 2295           if (proc_entry->d_type == DT_DIR && isdigit(task_entry->d_name[0])) {
 2304             __kmp_str_buf_cat(&stat_path, task_entry->d_name,
 2305                               KMP_STRLEN(task_entry->d_name));
tools/lldb/source/Host/linux/Host.cpp
  236       if (direntry->d_type != DT_DIR || !IsDirNumeric(direntry->d_name))
  239       lldb::pid_t pid = atoi(direntry->d_name);
  285       if (direntry->d_type != DT_DIR || !IsDirNumeric(direntry->d_name))
  288       lldb::tid_t tid = atoi(direntry->d_name);