Searched defs:mountPoint (Results 1 - 4 of 4) sorted by relevance

/system/vold/
H A DExt4.cpp48 int Ext4::doMount(const char *fsPath, const char *mountPoint, bool ro, bool remount, argument
59 rc = mount(fsPath, mountPoint, "ext4", flags, NULL);
64 rc = mount(fsPath, mountPoint, "ext4", flags, NULL);
H A DProcess.cpp52 int Process::pathMatchesMountPoint(const char* path, const char* mountPoint) { argument
53 int length = strlen(mountPoint);
54 if (length > 1 && strncmp(path, mountPoint, length) == 0) {
55 // we need to do extra checking if mountPoint does not end in a '/'
56 if (mountPoint[length - 1] == '/')
58 // if mountPoint does not have a trailing slash, we need to make sure
79 int Process::checkFileDescriptorSymLinks(int pid, const char *mountPoint) { argument
80 return checkFileDescriptorSymLinks(pid, mountPoint, NULL, 0);
83 int Process::checkFileDescriptorSymLinks(int pid, const char *mountPoint, char *openFilename, size_t max) { argument
110 if (readSymLink(path, link, sizeof(link)) && pathMatchesMountPoint(link, mountPoint)) {
124 checkFileMaps(int pid, const char *mountPoint) argument
128 checkFileMaps(int pid, const char *mountPoint, char *openFilename, size_t max) argument
154 checkSymLink(int pid, const char *mountPoint, const char *name) argument
[all...]
H A DFat.cpp115 int Fat::doMount(const char *fsPath, const char *mountPoint, argument
146 rc = mount(fsPath, mountPoint, "vfat", flags, mountData);
151 rc = mount(fsPath, mountPoint, "vfat", flags, mountData);
156 asprintf(&lost_path, "%s/LOST.DIR", mountPoint);
H A DVolumeManager.cpp402 char mountPoint[255]; local
404 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::ASECDIR, id);
405 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
406 SLOGE("ASEC fs format failed: couldn't construct mountPoint");
416 formatStatus = Ext4::format(dmDevice, mountPoint);
431 if (mkdir(mountPoint, 0000)) {
445 mountStatus = Ext4::doMount(dmDevice, mountPoint, false, false, false);
447 mountStatus = Fat::doMount(dmDevice, mountPoint, false, false, false, ownerUid, 0, 0000,
462 int dirfd = open(mountPoint, O_DIRECTOR
482 char mountPoint[255]; local
534 char mountPoint[255]; local
650 char mountPoint[255]; local
708 char mountPoint[255]; local
731 char mountPoint[255]; local
748 unmountLoopImage(const char *id, const char *idHash, const char *fileName, const char *mountPoint, bool force) argument
832 char mountPoint[255]; local
924 char mountPoint[255]; local
1057 const char* mountPoint = (*i)->getFuseMountpoint(); local
1070 char mountPoint[255]; local
[all...]

Completed in 129 milliseconds