rest              507 plugin/ipc/file/fileconnection.cpp     char *rest;
rest              508 plugin/ipc/file/fileconnection.cpp     pid_t proc_pid = strtol(&_path[index], &rest, 0);
rest              509 plugin/ipc/file/fileconnection.cpp     if (proc_pid > 0 && *rest == '/') {
rest              775 plugin/ipc/file/fileconnection.cpp     char *rest;
rest              777 plugin/ipc/file/fileconnection.cpp     pid_t proc_pid = strtol(&_path[index], &rest, 0);
rest              778 plugin/ipc/file/fileconnection.cpp     if (proc_pid > 0 && *rest == '/') {
rest              779 plugin/ipc/file/fileconnection.cpp       sprintf(buf, "/proc/%d/%s", getpid(), rest);
rest               68 plugin/pid/pid_filewrappers.cpp     char *rest;
rest               69 plugin/pid/pid_filewrappers.cpp     pid_t virtualPid = strtol(&path[index], &rest, 0);
rest               70 plugin/pid/pid_filewrappers.cpp     if (virtualPid > 0 && *rest == '/') {
rest               72 plugin/pid/pid_filewrappers.cpp       sprintf(*newpath, "/proc/%d%s", realPid, rest);
rest               84 plugin/pid/pid_filewrappers.cpp     char *rest;
rest               85 plugin/pid/pid_filewrappers.cpp     pid_t realPid = strtol(&path[index], &rest, 0);
rest               86 plugin/pid/pid_filewrappers.cpp     if (realPid > 0 && *rest == '/') {
rest               88 plugin/pid/pid_filewrappers.cpp       sprintf(*newpath, "/proc/%d%s", virtualPid, rest);