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

References

projects/openmp/runtime/src/z_Linux_util.cpp
 2212   __kmp_str_buf_init(&task_path);
 2246   __kmp_str_buf_cat(&task_path, "/proc/", 6);
 2247   task_path_fixed_len = task_path.used; // Remember number of used characters.
 2265       task_path.used = task_path_fixed_len; // Reset task_path to "/proc/".
 2266       __kmp_str_buf_cat(&task_path, proc_entry->d_name,
 2268       __kmp_str_buf_cat(&task_path, "/task", 5);
 2270       task_dir = opendir(task_path.str);
 2288         __kmp_str_buf_cat(&stat_path, task_path.str, task_path.used);
 2288         __kmp_str_buf_cat(&stat_path, task_path.str, task_path.used);
 2384   __kmp_str_buf_free(&task_path);