Home | History | Annotate | Download | only in store

Lines Matching refs:MODEL

171      *   os-version             "version; model; build-id"
173 * x-android-device-model Model (only revealed if release build)
196 Build.VERSION.CODENAME, Build.MODEL, Build.ID, Build.MANUFACTURER,
239 * @param model Build.MODEL
247 String codeName, String model, String id, String vendor, String networkOperator) {
251 // version, model, and vendor strings: a-z A-Z 0-9 - _ + = ; : . , / <space>
258 model = p.matcher(model).replaceAll("");
293 // "x-android-device-model" the device model (on release builds only)
295 if (model.length() > 0) {
296 sb.append(" \"x-android-device-model\" \"");
297 sb.append(model);