Lines Matching refs:pf

1771     RIL_InitialAttachApn pf;  in dispatchSetInitialAttachApn()  local
1775 memset(&pf, 0, sizeof(pf)); in dispatchSetInitialAttachApn()
1777 pf.apn = strdupReadString(p); in dispatchSetInitialAttachApn()
1778 pf.protocol = strdupReadString(p); in dispatchSetInitialAttachApn()
1781 pf.authtype = (int) t; in dispatchSetInitialAttachApn()
1783 pf.username = strdupReadString(p); in dispatchSetInitialAttachApn()
1784 pf.password = strdupReadString(p); in dispatchSetInitialAttachApn()
1788 printBuf, pf.apn, pf.protocol, pf.authtype, pf.username, pf.password); in dispatchSetInitialAttachApn()
1795 CALL_ONREQUEST(pRI->pCI->requestNumber, &pf, sizeof(pf), pRI, pRI->socket_id); in dispatchSetInitialAttachApn()
1798 memsetString(pf.apn); in dispatchSetInitialAttachApn()
1799 memsetString(pf.protocol); in dispatchSetInitialAttachApn()
1800 memsetString(pf.username); in dispatchSetInitialAttachApn()
1801 memsetString(pf.password); in dispatchSetInitialAttachApn()
1804 free(pf.apn); in dispatchSetInitialAttachApn()
1805 free(pf.protocol); in dispatchSetInitialAttachApn()
1806 free(pf.username); in dispatchSetInitialAttachApn()
1807 free(pf.password); in dispatchSetInitialAttachApn()
1810 memset(&pf, 0, sizeof(pf)); in dispatchSetInitialAttachApn()
1947 RIL_SimAuthentication pf; in dispatchSimAuthentication() local
1951 memset(&pf, 0, sizeof(pf)); in dispatchSimAuthentication()
1954 pf.authContext = (int) t; in dispatchSimAuthentication()
1955 pf.authData = strdupReadString(p); in dispatchSimAuthentication()
1956 pf.aid = strdupReadString(p); in dispatchSimAuthentication()
1959 appendPrintBuf("authContext=%s, authData=%s, aid=%s", pf.authContext, pf.authData, pf.aid); in dispatchSimAuthentication()
1966 CALL_ONREQUEST(pRI->pCI->requestNumber, &pf, sizeof(pf), pRI, pRI->socket_id); in dispatchSimAuthentication()
1969 memsetString(pf.authData); in dispatchSimAuthentication()
1970 memsetString(pf.aid); in dispatchSimAuthentication()
1973 free(pf.authData); in dispatchSimAuthentication()
1974 free(pf.aid); in dispatchSimAuthentication()
1977 memset(&pf, 0, sizeof(pf)); in dispatchSimAuthentication()