Lines Matching refs:linep
62 const char *linep, *limit, *end; in hash_projid() local
64 linep = line; in hash_projid()
71 while (linep < limit && *linep++ != ':'); in hash_projid()
72 if (linep == limit) in hash_projid()
76 end = linep; in hash_projid()
77 id = (uint_t)strtol(linep, (char **)&end, 10); in hash_projid()
78 if (linep == end) in hash_projid()
100 const char *linep, *limit, *end; in check_projid() local
102 linep = line; in check_projid()
106 while (linep < limit && *linep++ != ':'); in check_projid()
109 if (linep == limit || linep == line + 1) in check_projid()
113 end = linep; in check_projid()
114 projid = (projid_t)strtol(linep, (char **)&end, 10); in check_projid()
117 if (linep == end) in check_projid()