该函数中有如下一段代码
 if (checkFileDescriptorSymLinks(pid, path, openfile, sizeof(openfile))) {
            SLOGE("Process %s (%d) has open file %s", name, pid, openfile);
        } else if (checkFileMaps(pid, path, openfile, sizeof(openfile))) {
            SLOGE("Process %s (%d) has open filemap for %s", name, pid, openfile);
        } else if (checkSymLink(pid, path, "cwd")) {
            SLOGE("Process %s (%d) has cwd within %s", name, pid, path);
        } else if (checkSymLink(pid, path, "root")) {
            SLOGE("Process %s (%d) has chroot within %s", name, pid, path);
        } else if (checkSymLink(pid, path, "exe")) {
            SLOGE("Process %s (%d) has executable path within %s", name, pid, path);
        } else {
            continue;
        }
请问checkFileDescriptorSymLinks(pid, path, openfile, sizeof(openfile))
     checkFileMaps(pid, path, openfile, sizeof(openfile))
     checkSymLink(pid, path, "cwd")
     checkSymLink(pid, path, "root")
     checkSymLink(pid, path, "exe")的作用是什么?