Home
last modified time | relevance | path

Searched refs:dsuSlot (Results 1 – 4 of 4) sorted by relevance

/system/gsid/aidl/android/gsi/
DIGsiService.aidl87 int enableGsi(boolean oneShot, @utf8InCpp String dsuSlot); in enableGsi() argument
93 …oneway void enableGsiAsync(boolean oneShot, @utf8InCpp String dsuSlot, IGsiServiceCallback result); in enableGsiAsync() argument
/system/gsid/
Dgsi_tool.cpp302 std::string dsuSlot; in Install() local
303 status = gsid->getActiveDsuSlot(&dsuSlot); in Install()
308 status = gsid->enableGsi(true, dsuSlot, &error); in Install()
474 std::string dsuSlot = {}; in Enable() local
487 dsuSlot = optarg; in Enable()
508 if (dsuSlot.empty()) { in Enable()
509 auto status = gsid->getActiveDsuSlot(&dsuSlot); in Enable()
516 auto status = gsid->enableGsi(one_shot, dsuSlot, &error); in Enable()
Dgsi_service.h52 binder::Status enableGsi(bool oneShot, const std::string& dsuSlot, int* _aidl_return) override;
53 binder::Status enableGsiAsync(bool oneShot, const ::std::string& dsuSlot,
Dgsi_service.cpp253 binder::Status GsiService::enableGsiAsync(bool one_shot, const std::string& dsuSlot, in enableGsiAsync() argument
256 auto status = enableGsi(one_shot, dsuSlot, &result); in enableGsiAsync()
265 binder::Status GsiService::enableGsi(bool one_shot, const std::string& dsuSlot, int* _aidl_return) { in enableGsi() argument
268 if (!WriteStringToFile(dsuSlot, kDsuActiveFile)) { in enableGsi()