Home
last modified time | relevance | path

Searched refs:mAPN (Results 1 – 25 of 30) sorted by relevance

12

/hardware/qcom/sm7150/gps/gnss/
DAgps.h151 char* mAPN; variable
161 mAgpsType(agpsType), mAPN(NULL), mAPNLen(0), in AgpsStateMachine()
164 virtual ~AgpsStateMachine() { if(NULL != mAPN) delete[] mAPN; }; in ~AgpsStateMachine()
168 inline char* getAPN() const { return (char*)mAPN; } in getAPN()
DAgps.cpp446 if (NULL != mAPN) { in setAPN()
447 delete mAPN; in setAPN()
448 mAPN = NULL; in setAPN()
453 mAPN = NULL; in setAPN()
456 mAPN = new char[len+1]; in setAPN()
457 if (NULL != mAPN) { in setAPN()
458 memcpy(mAPN, apn, len); in setAPN()
459 mAPN[len] = '\0'; in setAPN()
/hardware/qcom/sm8150/gps/gnss/
DAgps.h153 char* mAPN; variable
163 mAgpsType(agpsType), mAPN(NULL), mAPNLen(0), in AgpsStateMachine()
166 virtual ~AgpsStateMachine() { if(NULL != mAPN) delete[] mAPN; }; in ~AgpsStateMachine()
170 inline char* getAPN() const { return mAPN; } in getAPN()
DAgps.cpp446 if (NULL != mAPN) { in setAPN()
447 delete mAPN; in setAPN()
448 mAPN = NULL; in setAPN()
453 mAPN = NULL; in setAPN()
456 mAPN = new char[len+1]; in setAPN()
457 if (NULL != mAPN) { in setAPN()
458 memcpy(mAPN, apn, len); in setAPN()
459 mAPN[len] = '\0'; in setAPN()
/hardware/qcom/sm8150p/gps/gnss/
DAgps.h151 char* mAPN; variable
161 mAgpsType(agpsType), mAPN(NULL), mAPNLen(0), in AgpsStateMachine()
164 virtual ~AgpsStateMachine() { if(NULL != mAPN) delete[] mAPN; }; in ~AgpsStateMachine()
168 inline char* getAPN() const { return (char*)mAPN; } in getAPN()
DAgps.cpp446 if (NULL != mAPN) { in setAPN()
447 delete mAPN; in setAPN()
448 mAPN = NULL; in setAPN()
453 mAPN = NULL; in setAPN()
456 mAPN = new char[len+1]; in setAPN()
457 if (NULL != mAPN) { in setAPN()
458 memcpy(mAPN, apn, len); in setAPN()
459 mAPN[len] = '\0'; in setAPN()
/hardware/qcom/sm7250/gps/gnss/
DAgps.h153 char* mAPN; variable
163 mAgpsType(agpsType), mAPN(NULL), mAPNLen(0), in AgpsStateMachine()
166 virtual ~AgpsStateMachine() { if(NULL != mAPN) delete[] mAPN; }; in ~AgpsStateMachine()
170 inline char* getAPN() const { return mAPN; } in getAPN()
DAgps.cpp446 if (NULL != mAPN) { in setAPN()
447 delete mAPN; in setAPN()
448 mAPN = NULL; in setAPN()
453 mAPN = NULL; in setAPN()
456 mAPN = new char[len+1]; in setAPN()
457 if (NULL != mAPN) { in setAPN()
458 memcpy(mAPN, apn, len); in setAPN()
459 mAPN[len] = '\0'; in setAPN()
/hardware/qcom/gps/msm8998/gnss/
DAgps.h218 char* mAPN; variable
227 mAgpsType(agpsType), mAPN(NULL), mAPNLen(0), in AgpsStateMachine()
230 virtual ~AgpsStateMachine() { if(NULL != mAPN) delete[] mAPN; }; in ~AgpsStateMachine()
234 inline char* getAPN() const { return (char*)mAPN; } in getAPN()
DAgps.cpp453 if (NULL != mAPN) { in setAPN()
454 delete mAPN; in setAPN()
455 mAPN = NULL; in setAPN()
460 mAPN = NULL; in setAPN()
463 mAPN = new char[len+1]; in setAPN()
464 if (NULL != mAPN) { in setAPN()
465 memcpy(mAPN, apn, len); in setAPN()
466 mAPN[len] = '\0'; in setAPN()
/hardware/qcom/gps/msm8909w_3100/gnss/
DAgps.h218 char* mAPN; variable
227 mAgpsType(agpsType), mAPN(NULL), mAPNLen(0), in AgpsStateMachine()
230 virtual ~AgpsStateMachine() { if(NULL != mAPN) delete[] mAPN; }; in ~AgpsStateMachine()
234 inline char* getAPN() const { return (char*)mAPN; } in getAPN()
DAgps.cpp458 if (NULL != mAPN) { in setAPN()
459 delete mAPN; in setAPN()
464 mAPN = NULL; in setAPN()
469 mAPN = new char[len+1]; in setAPN()
470 memcpy(mAPN, apn, len); in setAPN()
471 mAPN[len] = '\0'; in setAPN()
/hardware/qcom/gps/msm8994/loc_api/libloc_api_50001/
Dloc_eng_agps.cpp628 mAPN(NULL), in AgpsStateMachine()
676 if (NULL != mAPN) { in ~AgpsStateMachine()
677 delete[] mAPN; in ~AgpsStateMachine()
678 mAPN = NULL; in ~AgpsStateMachine()
684 if (NULL != mAPN) { in setAPN()
685 delete mAPN; in setAPN()
689 mAPN = new char[len+1]; in setAPN()
690 memcpy(mAPN, apn, len); in setAPN()
691 mAPN[len] = '\0'; in setAPN()
695 mAPN = NULL; in setAPN()
Dloc_eng.cpp1315 char* mAPN; member
1320 mEnable(enable), mAPN(NULL), mLen(len) in LocEngEnableData()
1323 mAPN = new char[len+1]; in LocEngEnableData()
1324 memcpy((void*)mAPN, (void*)name, len); in LocEngEnableData()
1325 mAPN[len] = 0; in LocEngEnableData()
1330 if (NULL != mAPN) { in ~LocEngEnableData()
1331 delete[] mAPN; in ~LocEngEnableData()
1336 if (NULL != mAPN) { in proc()
1337 mAdapter->setAPN(mAPN, mLen); in proc()
1342 (NULL == mAPN) ? "NULL" : mAPN, mEnable); in locallog()
[all …]
/hardware/qcom/gps/msm8960/loc_api/libloc_api_50001/
Dloc_eng_agps.cpp628 mAPN(NULL), in AgpsStateMachine()
676 if (NULL != mAPN) { in ~AgpsStateMachine()
677 delete[] mAPN; in ~AgpsStateMachine()
678 mAPN = NULL; in ~AgpsStateMachine()
684 if (NULL != mAPN) { in setAPN()
685 delete mAPN; in setAPN()
689 mAPN = new char[len+1]; in setAPN()
690 memcpy(mAPN, apn, len); in setAPN()
691 mAPN[len] = NULL; in setAPN()
695 mAPN = NULL; in setAPN()
Dloc_eng.cpp1206 char* mAPN; member
1211 mEnable(enable), mAPN(NULL), mLen(len) in LocEngEnableData()
1214 mAPN = new char[len+1]; in LocEngEnableData()
1215 memcpy((void*)mAPN, (void*)name, len); in LocEngEnableData()
1216 mAPN[len] = 0; in LocEngEnableData()
1221 if (NULL != mAPN) { in ~LocEngEnableData()
1222 delete[] mAPN; in ~LocEngEnableData()
1227 if (NULL != mAPN) { in proc()
1228 mAdapter->setAPN(mAPN, mLen); in proc()
1233 (NULL == mAPN) ? "NULL" : mAPN, mEnable); in locallog()
[all …]
/hardware/qcom/gps/msm8084/loc_api/libloc_api_50001/
Dloc_eng_agps.cpp628 mAPN(NULL), in AgpsStateMachine()
676 if (NULL != mAPN) { in ~AgpsStateMachine()
677 delete[] mAPN; in ~AgpsStateMachine()
678 mAPN = NULL; in ~AgpsStateMachine()
684 if (NULL != mAPN) { in setAPN()
685 delete mAPN; in setAPN()
689 mAPN = new char[len+1]; in setAPN()
690 memcpy(mAPN, apn, len); in setAPN()
691 mAPN[len] = NULL; in setAPN()
695 mAPN = NULL; in setAPN()
Dloc_eng.cpp1325 char* mAPN; member
1330 mEnable(enable), mAPN(NULL), mLen(len) in LocEngEnableData()
1333 mAPN = new char[len+1]; in LocEngEnableData()
1334 memcpy((void*)mAPN, (void*)name, len); in LocEngEnableData()
1335 mAPN[len] = 0; in LocEngEnableData()
1340 if (NULL != mAPN) { in ~LocEngEnableData()
1341 delete[] mAPN; in ~LocEngEnableData()
1346 if (NULL != mAPN) { in proc()
1347 mAdapter->setAPN(mAPN, mLen); in proc()
1352 (NULL == mAPN) ? "NULL" : mAPN, mEnable); in locallog()
[all …]
/hardware/qcom/gps/msm8996/loc_api/libloc_api_50001/
Dloc_eng_agps.cpp628 mAPN(NULL), in AgpsStateMachine()
676 if (NULL != mAPN) { in ~AgpsStateMachine()
677 delete[] mAPN; in ~AgpsStateMachine()
678 mAPN = NULL; in ~AgpsStateMachine()
684 if (NULL != mAPN) { in setAPN()
685 delete mAPN; in setAPN()
689 mAPN = new char[len+1]; in setAPN()
690 memcpy(mAPN, apn, len); in setAPN()
691 mAPN[len] = NULL; in setAPN()
695 mAPN = NULL; in setAPN()
Dloc_eng.cpp1312 char* mAPN; member
1317 mEnable(enable), mAPN(NULL), mLen(len) in LocEngEnableData()
1320 mAPN = new char[len+1]; in LocEngEnableData()
1321 memcpy((void*)mAPN, (void*)name, len); in LocEngEnableData()
1322 mAPN[len] = 0; in LocEngEnableData()
1327 if (NULL != mAPN) { in ~LocEngEnableData()
1328 delete[] mAPN; in ~LocEngEnableData()
1333 if (NULL != mAPN) { in proc()
1334 mAdapter->setAPN(mAPN, mLen); in proc()
1339 (NULL == mAPN) ? "NULL" : mAPN, mEnable); in locallog()
[all …]
/hardware/qcom/gps/msm8909/loc_api/libloc_api_50001/
Dloc_eng_agps.cpp628 mAPN(NULL), in AgpsStateMachine()
676 if (NULL != mAPN) { in ~AgpsStateMachine()
677 delete[] mAPN; in ~AgpsStateMachine()
678 mAPN = NULL; in ~AgpsStateMachine()
684 if (NULL != mAPN) { in setAPN()
685 delete mAPN; in setAPN()
689 mAPN = new char[len+1]; in setAPN()
690 memcpy(mAPN, apn, len); in setAPN()
691 mAPN[len] = NULL; in setAPN()
695 mAPN = NULL; in setAPN()
Dloc_eng.cpp1313 char* mAPN; member
1318 mEnable(enable), mAPN(NULL), mLen(len) in LocEngEnableData()
1321 mAPN = new char[len+1]; in LocEngEnableData()
1322 memcpy((void*)mAPN, (void*)name, len); in LocEngEnableData()
1323 mAPN[len] = 0; in LocEngEnableData()
1328 if (NULL != mAPN) { in ~LocEngEnableData()
1329 delete[] mAPN; in ~LocEngEnableData()
1334 if (NULL != mAPN) { in proc()
1335 mAdapter->setAPN(mAPN, mLen); in proc()
1340 (NULL == mAPN) ? "NULL" : mAPN, mEnable); in locallog()
[all …]
/hardware/qcom/gps/loc_api/libloc_api_50001/
Dloc_eng_agps.cpp628 mAPN(NULL), in AgpsStateMachine()
676 if (NULL != mAPN) { in ~AgpsStateMachine()
677 delete[] mAPN; in ~AgpsStateMachine()
678 mAPN = NULL; in ~AgpsStateMachine()
684 if (NULL != mAPN) { in setAPN()
685 delete mAPN; in setAPN()
689 mAPN = new char[len+1]; in setAPN()
690 memcpy(mAPN, apn, len); in setAPN()
691 mAPN[len] = NULL; in setAPN()
695 mAPN = NULL; in setAPN()
Dloc_eng.cpp1314 char* mAPN; member
1319 mEnable(enable), mAPN(NULL), mLen(len) in LocEngEnableData()
1322 mAPN = new char[len+1]; in LocEngEnableData()
1323 memcpy((void*)mAPN, (void*)name, len); in LocEngEnableData()
1324 mAPN[len] = 0; in LocEngEnableData()
1329 if (NULL != mAPN) { in ~LocEngEnableData()
1330 delete[] mAPN; in ~LocEngEnableData()
1335 if (NULL != mAPN) { in proc()
1336 mAdapter->setAPN(mAPN, mLen); in proc()
1341 (NULL == mAPN) ? "NULL" : mAPN, mEnable); in locallog()
[all …]
Dloc_eng_agps.h199 char* mAPN; variable
214 inline const char* getAPN() const { return (const char*)mAPN; } in getAPN()

12