Lines Matching defs:mountOptions
116 if (item->mountOptions != NULL) {
117 free(item->mountOptions);
118 item->mountOptions = NULL;
168 item->mountOptions = strdup(p);
169 BEGET_ERROR_CHECK(item->mountOptions != NULL, break, "strdup mountOptions failed.");
530 char mountOptions[MAX_BUFFER_LEN] = {};
542 BEGET_ERROR_CHECK(strncpy_s(mountOptions, MAX_BUFFER_LEN -1, p, strlen(p)) == EOK,
545 BEGET_LOGV("Config mount option of partition %s is [%s]", partName, mountOptions);
546 if (ParseFstabPerLine(mountOptions, fstab, false, "@") < 0) {
547 BEGET_LOGE("Failed to parse mount options of partition \' %s \', options: %s", partName, mountOptions);