Lines Matching refs:target
125 * name into the root file system at the path specified by 'target.'
144 int mount(const char *source, const char *target,
168 DEBUGASSERT(target && filesystemtype);
199 ret = VnodeLookup(target, &mountpt_vnode, 0);
205 PRINT_ERR("Failed to find valid mountpoint %s\n", target);
217 PRINT_ERR("can't mount to %s, already mounted.\n", target);
223 PRINT_ERR("can't mount to %s, already mounted.\n", target);
272 partition->mountpoint_name = (char *)zalloc(strlen(target) + 1);
278 (void)strncpy_s(partition->mountpoint_name, strlen(target) + 1, target, strlen(target));
279 partition->mountpoint_name[strlen(target)] = '\0';
288 ret = ZpfsPrepare(source, target, mnt);
325 if (target && (strlen(target) != 0))
327 ret = strcpy_s(mnt->pathName, PATH_MAX, target);
363 if (!strcmp("/", target))