Lines Matching refs:ename
278 * ipath2str -- convert ename and ipath to class@path string
280 * if both ename and ipp are provided (non-NULL), the resulting string
287 ipath2str(const char *ename, const struct ipath *ipp)
295 if (ename != NULL)
296 len += strlen(ename);
308 if (ename != NULL && ipp != NULL)
315 if (ename != NULL) {
317 (void) strcpy(cp, ename);
322 if (ename != NULL && ipp != NULL)
358 ipath2strlen(const char *ename, const struct ipath *ipp)
364 if (ename != NULL)
365 len += strlen(ename);
377 if (ename != NULL && ipp != NULL)
384 * ipath_print -- print out an ename, ipath, or both with '@' between them
387 ipath_print(int flags, const char *ename, const struct ipath *ipp)
389 if (ename != NULL) {
390 out(flags|O_NONL, ename);