Home
last modified time | relevance | path

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

/frameworks/base/apex/appsearch/service/java/com/android/server/appsearch/external/localstorage/
DAppSearchImpl.java2144 private static void checkSuccess(StatusProto statusProto) throws AppSearchException { in checkSuccess() argument
2145 checkCodeOneOf(statusProto, StatusProto.Code.OK); in checkSuccess()
2152 private static void checkCodeOneOf(StatusProto statusProto, StatusProto.Code... codes) in checkCodeOneOf() argument
2155 if (codes[i] == statusProto.getCode()) { in checkCodeOneOf()
2161 if (statusProto.getCode() == StatusProto.Code.WARNING_DATA_LOSS) { in checkCodeOneOf()
2164 Log.w(TAG, "Encountered WARNING_DATA_LOSS: " + statusProto.getMessage()); in checkCodeOneOf()
2169 ResultCodeToProtoConverter.toResultCode(statusProto.getCode()), in checkCodeOneOf()
2170 statusProto.getMessage()); in checkCodeOneOf()
2296 @NonNull StatusProto statusProto) { in statusProtoToResultCode()
2297 return ResultCodeToProtoConverter.toResultCode(statusProto.getCode()); in statusProtoToResultCode()