/ohos5.0/base/telephony/telephony_data/sms_mms/src/ |
H A D | rdb_sms_mms_helper.cpp | 105 createTableStr.append(MmsProtocol::EXPIRY).append(" INTEGER , "); in CreateMmsProtocolTableStr() 110 createTableStr.append(MmsProtocol::SIZE).append(" INTEGER , "); in CreateMmsProtocolTableStr() 137 createTableStr.append(SmsSubsection::SIZE).append(" INTEGER )"); in CreateSmsSubsectionTableStr() 147 createTableStr.append(MmsPart::PART_SIZE).append(" TEXT , "); in CreateMmsPartTableStr() 149 createTableStr.append(MmsPart::TYPE).append(" INTEGER , "); in CreateMmsPartTableStr() 151 createTableStr.append(MmsPart::ENCODE).append(" INTEGER , "); in CreateMmsPartTableStr() 152 createTableStr.append(MmsPart::STATE).append(" INTEGER , "); in CreateMmsPartTableStr() 153 createTableStr.append(MmsPart::CONTENT).append(" TEXT , "); in CreateMmsPartTableStr() 164 createTableStr.append(Session::TELEPHONE).append(" TEXT , "); in CreateSessionTableStr() 165 createTableStr.append(Session::CONTENT).append(" TEXT , "); in CreateSessionTableStr() [all …]
|
/ohos5.0/base/telephony/telephony_data/global_params/src/ |
H A D | rdb_global_params_helper.cpp | 62 createTableStr.append(NumMatchData::NAME).append(" TEXT DEFAULT '', "); in CreateNumMatchTableStr() 63 createTableStr.append(NumMatchData::MCC).append(" TEXT DEFAULT '', "); in CreateNumMatchTableStr() 64 createTableStr.append(NumMatchData::MNC).append(" TEXT DEFAULT '', "); in CreateNumMatchTableStr() 69 createTableStr.append(NumMatchData::NAME).append("))"); in CreateNumMatchTableStr() 86 createTableStr.append(EccData::NAME).append(" TEXT DEFAULT '', "); in CreateEccDataTableStr() 87 createTableStr.append(EccData::MCC).append(" TEXT DEFAULT '', "); in CreateEccDataTableStr() 88 createTableStr.append(EccData::MNC).append(" TEXT DEFAULT '', "); in CreateEccDataTableStr() 89 createTableStr.append(EccData::NUMERIC).append(" TEXT DEFAULT '', "); in CreateEccDataTableStr() 92 createTableStr.append(EccData::ECC_FAKE).append(" TEXT DEFAULT '', "); in CreateEccDataTableStr() 98 return CreateEccDataTableStr(createTableStr); in CreateGlobalParamsTableStr() [all …]
|
/ohos5.0/base/telephony/telephony_data/pdp_profile/src/ |
H A D | rdb_pdp_profile_helper.cpp | 78 createTableStr.append(PdpProfileData::MNC).append(", "); in CreatePdpProfileTableStr() 79 createTableStr.append(PdpProfileData::OPKEY).append(", "); in CreatePdpProfileTableStr() 80 createTableStr.append(PdpProfileData::MVNO_TYPE).append(", "); in CreatePdpProfileTableStr() 82 createTableStr.append(PdpProfileData::APN).append(", "); in CreatePdpProfileTableStr() 83 createTableStr.append(PdpProfileData::APN_TYPES).append(", "); in CreatePdpProfileTableStr() 85 createTableStr.append(PdpProfileData::APN_PROTOCOL).append(", "); in CreatePdpProfileTableStr() 87 createTableStr.append(PdpProfileData::HOME_URL).append(", "); in CreatePdpProfileTableStr() 89 createTableStr.append(PdpProfileData::PROFILE_NAME).append(", "); in CreatePdpProfileTableStr() 91 createTableStr.append(PdpProfileData::AUTH_USER).append(", "); in CreatePdpProfileTableStr() 92 createTableStr.append(PdpProfileData::AUTH_PWD).append(", "); in CreatePdpProfileTableStr() [all …]
|
/ohos5.0/base/telephony/telephony_data/opkey/src/ |
H A D | rdb_opkey_helper.cpp | 58 createTableStr.append(OpKeyData::GID1).append(" TEXT , "); in CreateOpKeyInfoTableStr() 59 createTableStr.append(OpKeyData::GID2).append(" TEXT , "); in CreateOpKeyInfoTableStr() 60 createTableStr.append(OpKeyData::IMSI).append(" TEXT , "); in CreateOpKeyInfoTableStr() 61 createTableStr.append(OpKeyData::SPN).append(" TEXT , "); in CreateOpKeyInfoTableStr() 62 createTableStr.append(OpKeyData::ICCID).append(" TEXT , "); in CreateOpKeyInfoTableStr() 63 createTableStr.append(OpKeyData::OPERATOR_NAME).append(" TEXT , "); in CreateOpKeyInfoTableStr() 68 createTableStr.append(OpKeyData::GID1).append(", "); in CreateOpKeyInfoTableStr() 69 createTableStr.append(OpKeyData::GID2).append(", "); in CreateOpKeyInfoTableStr() 70 createTableStr.append(OpKeyData::IMSI).append(", "); in CreateOpKeyInfoTableStr() 71 createTableStr.append(OpKeyData::SPN).append(", "); in CreateOpKeyInfoTableStr() [all …]
|
/ohos5.0/base/telephony/telephony_data/sim/src/ |
H A D | rdb_sim_helper.cpp | 50 void RdbSimHelper::CreateSimInfoTableStr(std::string &createTableStr) in CreateSimInfoTableStr() argument 54 createTableStr.append(SimData::ICC_ID).append(" TEXT NOT NULL, "); in CreateSimInfoTableStr() 55 createTableStr.append(SimData::CARD_ID).append(" TEXT NOT NULL, "); in CreateSimInfoTableStr() 60 createTableStr.append(SimData::IMSI).append(" TEXT DEFAULT '', "); in CreateSimInfoTableStr() 66 createTableStr.append(SimData::CARD_TYPE).append(" INTEGER , "); in CreateSimInfoTableStr() 69 createTableStr.append(SimData::OPKEY).append(" TEXT DEFAULT '', "); in CreateSimInfoTableStr() 70 createTableStr.append(SimData::MCC).append(" TEXT DEFAULT '', "); in CreateSimInfoTableStr() 71 createTableStr.append(SimData::MNC).append(" TEXT DEFAULT '', "); in CreateSimInfoTableStr() 72 createTableStr.append("UNIQUE ("); in CreateSimInfoTableStr() 73 createTableStr.append(SimData::ICC_ID).append(", "); in CreateSimInfoTableStr() [all …]
|
/ohos5.0/base/telephony/telephony_data/sms_mms/include/ |
H A D | rdb_sms_mms_helper.h | 105 void CreateSmsMmsInfoTableStr(std::string &createTableStr); 112 void CreateSmsSubsectionTableStr(std::string &createTableStr); 119 void CreateMmsProtocolTableStr(std::string &createTableStr); 126 void CreateMmsPartTableStr(std::string &createTableStr); 133 void CreateSessionTableStr(std::string &createTableStr); 139 void CreateMmsPduTableStr(std::string &createTableStr);
|
/ohos5.0/base/telephony/telephony_data/global_params/include/ |
H A D | rdb_global_params_helper.h | 46 void CreateGlobalParamsTableStr(std::string &createTableStr, const std::string &tableName); 52 void CreateNumMatchTableStr(std::string &createTableStr); 66 void CreateEccDataTableStr(std::string &createTableStr);
|
/ohos5.0/base/telephony/telephony_data/opkey/include/ |
H A D | rdb_opkey_helper.h | 57 void CreateOpKeyInfoTableStr(std::string &createTableStr);
|
/ohos5.0/base/telephony/telephony_data/sim/include/ |
H A D | rdb_sim_helper.h | 71 void CreateSimInfoTableStr(std::string &createTableStr);
|
/ohos5.0/base/telephony/telephony_data/pdp_profile/include/ |
H A D | rdb_pdp_profile_helper.h | 68 void CreatePdpProfileTableStr(std::string &createTableStr, const std::string &tableName);
|