Searched defs:status (Results 26 - 50 of 252) sorted by relevance

1234567891011

/system/wlan/ti/wilink_6_1/stad/src/Connection_Managment/
H A DkeyDeriveCkip.c110 TI_STATUS status; local
161 status = pKeyDerive->pMainKeys->setKey(pKeyDerive->pMainKeys, &key);
162 if (status == TI_OK)
167 return status;
190 TI_STATUS status; local
199 status = pKeyDerive->pMainKeys->removeKey(pKeyDerive->pMainKeys, &key);
200 if (status == TI_OK)
205 return status;
H A DkeyDeriveWep.c106 TI_STATUS status; local
127 status = pKeyDerive->pMainKeys->setKey(pKeyDerive->pMainKeys, &key);
128 if (status == TI_OK)
133 return status;
156 TI_STATUS status; local
165 status = pKeyDerive->pMainKeys->removeKey(pKeyDerive->pMainKeys, &key);
166 if (status == TI_OK)
171 return status;
H A DkeyParserWep.c119 TI_STATUS status; local
161 status = pKeyParser->pParent->setDefaultKeyId(pKeyParser->pParent, (TI_UINT8)securityKey.keyIndex);
162 if (status!=TI_OK)
164 return status;
168 status = pKeyParser->pParent->setKey(pKeyParser->pParent, &securityKey);
170 return status;
177 TI_STATUS status; local
202 status = pKeyParser->pBcastKey->pKeyDerive->remove(pKeyParser->pUcastKey->pKeyDerive, &encodedKeyMaterial);
203 return status;
H A DmainSecNull.c130 TI_STATUS status; local
132 status = rsn_reportStatus(pMainSec->pParent, TI_OK);
134 return status;
H A DunicastKeySM.c83 TI_STATUS status; local
96 status = fsm_Create(hOs, &pUnicastKey->pUcastKeySm, UCAST_KEY_MAX_NUM_STATES, UCAST_KEY_MAX_NUM_EVENTS);
97 if (status != TI_OK)
136 TI_STATUS status; local
138 status = keyDerive_unload(pUnicastKey->pKeyDerive);
139 if (status != TI_OK)
145 status = fsm_Unload(pUnicastKey->hOs, pUnicastKey->pUcastKeySm);
146 if (status != TI_OK)
182 TI_STATUS status = TI_NOK; local
192 status
[all...]
H A DadmCtrlNone.c101 TI_STATUS status; local
144 status = pAdmCtrl->pRsn->setPaeConfig(pAdmCtrl->pRsn, &paeConfig);
150 status = TWD_SetParam(pAdmCtrl->pRsn->hTWD, &tTwdParam);
154 status = TWD_SetParam(pAdmCtrl->pRsn->hTWD, &tTwdParam);
157 return status;
212 TI_STATUS status; local
223 { /* Configure Security status in HAL */
226 status = TWD_SetParam(pAdmCtrl->pRsn->hTWD, &tTwdParam);
256 status = mlme_setParam(pAdmCtrl->hMlme, &param);
257 if (status !
[all...]
H A DadmCtrlWep.c107 TI_STATUS status; local
143 status = pAdmCtrl->pRsn->setPaeConfig(pAdmCtrl->pRsn, &paeConfig);
145 return status;
203 TI_STATUS status; local
227 { /* Configure Security status in HAL */
230 status = TWD_SetParam(pAdmCtrl->pRsn->hTWD, &tTwdParam);
267 status = mlme_setParam(pAdmCtrl->hMlme, &param);
268 if (status != TI_OK)
270 return status;
275 status
[all...]
H A DkeyParserExternal.c123 TI_STATUS status; local
158 status = ctrlData_getParam(pKeyParser->hCtrlData, &macParam);
160 if (status != TI_OK)
270 status = pKeyParser->pUcastKey->recvSuccess(pKeyParser->pUcastKey, &encodedKeyMaterial);
291 status = TI_OK; /* pKeyParser->pBcastKey->saveKey(pKeyParser->pBcastKey, &encodedKey);*/
301 status = pKeyParser->pBcastKey->recvSuccess(pKeyParser->pBcastKey, &encodedKeyMaterial);
315 status = pKeyParser->pBcastKey->recvSuccess(pKeyParser->pBcastKey, &encodedKeyMaterial);
323 status = pKeyParser->pUcastKey->recvSuccess(pKeyParser->pUcastKey, &encodedKeyMaterial);
329 return status;
337 TI_STATUS status; local
[all...]
H A DunicastKey802_1x.c101 TI_STATUS status = TI_NOK; local
136 status = fsm_Config(pUnicastKey->pUcastKeySm,
143 return status;
170 TI_STATUS status; local
173 status = fsm_GetNextState(pUnicastKey->pUcastKeySm, pUnicastKey->currentState, event, &nextState);
174 if (status != TI_OK)
182 status = fsm_Event(pUnicastKey->pUcastKeySm, &pUnicastKey->currentState, event, pData);
184 return status;
208 TI_STATUS status; local
210 status
236 TI_STATUS status; local
264 TI_STATUS status; local
293 TI_STATUS status; local
319 TI_STATUS status=TI_NOK; local
[all...]
/system/wlan/ti/wilink_6_1/stad/src/Sta_Management/
H A DScanCncnApp.c60 * \return operation status (OK / NOK / PARAM_NOT_SUPPORTED)
200 * \return operation status (OK / NOK / PARAM_NOT_SUPPORTED)
239 * \param status - the scan result status (scan complete, result received etc.)
244 void scanCncn_AppScanResultCB (TI_HANDLE hScanCncn, EScanCncnResultStatus status, argument
251 sme_AppScanResult (pScanCncn->hSme, status, frameInfo);
253 switch (status)
265 TRACE1(pScanCncn->hReport, REPORT_SEVERITY_INFORMATION , "scanCncn_AppScanResultCB, received scan complete with status :%d\n", status);
284 statusData = SCAN_STATUS_COMPLETE; /* Completed status */
[all...]
H A DmlmeBuilder.c83 TI_STATUS status; local
103 status = mlmeBuilder_buildFrameCtrl (pHandle, type, (TI_UINT16 *)&pDot11Header->fc, setWepOpt);
104 if (status != TI_OK)
110 status = ctrlData_getParamBssid(pHandle->hCtrlData, CTRL_DATA_CURRENT_BSSID_PARAM, daBssid);
111 if (status != TI_OK)
120 status = ctrlData_getParamBssid(pHandle->hCtrlData, CTRL_DATA_MAC_ADDRESS, saBssid);
121 if (status != TI_OK)
144 status = txMgmtQ_Xmit (pHandle->hTxMgmtQ, pPktCtrlBlk, TI_FALSE); local
146 return status;
/system/core/fastboot/
H A Dprotocol.c46 unsigned char status[65]; local
50 r = usb_read(usb, status, 64);
52 sprintf(ERROR, "status read failed (%s)", strerror(errno));
56 status[r] = 0;
59 sprintf(ERROR, "status malformed (%d bytes)", r);
64 if(!memcmp(status, "INFO", 4)) {
65 fprintf(stderr,"(bootloader) %s\n", status + 4);
69 if(!memcmp(status, "OKAY", 4)) {
71 strcpy(response, (char*) status + 4);
76 if(!memcmp(status, "FAI
[all...]
/system/core/init/
H A Dsignal_handler.c47 int status; local
54 while ( (pid = waitpid(-1, &status, block ? 0 : WNOHANG)) == -1 && errno == EINTR );
56 INFO("waitpid returned pid %d, status = %08x\n", pid, status);
/system/wlan/ti/sta_dk_4_0_4_32/common/src/core/rsn/
H A DadmCtrlNone.c106 TI_STATUS status; local
149 status = pAdmCtrl->pRsn->setPaeConfig(pAdmCtrl->pRsn, &paeConfig);
155 status = whalCtrl_SetParam(pAdmCtrl->pRsn->hWhalCtrl, &whalParam);
159 status = whalCtrl_SetParam(pAdmCtrl->pRsn->hWhalCtrl, &whalParam);
162 return status;
217 TI_STATUS status; local
228 { /* Configure Security status in HAL */
231 status = whalCtrl_SetParam(pAdmCtrl->pRsn->hWhalCtrl, &whalParam);
261 status = mlme_setParam(pAdmCtrl->hMlme, &param);
262 if (status !
[all...]
H A DadmCtrlWep.c112 TI_STATUS status; local
148 status = pAdmCtrl->pRsn->setPaeConfig(pAdmCtrl->pRsn, &paeConfig);
150 return status;
208 TI_STATUS status; local
232 { /* Configure Security status in HAL */
235 status = whalCtrl_SetParam(pAdmCtrl->pRsn->hWhalCtrl, &whalParam);
273 status = mlme_setParam(pAdmCtrl->hMlme, &param);
274 if (status != OK)
276 return status;
281 status
[all...]
H A DkeyParserExternal.c124 TI_STATUS status; local
160 status = ctrlData_getParam(pKeyParser->hCtrlData, &macParam);
162 if (status != OK)
280 status = pKeyParser->pUcastKey->recvSuccess(pKeyParser->pUcastKey, &encodedKeyMaterial);
303 status = OK; /* pKeyParser->pBcastKey->saveKey(pKeyParser->pBcastKey, &encodedKey);*/
313 status = pKeyParser->pBcastKey->recvSuccess(pKeyParser->pBcastKey, &encodedKeyMaterial);
327 status = pKeyParser->pBcastKey->recvSuccess(pKeyParser->pBcastKey, &encodedKeyMaterial);
335 status = pKeyParser->pUcastKey->recvSuccess(pKeyParser->pUcastKey, &encodedKeyMaterial);
341 return status;
349 TI_STATUS status; local
[all...]
H A DmainSecSm.c119 TI_STATUS status; local
131 status = fsm_Create(hOs, &pHandle->pMainSecSm, MAIN_SEC_MAX_NUM_STATES, MAIN_SEC_MAX_NUM_EVENTS);
132 if (status != OK)
182 TI_STATUS status; local
200 status = mainSecSmNull_config(pMainSec, pInitData->pPaeConfig);
203 status = mainSecKeysOnly_config(pMainSec, pInitData->pPaeConfig);
206 status = mainSecSmNull_config(pMainSec, pInitData->pPaeConfig);
210 status = mainKeys_config(pMainSec->pMainKeys, pInitData->pPaeConfig, pMainSec, pMainSec->hReport, pMainSec->hOs,
212 if (status != OK)
216 return status;
245 TI_STATUS status; local
293 TI_STATUS status = OK; local
336 TI_STATUS status = OK; local
375 TI_STATUS status = OK; local
[all...]
H A DunicastKey802_1x.c102 TI_STATUS status = NOK; local
137 status = fsm_Config(pUnicastKey->pUcastKeySm,
144 return status;
188 TI_STATUS status; local
191 status = fsm_GetNextState(pUnicastKey->pUcastKeySm, pUnicastKey->currentState, event, &nextState);
192 if (status != OK)
205 status = fsm_Event(pUnicastKey->pUcastKeySm, &pUnicastKey->currentState, event, pData);
207 return status;
231 TI_STATUS status; local
233 status
259 TI_STATUS status; local
287 TI_STATUS status; local
316 TI_STATUS status; local
342 TI_STATUS status=NOK; local
[all...]
/system/wlan/ti/sta_dk_4_0_4_32/common/src/utils/
H A Dfsm.c252 TI_STATUS status; local
274 status = (*pFsm->stateEventMatrix[(oldState * pFsm->ActiveNoOfEvents) + event].actionFunc)(pData);
276 return status;
/system/core/include/cutils/
H A Datomic-arm.h86 int32_t prev, status; local
92 : "=&r" (prev), "=&r" (status), "+m"(*ptr)
95 } while (__builtin_expect(status != 0, 0));
103 int32_t prev, status; local
106 status = (*(kuser_cmpxchg *)0xffff0fc0)(old_value, new_value, ptr);
107 if (__builtin_expect(status == 0, 1))
119 int status = android_atomic_cas(old_value, new_value, ptr); local
121 return status;
140 int32_t prev, status; local
144 : "=&r" (prev), "=&r" (status), "
172 int32_t prev, tmp, status; local
189 int32_t prev, status; local
214 int32_t prev, tmp, status; local
230 int32_t prev, status; local
245 int32_t prev, tmp, status; local
261 int32_t prev, status; local
[all...]
H A Datomic-x86.h127 int32_t prev, status; local
130 status = android_atomic_cas(prev, prev & value, ptr);
131 } while (__builtin_expect(status != 0, 0));
137 int32_t prev, status; local
140 status = android_atomic_cas(prev, prev | value, ptr);
141 } while (__builtin_expect(status != 0, 0));
/system/core/logwrapper/
H A Dlogwrapper.c44 " fault address is set to the status of wait()\n");
48 int status; local
89 status = 0xAAAA;
90 if (wait(&status) != -1) { // Wait for child
91 if (WIFEXITED(status))
93 WEXITSTATUS(status));
94 else if (WIFSIGNALED(status))
96 WTERMSIG(status));
97 else if (WIFSTOPPED(status))
99 WSTOPSIG(status));
[all...]
/system/media/opensles/libopensles/
H A DIBassBoost.c48 android::status_t status = this->mBassBoostEffect->setEnabled((bool) this->mEnabled); local
49 result = android_fx_statusToResult(status);
102 android::status_t status = local
104 result = android_fx_statusToResult(status);
130 android::status_t status = local
132 result = android_fx_statusToResult(status);
160 android::status_t status =
163 result = android_fx_statusToResult(status);
H A DIPrefetchStatus.c31 SLuint32 status = this->mStatus; local
33 *pStatus = status;
H A DIVirtualizer.c48 android::status_t status = local
50 result = android_fx_statusToResult(status);
104 android::status_t status = android_virt_setParam(this->mVirtualizerEffect, local
106 result = android_fx_statusToResult(status);
132 android::status_t status = android_virt_getParam(this->mVirtualizerEffect, local
134 result = android_fx_statusToResult(status);
162 android::status_t status =
165 result = android_fx_statusToResult(status);

Completed in 317 milliseconds

1234567891011