HomeSort by relevance Sort by last modified time
    Searched refs:hReport (Results 1 - 25 of 605) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /system/wlan/ti/sta_dk_4_0_4_32/common/src/utils/
report.h 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
    [all...]
report.c 93 INPUT: hReport - Report handle
102 TI_STATUS report_config(TI_HANDLE hReport, TI_HANDLE hOs, reportInitParams_t * init_params)
104 report_t *pReport = (report_t *)hReport;
217 report_setReportModuleTable( hReport, (tiUINT8 *)init_params->ModuleTable);
218 report_setReportSeverityTable( hReport, (tiUINT8 *)init_params->SeverityTable);
230 INPUT: hReport - report handle.
238 TI_STATUS report_unLoad(TI_HANDLE hReport)
240 report_t *pReport = (report_t *)hReport;
263 * I - hReport - Report handle \n
270 void report_setReportModule(TI_HANDLE hReport, tiUINT8 module_index
    [all...]
bufferPool.h 54 TI_HANDLE hReport; /**< handle to the report object */
  /hardware/ti/wlan/wl1271/utils/
report.h 344 #define TRACE0(hReport, level, str) \
345 do { if (hReport && (((TReport *)hReport)->aSeverityTable[level]) && (((TReport *)hReport)->aFileEnable[__FILE_ID__])) \
346 { os_Trace((((TReport *)hReport)->hOs), level, __FILE_ID__, __LINE__, 0); } } while(0)
348 #define TRACE1(hReport, level, str, p1) \
349 do { if (hReport && (((TReport *)hReport)->aSeverityTable[level]) && (((TReport *)hReport)->aFileEnable[__FILE_ID__])) \
350 { os_Trace((((TReport *)hReport)->hOs), level, __FILE_ID__, __LINE__, 1, (TI_UINT32)p1); } } while(0
    [all...]
GenSM.c 99 * \param hReport - handle to the report module
103 void genSM_Init (TI_HANDLE hGenSM, TI_HANDLE hReport)
108 pGenSM->hReport = hReport;
156 TRACE0(pGenSM->hReport, REPORT_SEVERITY_ERROR , "genSM_Event: Handle is NULL!!\n");
164 TRACE3(pGenSM->hReport, REPORT_SEVERITY_ERROR , "genSM_Event: module: %d received event %d, which is out of events boundry %d\n", pGenSM->uModuleLogIndex, uEvent, pGenSM->uEventNum);
168 TRACE3(pGenSM->hReport, REPORT_SEVERITY_ERROR , "genSM_Event: module: %d received event %d, when event %d is pending execution!\n", pGenSM->uModuleLogIndex, uEvent, pGenSM->uEvent);
182 TRACE1(pGenSM->hReport, REPORT_SEVERITY_INFORMATION , ": module: %d delaying execution of event \n", pGenSM->uModuleLogIndex);
194 TRACE4(pGenSM->hReport, REPORT_SEVERITY_INFORMATION, "genSM_Event: module %d <currentState = %d, event = %d> --> nextState = %d\n", pGenSM->uModuleLogIndex, pGenSM->uCurrentState, uEvent, pCell->uNextState);
228 TRACE0(pGenSM->hReport, REPORT_SEVERITY_ERROR , "genSM_GetCurrentState: Handle is NULL!!\n")
    [all...]
report.c 232 TI_STATUS report_SetDefaults (TI_HANDLE hReport, TReportInitParams *pInitParams)
234 if( (NULL == hReport) || (NULL == pInitParams))
239 report_SetReportFilesTable (hReport, (TI_UINT8 *)pInitParams->aFileEnable);
240 report_SetReportSeverityTable (hReport, (TI_UINT8 *)pInitParams->aSeverityTable);
248 TI_STATUS report_Unload (TI_HANDLE hReport)
250 TReport *pReport = (TReport *)hReport;
266 TI_STATUS report_SetReportModule(TI_HANDLE hReport, TI_UINT8 module_index)
268 if(NULL == hReport)
273 ((TReport *)hReport)->aFileEnable[module_index] = 1;
279 TI_STATUS report_ClearReportModule(TI_HANDLE hReport, TI_UINT8 module_index
    [all...]
  /system/wlan/ti/wilink_6_1/utils/
report.h 328 #define TRACE0(hReport, level, str) \
329 do { if (hReport && (((TReport *)hReport)->aSeverityTable[level]) && (((TReport *)hReport)->aFileEnable[__FILE_ID__])) \
330 { os_Trace((((TReport *)hReport)->hOs), level, __FILE_ID__, __LINE__, 0); } } while(0)
332 #define TRACE1(hReport, level, str, p1) \
333 do { if (hReport && (((TReport *)hReport)->aSeverityTable[level]) && (((TReport *)hReport)->aFileEnable[__FILE_ID__])) \
334 { os_Trace((((TReport *)hReport)->hOs), level, __FILE_ID__, __LINE__, 1, (TI_UINT32)p1); } } while(0
    [all...]
report.c 231 TI_STATUS report_SetDefaults (TI_HANDLE hReport, TReportInitParams *pInitParams)
233 if( (NULL == hReport) || (NULL == pInitParams))
238 report_SetReportFilesTable (hReport, (TI_UINT8 *)pInitParams->aFileEnable);
239 report_SetReportSeverityTable (hReport, (TI_UINT8 *)pInitParams->aSeverityTable);
247 TI_STATUS report_Unload (TI_HANDLE hReport)
249 TReport *pReport = (TReport *)hReport;
265 TI_STATUS report_SetReportModule(TI_HANDLE hReport, TI_UINT8 module_index)
267 if(NULL == hReport)
272 ((TReport *)hReport)->aFileEnable[module_index] = 1;
278 TI_STATUS report_ClearReportModule(TI_HANDLE hReport, TI_UINT8 module_index
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/BusAccess/Shm_Common/
shmDebug.c 138 WLAN_REPORT_REPLY(pWhalBus->hReport, HAL_CTRL_MODULE_LOG,
141 WLAN_REPORT_REPLY(pWhalBus->hReport, HAL_CTRL_MODULE_LOG,
146 WLAN_REPORT_REPLY(pWhalBus->hReport, HAL_CTRL_MODULE_LOG,
151 WLAN_REPORT_REPLY(pWhalBus->hReport, HAL_CTRL_MODULE_LOG,
156 WLAN_REPORT_REPLY(pWhalBus->hReport, HAL_CTRL_MODULE_LOG,
161 WLAN_REPORT_REPLY(pWhalBus->hReport, HAL_CTRL_MODULE_LOG,
166 WLAN_REPORT_REPLY(pWhalBus->hReport, HAL_CTRL_MODULE_LOG,
171 WLAN_REPORT_REPLY(pWhalBus->hReport, HAL_CTRL_MODULE_LOG,
176 WLAN_REPORT_REPLY(pWhalBus->hReport, HAL_CTRL_MODULE_LOG,
182 WLAN_REPORT_REPLY(pWhalBus->hReport, HAL_CTRL_MODULE_LOG,
    [all...]
shmUtils.h 50 void busUtils_PrintBuf (TI_HANDLE hReport, UINT8 *StrHead, UINT8 *pBuf, int Len);
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/TNETW_Driver/Data_Srv/Tx_Ctrl_Blk/
txCtrlBlk.h 57 TI_HANDLE hReport;
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/TNETW_Driver/MacServices/inc/
PowerAuthorization.h 70 int powerAutho_Configure(TI_HANDLE hPowerAutho, TI_HANDLE hReport, TI_HANDLE hHalCtrl, powerAutho_PowerPolicy_e aPowerPolicy);
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/core/data_ctrl/Ctrl/4X/
Concatenator.h 56 TI_HANDLE hReport;
67 TI_HANDLE hReport,
DeConcatenator.h 53 TI_HANDLE hReport;
62 TI_HANDLE hReport,
  /hardware/ti/wlan/wl1271/stad/src/Connection_Managment/
broadcastKeySM.c 144 TRACE0(pBroadcastKey->hReport, REPORT_SEVERITY_CONSOLE, "BCAST_KEY_SM: Error in unloading key derivation module\n");
151 TRACE0(pBroadcastKey->hReport, REPORT_SEVERITY_CONSOLE, "BCAST_KEY_SM: Error in unloading state machine\n");
182 TI_HANDLE hReport,
187 pBroadcastKey->hReport = hReport;
210 status = keyDerive_config(pBroadcastKey->pKeyDerive, pPaeConfig->broadcastSuite, pParent, hReport, hOs);
218 TRACE0(pBroadcastKey->hReport, REPORT_SEVERITY_ERROR, "BROADCAST_KEY_SM: ERROR: UnExpected Event\n");
unicastKeySM.c 141 TRACE0(pUnicastKey->hReport, REPORT_SEVERITY_CONSOLE,"BCAST_KEY_SM: Error in unloading key derivation module\n");
148 TRACE0(pUnicastKey->hReport, REPORT_SEVERITY_CONSOLE,"BCAST_KEY_SM: Error in unloading state machine\n");
179 TI_HANDLE hReport,
184 pUnicastKey->hReport = hReport;
207 status = keyDerive_config(pUnicastKey->pKeyDerive, pPaeConfig->unicastSuite, pParent, hReport, hOs);
215 TRACE0(pUnicastKey->hReport, REPORT_SEVERITY_ERROR, "UNICAST_KEY_SM: ERROR: UnExpected Event\n");
keyDerive.h 75 TI_HANDLE hReport;
95 TI_HANDLE hReport,
  /system/wlan/ti/wilink_6_1/stad/src/Connection_Managment/
broadcastKeySM.c 144 TRACE0(pBroadcastKey->hReport, REPORT_SEVERITY_CONSOLE, "BCAST_KEY_SM: Error in unloading key derivation module\n");
151 TRACE0(pBroadcastKey->hReport, REPORT_SEVERITY_CONSOLE, "BCAST_KEY_SM: Error in unloading state machine\n");
182 TI_HANDLE hReport,
187 pBroadcastKey->hReport = hReport;
210 status = keyDerive_config(pBroadcastKey->pKeyDerive, pPaeConfig->broadcastSuite, pParent, hReport, hOs);
218 TRACE0(pBroadcastKey->hReport, REPORT_SEVERITY_ERROR, "BROADCAST_KEY_SM: ERROR: UnExpected Event\n");
unicastKeySM.c 141 TRACE0(pUnicastKey->hReport, REPORT_SEVERITY_CONSOLE,"BCAST_KEY_SM: Error in unloading key derivation module\n");
148 TRACE0(pUnicastKey->hReport, REPORT_SEVERITY_CONSOLE,"BCAST_KEY_SM: Error in unloading state machine\n");
179 TI_HANDLE hReport,
184 pUnicastKey->hReport = hReport;
207 status = keyDerive_config(pUnicastKey->pKeyDerive, pPaeConfig->unicastSuite, pParent, hReport, hOs);
215 TRACE0(pUnicastKey->hReport, REPORT_SEVERITY_ERROR, "UNICAST_KEY_SM: ERROR: UnExpected Event\n");
  /hardware/ti/wlan/wl1271/TWD/MacServices/
measurementSrvDbgPrint.c 63 TRACE0( pMeasurementSRV->hReport, REPORT_SEVERITY_INFORMATION, "Measurement request:\n");
64 TRACE5( pMeasurementSRV->hReport, REPORT_SEVERITY_INFORMATION, "band: %d, channel:%d, TX power level: %d, start time: %x-%x\n", pMsrRequest->band, pMsrRequest->channel, pMsrRequest->txPowerDbm, INT64_HIGHER(pMsrRequest->startTime), INT64_LOWER(pMsrRequest->startTime));
87 TRACE4( pMeasurementSRV->hReport, REPORT_SEVERITY_INFORMATION, "Measurement type request: type: %d, duration:%d, scan mode: %d, reserved: %d", pMsrTypeRequest->msrType, pMsrTypeRequest->duration, pMsrTypeRequest->scanMode, pMsrTypeRequest->reserved);
  /hardware/ti/wlan/wl1271/Txn/
WspiBusDrv.c 66 TI_HANDLE hReport;
160 * hReport - handle to report module context that is used when we output debug messages
169 TI_HANDLE hReport)
175 pBusDrv->hReport = hReport;
230 iStatus = WSPI_Configure(pBusDrv->hWspi, pBusDrv->hReport, &wspi_config, &cb);
235 TRACE1 (pBusDrv->hReport, REPORT_SEVERITY_INIT, "busDrv_ConnectBus: called Status %d\n",iStatus);
238 TRACE2 (pBusDrv->hReport, REPORT_SEVERITY_INFORMATION, "busDrv_ConnectBus: Successful Status %d\n",iStatus);
243 TRACE2(pBusDrv->hReport, REPORT_SEVERITY_ERROR, "busDrv_ConnectBus: Status = %d,\n", iStatus);
292 //WLAN_REPORT_INIT(pBusDrv->hReport, TNETW_DRV_MODULE_LOG
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/TNETW_Driver/MacServices/src/MeasurementSRV/
measurementSrvDbgPrint.c 85 WLAN_REPORT_INFORMATION( pMeasurementSRV->hReport, MEASUREMENT_SRV_MODULE_LOG,
87 WLAN_REPORT_INFORMATION( pMeasurementSRV->hReport, MEASUREMENT_SRV_MODULE_LOG,
113 WLAN_REPORT_INFORMATION( pMeasurementSRV->hReport, MEASUREMENT_SRV_MODULE_LOG,
  /system/wlan/ti/wilink_6_1/TWD/MacServices/
measurementSrvDbgPrint.c 63 TRACE0( pMeasurementSRV->hReport, REPORT_SEVERITY_INFORMATION, "Measurement request:\n");
64 TRACE5( pMeasurementSRV->hReport, REPORT_SEVERITY_INFORMATION, "band: %d, channel:%d, TX power level: %d, start time: %x-%x\n", pMsrRequest->band, pMsrRequest->channel, pMsrRequest->txPowerDbm, INT64_HIGHER(pMsrRequest->startTime), INT64_LOWER(pMsrRequest->startTime));
87 TRACE4( pMeasurementSRV->hReport, REPORT_SEVERITY_INFORMATION, "Measurement type request: type: %d, duration:%d, scan mode: %d, reserved: %d", pMsrTypeRequest->msrType, pMsrTypeRequest->duration, pMsrTypeRequest->scanMode, pMsrTypeRequest->reserved);
  /system/wlan/ti/wilink_6_1/Txn/
WspiBusDrv.c 66 TI_HANDLE hReport;
160 * hReport - handle to report module context that is used when we output debug messages
169 TI_HANDLE hReport)
175 pBusDrv->hReport = hReport;
230 iStatus = WSPI_Configure(pBusDrv->hWspi, pBusDrv->hReport, &wspi_config, &cb);
235 TRACE1 (pBusDrv->hReport, REPORT_SEVERITY_INIT, "busDrv_ConnectBus: called Status %d\n",iStatus);
238 TRACE2 (pBusDrv->hReport, REPORT_SEVERITY_INFORMATION, "busDrv_ConnectBus: Successful Status %d\n",iStatus);
243 TRACE2(pBusDrv->hReport, REPORT_SEVERITY_ERROR, "busDrv_ConnectBus: Status = %d,\n", iStatus);
292 //WLAN_REPORT_INIT(pBusDrv->hReport, TNETW_DRV_MODULE_LOG
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/hal/hl_ctrl/
whalRadio.c 122 WLAN_REPORT_ERROR(pWhalCtrl->hReport, HAL_CTRL_MODULE_LOG,
152 WLAN_REPORT_INFORMATION (pWhalCtrl->hReport, HAL_CTRL_MODULE_LOG,
158 WLAN_REPORT_INFORMATION (pWhalCtrl->hReport, HAL_CTRL_MODULE_LOG,
164 WLAN_REPORT_INFORMATION (pWhalCtrl->hReport, HAL_CTRL_MODULE_LOG,
170 WLAN_REPORT_INFORMATION (pWhalCtrl->hReport, HAL_CTRL_MODULE_LOG,
177 WLAN_REPORT_INFORMATION (pWhalCtrl->hReport, HAL_CTRL_MODULE_LOG,

Completed in 495 milliseconds

1 2 3 4 5 6 7 8 91011>>