Home
last modified time | relevance | path

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

/packages/modules/AppSearch/service/java/com/android/server/appsearch/external/localstorage/
DAppSearchImpl.java2712 private static void checkSuccess(StatusProto statusProto) throws AppSearchException { in checkSuccess() argument
2713 checkCodeOneOf(statusProto, StatusProto.Code.OK); in checkSuccess()
2720 private static void checkCodeOneOf(StatusProto statusProto, StatusProto.Code... codes) in checkCodeOneOf() argument
2723 if (codes[i] == statusProto.getCode()) { in checkCodeOneOf()
2729 if (statusProto.getCode() == StatusProto.Code.WARNING_DATA_LOSS) { in checkCodeOneOf()
2732 Log.w(TAG, "Encountered WARNING_DATA_LOSS: " + statusProto.getMessage()); in checkCodeOneOf()
2737 ResultCodeToProtoConverter.toResultCode(statusProto.getCode()), in checkCodeOneOf()
2738 statusProto.getMessage()); in checkCodeOneOf()
2887 private static int statusProtoToResultCode(@NonNull StatusProto statusProto) { in statusProtoToResultCode() argument
2888 return ResultCodeToProtoConverter.toResultCode(statusProto.getCode()); in statusProtoToResultCode()