Home | History | Annotate | Download | only in logd

Lines Matching defs:line

31 // /proc/PID/status and look for the "Group:" line.
85 char line[1024];
86 while (fgets(line, sizeof(line), file)) {
91 if (strncmp(groups_string, line, strlen(groups_string)) == 0) {
92 ret = groupIsLog(line + strlen(groups_string));
96 } else if (strncmp(uid_string, line, strlen(uid_string)) == 0) {
99 sscanf(line + strlen(uid_string), "%u\t%u\t%u\t%u",
108 } else if (strncmp(gid_string, line, strlen(gid_string)) == 0) {
111 sscanf(line + strlen(gid_string), "%u\t%u\t%u\t%u",