Lines Matching defs:depstr
1440 char *depstr, *q;
1475 depstr = (char *)kobj_alloc(strlen(q) + 1, KM_WAIT);
1476 (void) strcpy(depstr, q);
1478 return (depstr);
1672 char *path = NULL, *depstr = NULL;
1708 if (depstr != NULL) {
1709 bcopy(depstr, tmp, osize);
1710 kobj_free(depstr, allocsize);
1712 depstr = tmp;
1715 bcopy(libname, depstr + osize, lsize);
1716 *(depstr + nsize) = ' '; /* separator */
1734 if (depstr != NULL) {
1735 *(depstr + nsize - 1) = '\0'; /* overwrite separator w/term */
1740 bcopy(depstr, tmp, nsize);
1741 kobj_free(depstr, allocsize);
1742 depstr = tmp;
1744 mp->depends_on = depstr;