health.filesystem::IFileSystem -> health.storage::IStorage
Rename the HAL because it is regarding 'storage health', not 'filesystem health'. Bug: 111655771 Test: compiles Change-Id: I07072c876fb07c88be8bd74cf6b84aec6020a697 Merged-In: I07072c876fb07c88be8bd74cf6b84aec6020a697
This commit is contained in:
parent
c23b3a5dda
commit
ec75d33d9c
4 changed files with 8 additions and 8 deletions
|
@ -1,15 +1,15 @@
|
||||||
// This file is autogenerated by hidl-gen -Landroidbp.
|
// This file is autogenerated by hidl-gen -Landroidbp.
|
||||||
|
|
||||||
hidl_interface {
|
hidl_interface {
|
||||||
name: "android.hardware.health.filesystem@1.0",
|
name: "android.hardware.health.storage@1.0",
|
||||||
root: "android.hardware",
|
root: "android.hardware",
|
||||||
vndk: {
|
vndk: {
|
||||||
enabled: true,
|
enabled: true,
|
||||||
},
|
},
|
||||||
srcs: [
|
srcs: [
|
||||||
"types.hal",
|
"types.hal",
|
||||||
"IFileSystem.hal",
|
|
||||||
"IGarbageCollectCallback.hal",
|
"IGarbageCollectCallback.hal",
|
||||||
|
"IStorage.hal",
|
||||||
],
|
],
|
||||||
interfaces: [
|
interfaces: [
|
||||||
"android.hidl.base@1.0",
|
"android.hidl.base@1.0",
|
|
@ -13,10 +13,10 @@
|
||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
package android.hardware.health.filesystem@1.0;
|
package android.hardware.health.storage@1.0;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Callback interface to IFileSystem.garbageCollect.
|
* Callback interface to IStorage.garbageCollect.
|
||||||
*/
|
*/
|
||||||
interface IGarbageCollectCallback {
|
interface IGarbageCollectCallback {
|
||||||
/**
|
/**
|
|
@ -14,15 +14,15 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package android.hardware.health.filesystem@1.0;
|
package android.hardware.health.storage@1.0;
|
||||||
|
|
||||||
import IGarbageCollectCallback;
|
import IGarbageCollectCallback;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* IFileSystem is an interface that provides operations on underlying storage
|
* IStorage is an interface that provides operations on underlying storage
|
||||||
* devices, including flash memory.
|
* devices, including flash memory.
|
||||||
*/
|
*/
|
||||||
interface IFileSystem {
|
interface IStorage {
|
||||||
/**
|
/**
|
||||||
* Start garbage collection on the driver of storage devices.
|
* Start garbage collection on the driver of storage devices.
|
||||||
*
|
*
|
|
@ -14,7 +14,7 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package android.hardware.health.filesystem@1.0;
|
package android.hardware.health.storage@1.0;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Status values for HAL methods.
|
* Status values for HAL methods.
|
Loading…
Reference in a new issue