Lines Matching defs:source
4 * Redistribution and use in source and binary forms, with or without modification,
7 * 1. Redistributions of source code must retain the above copyright notice, this list of
171 STATIC struct MountPoint *VfsMountPointInit(const char *source, const char *target,
194 if (source != NULL) {
195 ssize = strlen(source) + 1;
212 if (source != NULL && strcpy_s((char *)mp + sizeof(struct MountPoint), ssize, source) != EOK) {
223 mp->mDev = source ? (char *)mp + sizeof(struct MountPoint) : NULL;
229 STATIC int VfsRemount(const char *source, const char *target,
233 (VOID)source;
266 int mount(const char *source, const char *target,
280 ret = VfsRemount(source, target, fsType, mountflags, data);
285 mp = VfsMountPointInit(source, target, fsType, mountflags);