Home | History | Annotate | Download | only in libloc_api_50001

Lines Matching defs:mAPN

1312     char* mAPN;
1317 mEnable(enable), mAPN(NULL), mLen(len)
1320 mAPN = new char[len+1];
1321 memcpy((void*)mAPN, (void*)name, len);
1322 mAPN[len] = 0;
1327 if (NULL != mAPN) {
1328 delete[] mAPN;
1333 if (NULL != mAPN) {
1334 mAdapter->setAPN(mAPN, mLen);
1339 (NULL == mAPN) ? "NULL" : mAPN, mEnable);
1434 char* mAPN;
1442 mAPN(new char[len+1]), mBearerType(btype)
1444 memcpy((void*)mAPN, (void*)name, len);
1445 mAPN[len] = 0;
1450 delete[] mAPN;
1454 mStateMachine->setAPN(mAPN, mLen);
1461 mAPN,