Home | History | Annotate | Download | only in smspush

Lines Matching refs:content_type

78                     + "content_type TEXT, "
116 * @param content_type content type to look up
119 String app_id, String content_type) {
124 + " and content_type=\'" + content_type + "\'"
177 public int processMessage(String app_id, String content_type, Intent intent)
179 Log.d(LOG_TAG, "wpman processMsg " + app_id + ":" + content_type);
183 WapPushManDBHelper.queryData lastapp = dbh.queryLastApp(db, app_id, content_type);
187 Log.w(LOG_TAG, "no receiver app found for " + app_id + ":" + content_type);
239 public boolean addPackage(String x_app_id, String content_type,
244 WapPushManDBHelper.queryData lastapp = dbh.queryLastApp(db, x_app_id, content_type);
269 values.put("content_type", content_type);
277 if (LOCAL_LOGV) Log.v(LOG_TAG, "add:" + x_app_id + ":" + content_type
291 public boolean updatePackage(String x_app_id, String content_type,
304 WapPushManDBHelper.queryData lastapp = dbh.queryLastApp(db, x_app_id, content_type);
313 + " and content_type=\'" + content_type + "\'"
323 if (LOCAL_LOGV) Log.v(LOG_TAG, "update:" + x_app_id + ":" + content_type + " "
335 public boolean deletePackage(String x_app_id, String content_type,
340 + " and content_type=\'" + content_type + "\'"
347 + x_app_id + ":" + content_type + " "
388 public boolean verifyData(String x_app_id, String content_type,
393 WapPushManDBHelper.queryData lastapp = dbh.queryLastApp(db, x_app_id, content_type);
413 public boolean isDataExist(String x_app_id, String content_type,
417 boolean ret = dbh.queryLastApp(db, x_app_id, content_type) != null;