Searched defs:cb (Results 1 - 6 of 6) sorted by relevance

/system/wlan/ti/wilink_6_1/Txn/
H A DWspiBusDrv.c213 WSPI_CB_T cb; local
226 cb.CBFunc = ConnectDone_CB;/* The BusTxn callback called upon Async transaction end. */
227 cb.CBArg = hBusDrv; /* The handle for the BusDrv. */
230 iStatus = WSPI_Configure(pBusDrv->hWspi, pBusDrv->hReport, &wspi_config, &cb);
280 WSPI_CB_T cb; local
285 cb.CBFunc = asyncEnded_CB; /* The BusTxn callback called upon Async transaction end. */
286 cb.CBArg = hBusDrv; /* The handle for the BusTxnCB. */
304 pBusDrv->eCurrTxnStatus = WSPI_WriteAsync(pBusDrv->hWspi, pTxn->uHwAddr,tempWriteBuff,pTxn->aLen[0], &cb, TI_TRUE, TI_TRUE,TXN_PARAM_GET_FIXED_ADDR(pTxn));
319 pBusDrv->eCurrTxnStatus = WSPI_ReadAsync(pBusDrv->hWspi, pTxn->uHwAddr,tempReadBuff,pTxn->aLen[0], &cb, TI_TRUE, TI_TRUE,TXN_PARAM_GET_FIXED_ADDR(pTxn));
357 TRACE2(pBusDrv->hReport, REPORT_SEVERITY_INFORMATION,"asyncEnded_CB: Successful async cb don
[all...]
/system/core/libpixelflinger/
H A Draster.cpp59 surface_t* cb = &(c->state.buffers.color); local
62 if (uint32_t(xs) > cb->width)
64 if (uint32_t(ys) > cb->height)
66 if (uint32_t(xs + width) > cb->width)
68 if (uint32_t(ys + height) > cb->height)
105 const GGLFormat* fp = &(c->formats[cb->format]);
106 uint8_t* src = reinterpret_cast<uint8_t*>(cb->data)
107 + (xs + (cb->stride * ys)) * fp->size;
108 uint8_t* dst = reinterpret_cast<uint8_t*>(cb->data)
109 + (xd + (cb
[all...]
H A Dscanline.cpp724 surface_t* cb = &(c->state.buffers.depth); local
725 uint16_t* p = (uint16_t*)(cb->data)+(x+(cb->stride*y));
1269 surface_t* cb = &(c->state.buffers.color); local
1274 dst = reinterpret_cast<uint16_t*>(cb->data) + (x+(cb->stride*y));
1308 surface_t* cb = &(c->state.buffers.color); local
1313 dst = reinterpret_cast<uint16_t*>(cb->data) + (x+(cb->stride*y));
1363 surface_t* cb local
1403 surface_t* cb = &(c->state.buffers.color); local
1423 surface_t* cb = &(c->state.buffers.color); local
1434 surface_t* cb = &(c->state.buffers.color); local
1445 surface_t* cb = &(c->state.buffers.color); local
1456 surface_t* cb = &(c->state.buffers.color); local
1469 surface_t* cb = &(c->state.buffers.color); local
1494 surface_t* cb = &(c->state.buffers.color); local
[all...]
H A Dtrap.cpp454 surface_t* cb = &(c->state.buffers.color); local
455 const GGLFormat* fp = &(c->formats[cb->format]);
456 uint8_t* dst = reinterpret_cast<uint8_t*>(cb->data) +
457 (x + (cb->stride * y)) * fp->size;
/system/core/nexus/
H A DNetworkManager.cpp58 ControllerBinding *cb = new ControllerBinding(c); local
59 mControllerBindings->push_back(cb);
/system/wlan/ti/sta_dk_4_0_4_32/common/src/TNETW_Driver/TNETWIF/BusTxn/
H A Dwspi.c246 WSPI_CB_T* cb - callback
256 int WSPI_Configure (TI_HANDLE hWSPI, TI_HANDLE hReport, const WSPIConfig_t* aConfig, WSPI_CB_T* cb) argument
284 pWSPI->fCb = cb->CBFunc;
285 pWSPI->pCb = cb->CBArg;
371 * WSPI_CB_T cb - callback parameters
393 WSPI_CB_T cb = { (request_callback_t)WSPI_SyncOverAsyncCb, hWSPI }; local
404 WSPI_ReadAsync (hWSPI, address, data, length, &cb, 1, 0);
512 * WSPI_CB_T cb - callback parameters
523 int WSPI_ReadAsyncOld (TI_HANDLE hWSPI, UINT32 address, UINT8* data, UINT32 length, WSPI_CB_T* cb, BOOL bMore, BOOL bSpaceReserved) argument
596 pWSPI->fCb = cb
635 WSPI_CB_T cb = { (request_callback_t)WSPI_SyncOverAsyncCb, hWSPI }; local
734 WSPI_ReadAsync(TI_HANDLE hWSPI, UINT32 address, UINT8* data, UINT32 length, WSPI_CB_T* cb, BOOL bMore, BOOL bSpaceReserved) argument
1169 WSPI_WriteAsyncOld(TI_HANDLE hWSPI, UINT32 address, UINT8* data, UINT32 length, WSPI_CB_T* cb, BOOL bMore, BOOL bSpaceReserved) argument
1240 WSPI_WriteAsync(TI_HANDLE hWSPI, UINT32 address, UINT8* data, UINT32 length, WSPI_CB_T* cb, BOOL bMore, BOOL bSpaceReserved) argument
[all...]

Completed in 110 milliseconds