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

/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 DFat.cpp97 int Fat::doMount(const char *fsPath, const char *mountPoint, argument
128 rc = mount(fsPath, mountPoint, "vfat", flags, mountData);
133 rc = mount(fsPath, mountPoint, "vfat", flags, mountData);
138 asprintf(&lost_path, "%s/LOST.DIR", mountPoint);
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 DVolumeManager.cpp398 char mountPoint[255]; local
400 snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::ASECDIR, id);
401 if (mkdir(mountPoint, 0000)) {
415 mountStatus = Ext4::doMount(dmDevice, mountPoint, false, false, false);
417 mountStatus = Fat::doMount(dmDevice, mountPoint, false, false, false, ownerUid, 0, 0000,
432 int dirfd = open(mountPoint, O_DIRECTORY);
436 SLOGI("Cannot chown/chmod new ASEC mount point %s", mountPoint);
452 char mountPoint[255]; local
477 snprintf(mountPoint, sizeo
500 char mountPoint[255]; local
612 char mountPoint[255]; local
660 char mountPoint[255]; local
679 char mountPoint[255]; local
692 unmountLoopImage(const char *id, const char *idHash, const char *fileName, const char *mountPoint, bool force) argument
776 char mountPoint[255]; local
863 char mountPoint[255]; local
992 const char* mountPoint = (*i)->getMountpoint(); local
1005 char mountPoint[255]; local
[all...]

Completed in 51 milliseconds