代码拉取完成,页面将自动刷新
同步操作将从 OpenHarmony/hiviewdfx_hiview_lite 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
/*
* Copyright (c) 2020 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.
*/
#ifndef HOS_LITE_HIVIEW_DEF_H
#define HOS_LITE_HIVIEW_DEF_H
#include "ohos_types.h"
#ifdef __cplusplus
#if __cplusplus
extern "C" {
#endif
#endif /* End of #ifdef __cplusplus */
#define HIVIEW_SERVICE "hiview"
#define LOG_INFO_HEAD 0xEC
#define EVENT_INFO_HEAD 0xEA
#define MS_PER_SECOND 1000
#define SECONDS_PER_DAY 86400
#define SECONDS_PER_HOUR 3600
#define SECONDS_PER_MINUTE 60
#define LOG_FMT_MAX_LEN 128
#define LOG_CONTENT_MAX_LEN 96
#define LOG_MODULE_NAME_LEN 16
#define LOG_TIME_STR_SIZE 10
#define TAIL_LINE_BREAK 2
#define READ_FILE_BUF_MAX_SIZE 1024
/**
* Event id : eventPrefix + eventId
* eventPrefix: 9520/9521/9522
* eventId: 0-65535
**/
#define FAULT_EVENT_PREFIX 9520
#define UE_EVENT_PREFIX 9521
#define STAT_EVENT_PREFIX 9522
typedef enum {
LOG_MULTI_PARA_0 = 0,
LOG_MULTI_PARA_1 = 1,
LOG_MULTI_PARA_2 = 2,
LOG_MULTI_PARA_3 = 3,
LOG_MULTI_PARA_4 = 4,
LOG_MULTI_PARA_5 = 5,
LOG_MULTI_PARA_MAX = 6
} LogMultiParaIndex;
#pragma pack(1)
typedef struct {
uint8 id;
const char *name; /* LOG_MODULE_NAME_LEN */
} HiLogModuleInfo;
typedef struct {
uint8 head;
uint8 module;
uint8 level : 4;
uint8 valueNumber : 4;
uint8 task;
uint32 time; /* seconds */
const char *fmt;
} HiLogCommon;
typedef struct {
HiLogCommon commonContent;
uint32 values[LOG_MULTI_PARA_MAX];
} HiLogContent;
#pragma pack()
typedef struct {
uint8 last : 1; /* Indicates whether the last parameter. */
uint8 id : 4;
uint8 len : 3;
} HiEventTag;
#ifdef __cplusplus
#if __cplusplus
}
#endif
#endif /* End of #ifdef __cplusplus */
#endif /* End of #ifndef HOS_LITE_HIVIEW_DEF_H */
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。