Home | History | Annotate | Download | only in libloc_api_50001

Lines Matching defs:mAPN

1313     char* mAPN;
1318 mEnable(enable), mAPN(NULL), mLen(len)
1321 mAPN = new char[len+1];
1322 memcpy((void*)mAPN, (void*)name, len);
1323 mAPN[len] = 0;
1328 if (NULL != mAPN) {
1329 delete[] mAPN;
1334 if (NULL != mAPN) {
1335 mAdapter->setAPN(mAPN, mLen);
1340 (NULL == mAPN) ? "NULL" : mAPN, mEnable);
1435 char* mAPN;
1443 mAPN(new char[len+1]), mBearerType(btype)
1445 memcpy((void*)mAPN, (void*)name, len);
1446 mAPN[len] = 0;
1451 delete[] mAPN;
1455 mStateMachine->setAPN(mAPN, mLen);
1462 mAPN,