/* * Copyright (C) 2024-2026 Huawei Device Co., Ltd. * 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. */ /** * @addtogroup OHIPCErrorCode * @{ * * @brief Provides IPC error codes. * * @syscap SystemCapability.Communication.IPC.Core * @since 12 */ /** * @file ipc_error_code.h * * @brief Defines the IPC error codes. * * @library libipc_capi.so * @kit IPCKit * @syscap SystemCapability.Communication.IPC.Core * @since 12 */ #ifndef CAPI_INCLUDE_IPC_ERROR_CODE_H #define CAPI_INCLUDE_IPC_ERROR_CODE_H /** * @brief Enumerates the IPC error codes. * * @since 12 */ typedef enum { /** * Execution successful. */ OH_IPC_SUCCESS = 0, /** * Start error code. */ OH_IPC_ERROR_CODE_BASE = 1901000, /** * Invalid parameter. */ OH_IPC_CHECK_PARAM_ERROR = OH_IPC_ERROR_CODE_BASE, /** * Failed to write data to the serialized object. */ OH_IPC_PARCEL_WRITE_ERROR = OH_IPC_ERROR_CODE_BASE + 1, /** * Failed to read data from the serialized object. */ OH_IPC_PARCEL_READ_ERROR = OH_IPC_ERROR_CODE_BASE + 2, /** * Failed to allocate memory. */ OH_IPC_MEM_ALLOCATOR_ERROR = OH_IPC_ERROR_CODE_BASE + 3, /** * The command word is out of the value range [0x01, 0x00ffffff]. */ OH_IPC_CODE_OUT_OF_RANGE = OH_IPC_ERROR_CODE_BASE + 4, /** * The remote object is dead. */ OH_IPC_DEAD_REMOTE_OBJECT = OH_IPC_ERROR_CODE_BASE + 5, /** * The custom error code is out of the range [1900001, 1999999]. */ OH_IPC_INVALID_USER_ERROR_CODE = OH_IPC_ERROR_CODE_BASE + 6, /** * IPC internal error. */ OH_IPC_INNER_ERROR = OH_IPC_ERROR_CODE_BASE + 7, /** * Maximum error code. */ OH_IPC_ERROR_CODE_MAX = OH_IPC_ERROR_CODE_BASE + 1000, /** * Minimum value for a custom error code. */ OH_IPC_USER_ERROR_CODE_MIN = 1909000, /** * Maximum value for a custom error code. */ OH_IPC_USER_ERROR_CODE_MAX = 1909999, } OH_IPC_ErrorCode; /** @} */ #endif