Home | History | Annotate | Download | only in gdb

Lines Matching defs:tmpstr

1871   char *tmpstr;
2022 tmpstr = strstr (proc_status, "Uid:");
2023 if (tmpstr != NULL)
2026 tmpstr += sizeof ("Uid:");
2027 while (*tmpstr != '\0' && !isdigit ((unsigned char)*tmpstr))
2028 ++tmpstr;
2030 if (isdigit ((unsigned char)*tmpstr))
2031 p->pr_uid = strtol (tmpstr, &tmpstr, 10);
2035 tmpstr = strstr (proc_status, "Gid:");
2036 if (tmpstr != NULL)
2039 tmpstr += sizeof ("Gid:");
2040 while (*tmpstr != '\0' && !isdigit ((unsigned char)*tmpstr))
2041 ++tmpstr;
2043 if (isdigit ((unsigned char)*tmpstr))
2044 p->pr_gid = strtol (tmpstr, &tmpstr, 10);