Lines Matching refs:hReport

79 #define WLAN_REPORT_INIT(hReport, module, msg)                        \
80 do { if (hReport && (((report_t *)hReport)->SeverityTable[WLAN_SEVERITY_INIT]) && (((report_t *)hReport)->ModuleTable[module])) \
81 { os_report ("$B%c%s,INIT:", ((char)module + 'A'), ((report_t *)hReport)->moduleDesc[module]); os_report msg; } } while(0)
82 #define WLAN_REPORT_INFORMATION(hReport, module, msg) \
83 do { if (hReport && (((report_t *)hReport)->SeverityTable[WLAN_SEVERITY_INFORMATION]) && (((report_t *)hReport)->ModuleTable[module])) \
84 { os_report ("$C%c%s,INFORMATION:", ((char)module + 'A'), ((report_t *)hReport)->moduleDesc[module]); os_report msg; } } while(0)
85 #define WLAN_REPORT_WARNING(hReport, module, msg) \
86 do { if (hReport && ((report_t *)hReport)->SeverityTable[WLAN_SEVERITY_WARNING]) \
87 { os_report ("$D%c%s,WARNING:", ((char)module + 'A'), ((report_t *)hReport)->moduleDesc[module]); os_report msg; } } while(0)
88 #define WLAN_REPORT_ERROR(hReport, module, msg) \
89 do { if (hReport && ((report_t *)hReport)->SeverityTable[WLAN_SEVERITY_ERROR]) \
90 { os_report ("$E%c%s,ERROR:", ((char)module + 'A'), ((report_t *)hReport)->moduleDesc[module]); os_report msg; } } while(0)
91 #define WLAN_REPORT_FATAL_ERROR(hReport, module, msg) \
92 do { if (hReport && (((report_t *)hReport)->SeverityTable[WLAN_SEVERITY_FATAL_ERROR]) && (((report_t *)hReport)->ModuleTable[module])) \
93 { os_report ("$F%c%s,FATAL ERROR:", ((char)module + 'A'), ((report_t *)hReport)->moduleDesc[module]); os_report msg; } } while(0)
94 #define WLAN_REPORT_SM(hReport, module, msg) \
95 do { if (hReport && ((report_t *)hReport)->SeverityTable[WLAN_SEVERITY_SM]) \
96 { os_report ("$G%c%s,SM:", ((char)module + 'A'), ((report_t *)hReport)->moduleDesc[module]); os_report msg; } } while(0)
97 #define WLAN_REPORT_CONSOLE(hReport, module, msg) \
98 do { if (hReport && (((report_t *)hReport)->SeverityTable[WLAN_SEVERITY_CONSOLE]) && (((report_t *)hReport)->ModuleTable[module])) \
99 { os_report ("$H%c%s,CONSOLE:", ((char)module + 'A'), ((report_t *)hReport)->moduleDesc[module]); os_report msg; } } while(0)
100 #define WLAN_REPORT_DEBUG_RX(hReport, msg) \
101 do { if (hReport && ((report_t *)hReport)->SeverityTable[WLAN_SEVERITY_DEBUG_RX]) \
103 #define WLAN_REPORT_DEBUG_TX(hReport, msg) \
104 do { if (hReport && ((report_t *)hReport)->SeverityTable[WLAN_SEVERITY_DEBUG_TX]) \
106 #define WLAN_REPORT_DEBUG_CONTROL(hReport, msg) \
107 do { if (hReport && ((report_t *)hReport)->SeverityTable[WLAN_SEVERITY_DEBUG_CONTROL]) \
109 #define WLAN_REPORT_GWSI_RECORDING(hReport, msg) \
110 do { if (hReport && ((report_t *)hReport)->SeverityTable[WLAN_SEVERITY_GWSI_RECORDING]) \
112 #define WLAN_REPORT_HEX_INFORMATION(hReport, module, data, datalen) \
113 do { if (hReport && (((report_t *)hReport)->SeverityTable[WLAN_SEVERITY_INFORMATION]) && (((report_t *)hReport)->ModuleTable[module])) \
115 #define WLAN_REPORT_MSDU_INFORMATION(hReport, module, pMsdu, title) \
116 do { if (hReport && (((report_t *)hReport)->SeverityTable[WLAN_SEVERITY_INFORMATION]) && (((report_t *)hReport)->ModuleTable[module])) \
134 #define WLAN_REPORT_INIT(hReport,module,msg) \
135 do { if (hReport == NULL) { } } while (0)
136 #define WLAN_REPORT_INFORMATION(hReport,module,msg) \
137 do { if (hReport == NULL) { } } while (0)
138 #define WLAN_REPORT_WARNING(hReport,module,msg) \
139 do { if (hReport == NULL) { } } while (0)
140 #define WLAN_REPORT_ERROR(hReport,module,msg) \
141 do { if (hReport == NULL) { } } while (0)
142 #define WLAN_REPORT_FATAL_ERROR(hReport,module,msg) \
143 do { if (hReport == NULL) { } } while (0)
144 #define WLAN_REPORT_SM(hReport,module,msg) \
145 do { if (hReport == NULL) { } } while (0)
146 #define WLAN_REPORT_CONSOLE(hReport,module,msg) \
147 do { if (hReport == NULL) { } } while (0)
148 #define WLAN_REPORT_HEX_INFORMATION(hReport,module,data,datalen) \
149 do { if (hReport == NULL) { } } while (0)
150 #define WLAN_REPORT_DEBUG_RX(hReport,msg) \
151 do { if (hReport == NULL) { } } while (0)
152 #define WLAN_REPORT_DEBUG_TX(hReport,msg) \
153 do { if (hReport == NULL) { } } while (0)
154 #define WLAN_REPORT_DEBUG_CONTROL(hReport,msg) \
155 do { if (hReport == NULL) { } } while (0)
156 #define WLAN_REPORT_GWSI_RECORDING(hReport,msg) \
157 do { if (hReport == NULL) { } } while (0)
158 #define WLAN_REPORT_MSDU_INFORMATION(hReport,module,pMsdu,title) \
159 do { if (hReport == NULL) { } } while (0)
170 TI_STATUS report_config (TI_HANDLE hReport, TI_HANDLE hOs, reportInitParams_t * init_params);
171 TI_STATUS report_unLoad (TI_HANDLE hReport);
173 void report_setReportModule (TI_HANDLE hReport, tiUINT8 module_index);
174 void report_clearReportModule (TI_HANDLE hReport, tiUINT8 module_index);
175 void report_getReportModuleTable (TI_HANDLE hReport, tiUINT8 *pModules);
176 void report_setReportModuleTable (TI_HANDLE hReport, tiUINT8 *pModules);
177 void report_setReportSeverity (TI_HANDLE hReport, tiUINT8 severity_index);
178 void report_clearReportSeverity (TI_HANDLE hReport, tiUINT8 severity_index);
179 void report_getReportSeverityTable (TI_HANDLE hReport, tiUINT8 *pSeverities);
180 void report_setReportSeverityTable (TI_HANDLE hReport, tiUINT8 *pSeverities);
181 TI_STATUS report_setParam (TI_HANDLE hReport, whalParamInfo_t *pParam);
182 TI_STATUS report_getParam (TI_HANDLE hReport, whalParamInfo_t *pParam);