platform_system_vold/fs/F2fs.h
Yi Kong b8345b6e9c Fix build with ToT libc++
system/vold/fs/F2fs.h:33:28: error: no template named 'vector' in namespace 'std'
   33 |                 const std::vector<std::string>& user_devices);
      |

Test: Build with ToT libc++
Change-Id: Iab5f3fc06ce780ae81e96df7fd091a28407c1422
2024-05-24 14:16:59 +09:00

40 lines
1.1 KiB
C++

/*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef ANDROID_VOLD_F2FS_H
#define ANDROID_VOLD_F2FS_H
#include <utils/Errors.h>
#include <string>
#include <vector>
namespace android {
namespace vold {
namespace f2fs {
bool IsSupported();
status_t Check(const std::string& source);
status_t Mount(const std::string& source, const std::string& target);
status_t Format(const std::string& source, const bool is_zoned,
const std::vector<std::string>& user_devices);
} // namespace f2fs
} // namespace vold
} // namespace android
#endif