Home | History | Annotate | Download | only in libppath

Lines Matching defs:p_len

61 	unsigned int	p_len;
179 if (p == NULL || p->p_len == 0)
182 pc = p->p_cmpt[--p->p_len];
195 if (p == NULL || p->p_len == __arraycount(p->p_cmpt))
198 p->p_cmpt[p->p_len++] = ppath_component_retain(pc);
208 if (p == NULL || i >= p->p_len)
219 return p->p_len;
274 if (p == NULL || p->p_len == 0)
277 pc0 = p->p_cmpt[p->p_len - 1];
285 p->p_cmpt[p->p_len - 1] = pc;
296 if (p == NULL || p->p_len == 0)
299 pc0 = p->p_cmpt[p->p_len - 1];
307 p->p_cmpt[p->p_len - 1] = pc;
322 for (i = 0; i < p0->p_len; i++)
324 p->p_len = p0->p_len;
348 for (i = 0; i < p->p_len; i++)
364 for (po = NULL, o = o0, i = 0; i < p->p_len && o != NULL; i++) {