HomeSort by relevance Sort by last modified time
    Searched full:pframe (Results 1 - 25 of 61) sorted by null

1 2 3

  /sdk/emulator/qtools/
read_method.cpp 36 void push(frame *pframe);
41 void Stack::push(frame *pframe) {
46 frames[top] = pframe;
58 frame *pframe; local
61 pframe = frames[ii];
62 const char *native = pframe->isNative ? "n" : " ";
64 native, ii, pframe->time, pframe->addr,
65 pframe->name == NULL ? "" : pframe->name)
97 frame *pframe; local
    [all...]
check_stack.cpp 55 void push(frame *pframe);
60 void Stack::push(frame *pframe) {
65 frames[top] = pframe;
113 frame *pframe; local
132 pframe = new frame(method_record.time, method_record.addr,
135 mStack->push(pframe);
137 pframe = mStack->pop();
138 delete pframe;
  /hardware/ti/wlan/wl1271/stad/src/Sta_Management/
scanResultTable.c 54 #define UPDATE_BSSID(pSite, pFrame) MAC_COPY((pSite)->bssid, *((pFrame)->bssId))
55 #define UPDATE_BAND(pSite, pFrame) (pSite)->eBand = (pFrame)->band
56 #define UPDATE_BEACON_INTERVAL(pSite, pFrame) pSite->beaconInterval = (pFrame)->parsedIEs->content.iePacket.beaconInerval
57 #define UPDATE_CAPABILITIES(pSite, pFrame) pSite->capabilities = (pFrame)->parsedIEs->content.iePacket.capabilities
58 #define UPDATE_PRIVACY(pSite, pFrame) pSite->privacy = (((pFrame)->parsedIEs->content.iePacket.capabilities >> CAP_PRIVACY_SHIFT) & CAP_PRIVACY_MASK) ? TI_TRUE : T (…)
    [all...]
sharedKeyAuthSm.c 217 TI_STATUS sharedKeyAuth_Recv(TI_HANDLE hAuth, mlmeFrameInfo_t *pFrame)
232 authAlgo = ENDIAN_HANDLE_WORD(pFrame->content.auth.authAlgo);
240 rspSeq = pFrame->content.auth.seqNum;
242 pHandle->authData.status = pFrame->content.auth.status;
243 pHandle->authData.pChalange = (char *)(pFrame->content.auth.pChallenge->text);
244 pHandle->authData.challangeLen = pFrame->content.auth.pChallenge->hdr[1];
253 if (pFrame->content.auth.pChallenge->hdr[0] != CHALLANGE_TEXT_IE_ID)
assocSM.c 447 * I - pFrame - Frame recieved \n
455 TI_STATUS assoc_recv(TI_HANDLE hAssoc, mlmeFrameInfo_t *pFrame)
472 if ((pFrame->subType != ASSOC_RESPONSE) && (pFrame->subType != RE_ASSOC_RESPONSE))
478 rspStatus = pFrame->content.assocRsp.status;
493 tTwdParam.content.halCtrlAid = pFrame->content.assocRsp.aid;
498 pRsnIe = pFrame->content.assocRsp.pRsnIe;
499 while (length < pFrame->content.assocRsp.rsnIeLen && (pFrame->content.assocRsp.rsnIeLen < 255))
508 if (pFrame->content.assocRsp.rsnIeLen != 0
    [all...]
openAuthSm.c 202 TI_STATUS openAuth_Recv(TI_HANDLE hAuth, mlmeFrameInfo_t *pFrame)
216 authAlgo = ENDIAN_HANDLE_WORD(pFrame->content.auth.authAlgo);
229 TRACE1(pHandle->hReport, REPORT_SEVERITY_SM, "OPEN_AUTH_SM: DEBUG Authentication status is %d \n", pFrame->content.auth.status);
231 pHandle->authData.status = pFrame->content.auth.status;
authSm.c 349 TI_STATUS auth_recv(TI_HANDLE hAuth, mlmeFrameInfo_t *pFrame)
358 if (pFrame->subType != AUTH)
364 if (pFrame->content.auth.status != STATUS_SUCCESSFUL)
371 return openAuth_Recv(hAuth, pFrame);
374 return sharedKeyAuth_Recv(hAuth, pFrame);
authSm.h 103 TI_STATUS auth_recv(TI_HANDLE hAuth, mlmeFrameInfo_t *pFrame);
openAuthSm.h 91 TI_STATUS openAuth_Recv(TI_HANDLE pAssoc, mlmeFrameInfo_t *pFrame);
  /system/wlan/ti/wilink_6_1/stad/src/Sta_Management/
scanResultTable.c 51 #define UPDATE_BSSID(pSite, pFrame) MAC_COPY((pSite)->bssid, *((pFrame)->bssId))
52 #define UPDATE_BAND(pSite, pFrame) (pSite)->eBand = (pFrame)->band
53 #define UPDATE_BEACON_INTERVAL(pSite, pFrame) pSite->beaconInterval = (pFrame)->parsedIEs->content.iePacket.beaconInerval
54 #define UPDATE_CAPABILITIES(pSite, pFrame) pSite->capabilities = (pFrame)->parsedIEs->content.iePacket.capabilities
55 #define UPDATE_PRIVACY(pSite, pFrame) pSite->privacy = (((pFrame)->parsedIEs->content.iePacket.capabilities >> CAP_PRIVACY_SHIFT) & CAP_PRIVACY_MASK) ? TI_TRUE : T (…)
    [all...]
sharedKeyAuthSm.c 217 TI_STATUS sharedKeyAuth_Recv(TI_HANDLE hAuth, mlmeFrameInfo_t *pFrame)
232 authAlgo = ENDIAN_HANDLE_WORD(pFrame->content.auth.authAlgo);
240 rspSeq = pFrame->content.auth.seqNum;
242 pHandle->authData.status = pFrame->content.auth.status;
243 pHandle->authData.pChalange = (char *)(pFrame->content.auth.pChallenge->text);
244 pHandle->authData.challangeLen = pFrame->content.auth.pChallenge->hdr[1];
253 if (pFrame->content.auth.pChallenge->hdr[0] != CHALLANGE_TEXT_IE_ID)
assocSM.c 446 * I - pFrame - Frame recieved \n
454 TI_STATUS assoc_recv(TI_HANDLE hAssoc, mlmeFrameInfo_t *pFrame)
471 if ((pFrame->subType != ASSOC_RESPONSE) && (pFrame->subType != RE_ASSOC_RESPONSE))
477 rspStatus = pFrame->content.assocRsp.status;
492 tTwdParam.content.halCtrlAid = pFrame->content.assocRsp.aid;
497 pRsnIe = pFrame->content.assocRsp.pRsnIe;
498 while (length < pFrame->content.assocRsp.rsnIeLen && (pFrame->content.assocRsp.rsnIeLen < 255))
507 if (pFrame->content.assocRsp.rsnIeLen != 0
    [all...]
openAuthSm.c 202 TI_STATUS openAuth_Recv(TI_HANDLE hAuth, mlmeFrameInfo_t *pFrame)
216 authAlgo = ENDIAN_HANDLE_WORD(pFrame->content.auth.authAlgo);
229 TRACE1(pHandle->hReport, REPORT_SEVERITY_SM, "OPEN_AUTH_SM: DEBUG Authentication status is %d \n", pFrame->content.auth.status);
231 pHandle->authData.status = pFrame->content.auth.status;
authSm.c 349 TI_STATUS auth_recv(TI_HANDLE hAuth, mlmeFrameInfo_t *pFrame)
358 if (pFrame->subType != AUTH)
364 if (pFrame->content.auth.status != STATUS_SUCCESSFUL)
371 return openAuth_Recv(hAuth, pFrame);
374 return sharedKeyAuth_Recv(hAuth, pFrame);
  /external/webkit/WebKit/android/jni/
WebCoreFrameBridge.cpp 851 WebCore::Frame* pFrame = GET_NATIVE_FRAME(env, obj);
852 LOG_ASSERT(pFrame, "nativeCallPolicyFunction must take a valid frame pointer!");
858 pFrame->loader()->resetMultipleFormSubmissionProtection();
860 (pFrame->loader()->policyChecker()->*(pFunc->func))((WebCore::PolicyAction)decision);
    [all...]
WebSettings.cpp 240 WebCore::Frame* pFrame = (WebCore::Frame*)frame;
241 LOG_ASSERT(pFrame, "%s must take a valid frame pointer!", __FUNCTION__);
242 WebCore::Settings* s = pFrame->settings();
245 WebCore::DocLoader* docLoader = pFrame->document()->docLoader();
253 if (pFrame->document()) {
254 pFrame->document()->updateStyleSelector();
255 if (pFrame->document()->renderer()) {
256 recursiveCleanupForFullLayout(pFrame->document()->renderer());
257 LOG_ASSERT(pFrame->view(), "No view for this frame when trying to relayout");
258 pFrame->view()->layout()
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/core/mlme/
mlmeBuilder.c 96 dot11_mgmtFrame_t *pFrame;
116 pFrame = (dot11_mgmtFrame_t*)(pMsdu->firstBDPtr->data + TX_TOTAL_OFFSET_BEFORE_DATA);
118 status = mlmeBuilder_buildFrameCtrl(pHandle, type, (UINT16 *)&pFrame->hdr.fc, setWepOpt);
134 MAC_COPY(pHandle->hOs, (&pFrame->hdr.DA), (&daParam.content.ctrlDataCurrentBSSID));
145 MAC_COPY(pHandle->hOs, (&pFrame->hdr.SA), (&saParam.content.ctrlDataCurrentBSSID));
148 MAC_COPY(pHandle->hOs, (&pFrame->hdr.BSSID), (&daParam.content.ctrlDataCurrentBSSID));
152 os_memoryCopy(pHandle->hOs, (void *)pFrame->body, pDataBuff, dataLen);
  /hardware/ti/wlan/wl1271/stad/src/Data_link/
txCtrlServ.c 64 pFrame - A pointer to a buffer where the frame should be stored
68 TI_STATUS txCtrlServ_buildNullFrame(TI_HANDLE hTxCtrl, TI_UINT8* pFrame, TI_UINT32* pLength)
76 pHeader = (dot11_header_t*)(pFrame);
124 pFrame - A pointer to a buffer where the frame should be stored
128 TI_STATUS txCtrlServ_buildWlanHeader(TI_HANDLE hTxCtrl, TI_UINT8* pFrame, TI_UINT32* pLength)
228 os_memoryCopy (pTxCtrl->hOs, pFrame, tPktCtrlBlk.aPktHdr, headerLength);
  /system/wlan/ti/wilink_6_1/stad/src/Data_link/
txCtrlServ.c 64 pFrame - A pointer to a buffer where the frame should be stored
68 TI_STATUS txCtrlServ_buildNullFrame(TI_HANDLE hTxCtrl, TI_UINT8* pFrame, TI_UINT32* pLength)
76 pHeader = (dot11_header_t*)(pFrame);
124 pFrame - A pointer to a buffer where the frame should be stored
128 TI_STATUS txCtrlServ_buildWlanHeader(TI_HANDLE hTxCtrl, TI_UINT8* pFrame, TI_UINT32* pLength)
228 os_memoryCopy (pTxCtrl->hOs, pFrame, tPktCtrlBlk.aPktHdr, headerLength);
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/core/mlme/Auth/shared/
sharedKeyAuthSm.c 249 TI_STATUS sharedKeyAuth_Recv(TI_HANDLE hAuth, mlmeFrameInfo_t *pFrame)
264 authAlgo = pFrame->content.auth.authAlgo;
273 rspSeq = pFrame->content.auth.seqNum;
275 pHandle->authData.status = pFrame->content.auth.status;
276 pHandle->authData.pChalange = (char *)(pFrame->content.auth.pChallenge->text);
277 pHandle->authData.challangeLen = pFrame->content.auth.pChallenge->hdr.eleLen;
287 if (pFrame->content.auth.pChallenge->hdr.eleId != CHALLANGE_TEXT_IE_ID)
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/core/mlme/Auth/open/
openAuthSm.c 230 TI_STATUS openAuth_Recv(TI_HANDLE hAuth, mlmeFrameInfo_t *pFrame)
244 authAlgo = pFrame->content.auth.authAlgo;
259 ("OPEN_AUTH_SM: DEBUG Authentication status is %d \n", pFrame->content.auth.status));
261 pHandle->authData.status = pFrame->content.auth.status;
  /external/sonivox/arm-fm-22k/lib_src/
eas_fmengine.c 548 S_FM_VOICE_FRAME *pFrame,
584 pFrame->gain[2],
596 pFrame->gain[2],
597 pFrame->pitch[2],
624 pFrame->gain[3],
636 pFrame->gain[3],
637 pFrame->pitch[3],
664 pFrame->gain[0],
676 pFrame->gain[0],
677 pFrame->pitch[0]
    [all...]
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_fmengine.c 548 S_FM_VOICE_FRAME *pFrame,
584 pFrame->gain[2],
596 pFrame->gain[2],
597 pFrame->pitch[2],
624 pFrame->gain[3],
636 pFrame->gain[3],
637 pFrame->pitch[3],
664 pFrame->gain[0],
676 pFrame->gain[0],
677 pFrame->pitch[0]
    [all...]
  /external/speex/libspeex/
preprocess.c 569 static void speex_compute_agc(SpeexPreprocessState *st, spx_word16_t Pframe, spx_word16_t *ft)
584 if (Pframe>.3f)
586 /*rate=2.0f*Pframe*Pframe/(1+st->nb_loudness_adapt);*/
587 rate = .03*Pframe*Pframe;
591 st->init_max *= 1.f + .1f*Pframe*Pframe;
593 /*printf ("%f %f %f %f\n", Pframe, loudness, pow(st->loudness, 1.0f/LOUDNESS_EXP), st->loudness2);*/
597 if ((Pframe>.5 && st->nb_adapt > 20) || target_gain < st->agc_gain
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/core/mlme/Assoc/
assocSM.c 483 * I - pFrame - Frame recieved \n
491 TI_STATUS assoc_recv(TI_HANDLE hAssoc, mlmeFrameInfo_t *pFrame)
509 if ((pFrame->subType != ASSOC_RESPONSE) && (pFrame->subType != RE_ASSOC_RESPONSE))
515 rspStatus = pFrame->content.assocRsp.status;
531 whalParam.content.halCtrlAid = pFrame->content.assocRsp.aid;
536 pRsnIe = pFrame->content.assocRsp.pRsnIe;
537 while ((length < pFrame->content.assocRsp.rsnIeLen) && (pFrame->content.assocRsp.rsnIeLen < 255))
551 if (pFrame->content.assocRsp.rsnIeLen != 0
    [all...]

Completed in 569 milliseconds

1 2 3