Lines Matching refs:append

55     createTableStr.append("CREATE TABLE IF NOT EXISTS ").append(TABLE_OPKEY_INFO).append("(");  in CreateOpKeyInfoTableStr()
56 createTableStr.append(OpKeyData::ID).append(" INTEGER PRIMARY KEY AUTOINCREMENT, "); in CreateOpKeyInfoTableStr()
57 createTableStr.append(OpKeyData::MCCMNC).append(" TEXT NOT NULL , "); in CreateOpKeyInfoTableStr()
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()
64 createTableStr.append(OpKeyData::OPERATOR_KEY).append(" TEXT DEFAULT '-1', "); in CreateOpKeyInfoTableStr()
65 createTableStr.append(OpKeyData::OPERATOR_KEY_EXT).append(" TEXT DEFAULT '', "); in CreateOpKeyInfoTableStr()
66 createTableStr.append(OpKeyData::RULE_ID).append(" INTEGER DEFAULT 0, "); in CreateOpKeyInfoTableStr()
67 createTableStr.append("UNIQUE (").append(OpKeyData::MCCMNC).append(", "); 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()
72 createTableStr.append(OpKeyData::ICCID).append("))"); in CreateOpKeyInfoTableStr()
77 createIndexStr.append("CREATE INDEX IF NOT EXISTS [").append(MCCMNC_INDEX).append("]"); in CreateOpKeyInfoIndexStr()
78 createIndexStr.append("ON [").append(TABLE_OPKEY_INFO).append("]"); in CreateOpKeyInfoIndexStr()
79 createIndexStr.append("([").append(OpKeyData::MCCMNC).append("])"); in CreateOpKeyInfoIndexStr()