Searched defs:remount (Results 1 - 3 of 3) sorted by relevance

/system/vold/
H A DExt4.cpp49 int Ext4::doMount(const char *fsPath, const char *mountPoint, bool ro, bool remount, argument
58 flags |= (remount ? MS_REMOUNT : 0);
H A DFat.cpp116 bool ro, bool remount, bool executable,
126 flags |= (remount ? MS_REMOUNT : 0);
115 doMount(const char *fsPath, const char *mountPoint, bool ro, bool remount, bool executable, int ownerUid, int ownerGid, int permMask, bool createLost) argument
/system/core/adb/
H A Dremount_service.c82 /* Init mounts /system as read only, remount to enable writes. */
83 static int remount(const char* dir, int* dir_ro) function
134 // Allow remount but warn of likely bad effects
145 "If you do not, remount may succeed, however, you will still "
150 if (remount("/system", &system_ro)) {
151 snprintf(buffer, sizeof(buffer), "remount of system failed: %s\n",strerror(errno));
156 if (remount("/vendor", &vendor_ro)) {
157 snprintf(buffer, sizeof(buffer), "remount of vendor failed: %s\n",strerror(errno));
163 write_string(fd, "remount succeeded\n");
165 write_string(fd, "remount faile
[all...]

Completed in 38 milliseconds