Searched refs:hIpcSta (Results 1 – 7 of 7) sorted by relevance
/hardware/ti/wlan/wl1271/CUDK/configurationutility/src/ |
D | cu_common.c | 50 THandle hIpcSta; member 79 pCuCommon->hIpcSta = IpcSta_Create(device_name); in CuCommon_Create() 80 if(pCuCommon->hIpcSta == NULL) in CuCommon_Create() 85 *pIpcSta = pCuCommon->hIpcSta; in CuCommon_Create() 94 if(pCuCommon->hIpcSta) in CuCommon_Destroy() 95 IpcSta_Destroy(pCuCommon->hIpcSta); in CuCommon_Destroy() 105 res = IPC_STA_Private_Send(pCuCommon->hIpcSta, PrivateIoctlId, &Data, sizeof(U32), in CuCommon_SetU32() 119 res = IPC_STA_Private_Send(pCuCommon->hIpcSta, PrivateIoctlId, NULL, 0, in CuCommon_GetU32() 133 res = IPC_STA_Private_Send(pCuCommon->hIpcSta, PrivateIoctlId, &Data, sizeof(U16), in CuCommon_SetU16() 147 res = IPC_STA_Private_Send(pCuCommon->hIpcSta, PrivateIoctlId, &Data, sizeof(U8), in CuCommon_SetU8() [all …]
|
D | cu_cmd.c | 841 THandle hIpcSta; in CuCmd_Create() local 853 pCuCmd->hCuCommon= CuCommon_Create(&hIpcSta, device_name); in CuCmd_Create() 860 pCuCmd->hCuWext= CuOs_Create(hIpcSta); in CuCmd_Create()
|
/hardware/ti/wlan/wl1271/CUDK/os/linux/src/ |
D | cu_wext.c | 55 THandle hIpcSta; member 157 THandle CuOs_Create(THandle hIpcSta) in CuOs_Create() argument 166 pCuWext->hIpcSta = hIpcSta; in CuOs_Create() 189 …res = IPC_STA_Wext_Send(pCuWext->hIpcSta, SIOCGIWESSID, &pCuWext->req_data, sizeof(struct iw_point… in CuOs_Get_SSID() 205 … res = IPC_STA_Wext_Send(pCuWext->hIpcSta, SIOCGIWAP, &pCuWext->req_data, sizeof(struct sockaddr)); in CuOs_Get_BSSID() 222 …res = IPC_STA_Wext_Send(pCuWext->hIpcSta, SIOCGIWFREQ, &pCuWext->req_data, sizeof(struct iw_freq … in CuOs_GetCurrentChannel() 241 …res = IPC_STA_Wext_Send(pCuWext->hIpcSta, SIOCGIWSTATS, &pCuWext->req_data, sizeof(struct iw_stati… in CuOs_GetCurrentStats() 283 …res = IPC_STA_Wext_Send(pCuWext->hIpcSta, SIOCSIWSCAN, &pCuWext->req_data, sizeof(struct iw_point)… in CuOs_Start_Scan() 310 …res = IPC_STA_Wext_Send(pCuWext->hIpcSta, SIOCGIWSCAN, &pCuWext->req_data, sizeof(struct iw_point)… in CuOs_GetBssidList() 357 … res = IPC_STA_Wext_Send(pCuWext->hIpcSta, SIOCSIWAP, &pCuWext->req_data, sizeof(struct sockaddr)); in CuOs_Set_BSSID() [all …]
|
D | ipc_sta.c | 134 VOID IpcSta_Destroy(THandle hIpcSta) in IpcSta_Destroy() argument 136 IpcSta_t* pIpcSta = (IpcSta_t*)hIpcSta; in IpcSta_Destroy() 144 S32 IPC_STA_Private_Send(THandle hIpcSta, U32 ioctl_cmd, PVOID bufIn, U32 sizeIn, in IPC_STA_Private_Send() argument 148 IpcSta_t* pIpcSta = (IpcSta_t*)hIpcSta; in IPC_STA_Private_Send() 177 S32 IPC_STA_Wext_Send(THandle hIpcSta, U32 wext_request_id, PVOID p_iwreq_data, U32 len) in IPC_STA_Wext_Send() argument 179 IpcSta_t* pIpcSta = (IpcSta_t*)hIpcSta; in IPC_STA_Wext_Send()
|
/hardware/ti/wlan/wl1271/CUDK/os/linux/inc/ |
D | ipc_sta.h | 39 VOID IpcSta_Destroy(THandle hIpcSta); 40 S32 IPC_STA_Private_Send(THandle hIpcSta, U32 ioctl_cmd, PVOID bufIn, U32 sizeIn, PVOID bufOut, U32… 41 S32 IPC_STA_Wext_Send(THandle hIpcSta, U32 wext_request_id, PVOID p_iwreq_data, U32 len);
|
D | cu_os.h | 44 THandle CuOs_Create(THandle hIpcSta);
|
/hardware/ti/wlan/wl1271/CUDK/tiwlan_loader/ |
D | tiwlan_loader.c | 66 THandle hIpcSta; in init_driver() local 75 hIpcSta = IpcSta_Create(adapter_name); in init_driver() 76 if (hIpcSta == NULL) in init_driver() 148 …if(EOALERR_IPC_STA_ERROR_SENDING_WEXT == IPC_STA_Private_Send(hIpcSta, DRIVER_INIT_PARAM, init_inf… in init_driver() 166 if (hIpcSta) in init_driver() 167 IpcSta_Destroy(hIpcSta); in init_driver()
|