Home | History | Annotate | Download | only in libloc_api_50001

Lines Matching defs:mAPN

1207     char* mAPN;
1212 mEnable(enable), mAPN(NULL), mLen(len)
1215 mAPN = new char[len+1];
1216 memcpy((void*)mAPN, (void*)name, len);
1217 mAPN[len] = 0;
1222 if (NULL != mAPN) {
1223 delete[] mAPN;
1228 if (NULL != mAPN) {
1229 mAdapter->setAPN(mAPN, mLen);
1234 (NULL == mAPN) ? "NULL" : mAPN, mEnable);
1272 char* mAPN;
1280 mAPN(new char[len+1]), mBearerType(btype)
1282 memcpy((void*)mAPN, (void*)name, len);
1283 mAPN[len] = 0;
1288 delete[] mAPN;
1292 mStateMachine->setAPN(mAPN, mLen);
1299 mAPN,