|
#define | INSERT_ERROR_LOG_SEQ_DEC(seq, dec) log_seq_insert_error_log(LOGSEQ_OBJ, seq, LDT_DEC, (VOID_T*)(intptr_t)dec) |
|
#define | INSERT_ERROR_LOG_SEQ_HEX(seq, hex) log_seq_insert_error_log(LOGSEQ_OBJ, seq, LDT_HEX, (VOID_T*)(uintptr_t)hex) |
|
#define | INSERT_ERROR_LOG_SEQ_NULL(seq) log_seq_insert_error_log(LOGSEQ_OBJ, seq, LDT_NULL, NULL) |
|
#define | INSERT_ERROR_LOG_SEQ_STR(seq, str) log_seq_insert_error_log(LOGSEQ_OBJ, seq, LDT_STRING, (VOID_T*)str) |
|
#define | INSERT_ERROR_LOG_SEQ_TM(seq, tm) log_seq_insert_error_log(LOGSEQ_OBJ, seq, LDT_TIMESTAMP, (VOID_T*)tm) |
|
#define | INSERT_LOG_SEQ_DEC(seq, dec) log_seq_insert_log(LOGSEQ_OBJ, seq, LDT_DEC, (VOID_T*)(intptr_t)dec) |
|
#define | INSERT_LOG_SEQ_HEX(seq, hex) log_seq_insert_log(LOGSEQ_OBJ, seq, LDT_HEX, (VOID_T*)(uintptr_t)hex) |
|
#define | INSERT_LOG_SEQ_NULL(seq) log_seq_insert_log(LOGSEQ_OBJ, seq, LDT_NULL, NULL) |
|
#define | INSERT_LOG_SEQ_STR(seq, str) log_seq_insert_log(LOGSEQ_OBJ, seq, LDT_STRING, (VOID_T*)str) |
|
#define | INSERT_LOG_SEQ_TM(seq, tm) log_seq_insert_log(LOGSEQ_OBJ, seq, LDT_TIMESTAMP, (VOID_T*)tm) |
|
#define | INSERT_REPORT_LOG_SEQ_DEC(seq, dec) log_seq_insert_report_log(LOGSEQ_OBJ, seq, LDT_DEC, (VOID_T*)(intptr_t)dec) |
|
#define | INSERT_REPORT_LOG_SEQ_HEX(seq, hex) log_seq_insert_report_log(LOGSEQ_OBJ, seq, LDT_HEX, (VOID_T*)(uintptr_t)hex) |
|
#define | INSERT_REPORT_LOG_SEQ_NULL(seq) log_seq_insert_report_log(LOGSEQ_OBJ, seq, LDT_NULL, NULL) |
|
#define | INSERT_REPORT_LOG_SEQ_STR(seq, str) log_seq_insert_report_log(LOGSEQ_OBJ, seq, LDT_STRING, (VOID_T*)str) |
|
#define | INSERT_REPORT_LOG_SEQ_TM(seq, tm) log_seq_insert_report_log(LOGSEQ_OBJ, seq, LDT_TIMESTAMP, (VOID_T*)tm) |
|
#define | LDT_DEC 1 |
|
#define | LDT_HEX 2 |
|
#define | LDT_NULL 0 |
|
#define | LDT_STRING 4 |
|
#define | LDT_TIMESTAMP 3 |
|
#define | LS_DELIMITER " | " |
|
#define | LSS_INIT 0 |
|
#define | LSS_LOCKED 2 |
|
#define | LSS_RECORDING 1 |
|
#define | STR_DATA_MAX_LENGTH 64 |
|
|
int | log_seq_clean (int is_force_clean_all) |
| reset log sequence, clean all log sequence, this is used when device reset. 更多...
|
|
int | log_seq_force_sync (void) |
| force synchronization of log sequence . 更多...
|
|
int | log_seq_get_netcfg_log (char **log_buff, int *log_len) |
| get network configure log sequence. 更多...
|
|
int | log_seq_init (const char *log_seq_path) |
| initialize of log sequence. 更多...
|
|
int | log_seq_insert_error_log (const char *ls_name, BYTE_T id, LS_DATA_TP_T type, VOID_T *data) |
|
int | log_seq_insert_log (const char *ls_name, BYTE_T id, LS_DATA_TP_T type, VOID_T *data) |
|
int | log_seq_insert_report_log (const char *ls_name, BYTE_T id, LS_DATA_TP_T type, VOID_T *data) |
|
int | log_seq_set_depth (const unsigned int depth) |
| set log sequence depth. 更多...
|
|
int | log_seq_set_enable (bool_t enable) |
| enable or disable log sequence. 更多...
|
|
int | log_seq_set_force_report (bool_t enable) |
| enable or disable force report repeat 更多...
|
|
int | log_seq_upload_custom_log (const char *p_log) |
| upload customer log sequence . 更多...
|
|