1 struct cpuinfo_mock_file filesystem[] = { 2 #if CPUINFO_ARCH_ARM64 3 { 4 .path = "/proc/cpuinfo", 5 .size = 1086, 6 .content = 7 "processor\t: 0\n" 8 "BogoMIPS\t: 52.16\n" 9 "Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\n" 10 "CPU implementer\t: 0x41\n" 11 "CPU architecture: 8\n" 12 "CPU variant\t: 0x0\n" 13 "CPU part\t: 0xd03\n" 14 "CPU revision\t: 4\n" 15 "\n" 16 "processor\t: 1\n" 17 "BogoMIPS\t: 52.16\n" 18 "Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\n" 19 "CPU implementer\t: 0x41\n" 20 "CPU architecture: 8\n" 21 "CPU variant\t: 0x0\n" 22 "CPU part\t: 0xd03\n" 23 "CPU revision\t: 4\n" 24 "\n" 25 "processor\t: 2\n" 26 "BogoMIPS\t: 52.16\n" 27 "Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\n" 28 "CPU implementer\t: 0x41\n" 29 "CPU architecture: 8\n" 30 "CPU variant\t: 0x0\n" 31 "CPU part\t: 0xd03\n" 32 "CPU revision\t: 4\n" 33 "\n" 34 "processor\t: 3\n" 35 "BogoMIPS\t: 52.16\n" 36 "Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\n" 37 "CPU implementer\t: 0x41\n" 38 "CPU architecture: 8\n" 39 "CPU variant\t: 0x0\n" 40 "CPU part\t: 0xd03\n" 41 "CPU revision\t: 4\n" 42 "\n" 43 "processor\t: 4\n" 44 "BogoMIPS\t: 52.16\n" 45 "Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\n" 46 "CPU implementer\t: 0x41\n" 47 "CPU architecture: 8\n" 48 "CPU variant\t: 0x0\n" 49 "CPU part\t: 0xd03\n" 50 "CPU revision\t: 4\n" 51 "\n" 52 "processor\t: 5\n" 53 "BogoMIPS\t: 52.16\n" 54 "Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\n" 55 "CPU implementer\t: 0x41\n" 56 "CPU architecture: 8\n" 57 "CPU variant\t: 0x0\n" 58 "CPU part\t: 0xd03\n" 59 "CPU revision\t: 4\n" 60 "\n", 61 }, 62 #elif CPUINFO_ARCH_ARM 63 { 64 .path = "/proc/cpuinfo", 65 .size = 1248, 66 .content = 67 "processor\t: 0\n" 68 "BogoMIPS\t: 52.16\n" 69 "Features\t: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt evtstrm\n" 70 "CPU implementer\t: 0x41\n" 71 "CPU architecture: 8\n" 72 "CPU variant\t: 0x0\n" 73 "CPU part\t: 0xd03\n" 74 "CPU revision\t: 4\n" 75 "\n" 76 "processor\t: 1\n" 77 "BogoMIPS\t: 52.16\n" 78 "Features\t: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt evtstrm\n" 79 "CPU implementer\t: 0x41\n" 80 "CPU architecture: 8\n" 81 "CPU variant\t: 0x0\n" 82 "CPU part\t: 0xd03\n" 83 "CPU revision\t: 4\n" 84 "\n" 85 "processor\t: 2\n" 86 "BogoMIPS\t: 52.16\n" 87 "Features\t: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt evtstrm\n" 88 "CPU implementer\t: 0x41\n" 89 "CPU architecture: 8\n" 90 "CPU variant\t: 0x0\n" 91 "CPU part\t: 0xd03\n" 92 "CPU revision\t: 4\n" 93 "\n" 94 "processor\t: 3\n" 95 "BogoMIPS\t: 52.16\n" 96 "Features\t: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt evtstrm\n" 97 "CPU implementer\t: 0x41\n" 98 "CPU architecture: 8\n" 99 "CPU variant\t: 0x0\n" 100 "CPU part\t: 0xd03\n" 101 "CPU revision\t: 4\n" 102 "\n" 103 "processor\t: 4\n" 104 "BogoMIPS\t: 52.16\n" 105 "Features\t: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt evtstrm\n" 106 "CPU implementer\t: 0x41\n" 107 "CPU architecture: 8\n" 108 "CPU variant\t: 0x0\n" 109 "CPU part\t: 0xd03\n" 110 "CPU revision\t: 4\n" 111 "\n" 112 "processor\t: 5\n" 113 "BogoMIPS\t: 52.16\n" 114 "Features\t: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt evtstrm\n" 115 "CPU implementer\t: 0x41\n" 116 "CPU architecture: 8\n" 117 "CPU variant\t: 0x0\n" 118 "CPU part\t: 0xd03\n" 119 "CPU revision\t: 4\n" 120 "\n", 121 }, 122 #endif 123 { 124 .path = "/system/build.prop", 125 .size = 5397, 126 .content = 127 "\n" 128 "# begin build properties\n" 129 "# autogenerated by buildinfo.sh\n" 130 "ro.build.id=N2G47J\n" 131 "ro.build.display.id=N2G47J\n" 132 "ro.build.version.incremental=V8.5.3.0.0.NCJCNED\n" 133 "ro.build.version.sdk=25\n" 134 "ro.build.version.preview_sdk=0\n" 135 "ro.build.version.codename=REL\n" 136 "ro.build.version.all_codenames=REL\n" 137 "ro.build.version.release=7.1.2\n" 138 "ro.build.version.security_patch=2017-05-01\n" 139 "ro.build.version.base_os=\n" 140 "ro.build.date=Thu Jun 15 10:24:29 CST 2017\n" 141 "ro.build.date.utc=1497493469\n" 142 "ro.build.type=user\n" 143 "ro.build.user=builder\n" 144 "ro.build.host=c3-miui-ota-bd09.bj\n" 145 "ro.build.tags=release-keys\n" 146 "ro.build.flavor=song-user\n" 147 "ro.product.model=MI 5C\n" 148 "ro.product.brand=Xiaomi\n" 149 "ro.product.name=meri\n" 150 "ro.product.device=song\n" 151 "ro.product.mod_device=meri_global\n" 152 "ro.product.board=\n" 153 "# ro.product.cpu.abi and ro.product.cpu.abi2 are obsolete,\n" 154 "# use ro.product.cpu.abilist instead.\n" 155 "ro.product.cpu.abi=arm64-v8a\n" 156 "ro.product.cpu.abilist=arm64-v8a,armeabi-v7a,armeabi\n" 157 "ro.product.cpu.abilist32=armeabi-v7a,armeabi\n" 158 "ro.product.cpu.abilist64=arm64-v8a\n" 159 "ro.product.locale=en-US\n" 160 "ro.wifi.channels=\n" 161 "ro.board.platform=song\n" 162 "# ro.build.product is obsolete; use ro.product.device\n" 163 "ro.build.product=song\n" 164 "# Do not try to parse description, fingerprint, or thumbprint\n" 165 "ro.build.description=song-user 7.1.2 N2G47J V8.5.3.0.0.NCJCNED release-keys\n" 166 "ro.build.fingerprint=Xiaomi/meri/meri:7.1.2/N2G47J/V8.5.3.0.0.NCJCNED:user/release-keys\n" 167 "ro.build.characteristics=nosdcard\n" 168 "# end build properties\n" 169 "#\n" 170 "# from device/pinecone/song/system.prop\n" 171 "#\n" 172 "# This overrides settings in the products/generic/system.prop file\n" 173 "#\n" 174 "# rild.libpath=/system/lib/libreference-ril.so\n" 175 "# rild.libargs=-d /dev/ttyS0\n" 176 "ro.sf.lcd_density=480\n" 177 "ro.opengles.version=196610\n" 178 "ro.telephony.default_network=9\n" 179 "ro.ril.modem.pb=0\n" 180 "\n" 181 "# disable strictmode\n" 182 "persist.sys.strictmode.disable=true\n" 183 "mali.hwc.flattener.interval=900\n" 184 "mali.hwc.flattener.enable=1\n" 185 "mali.hwc.rotation.size=69120\n" 186 "\n" 187 "# disable ap log\n" 188 "persist.sys.song.log=/data/local/log,I1,0,0,I2,0,0,I3,0,0,I4,0,0,I5,0,0,I6,0,0\n" 189 "\n" 190 "# dirac\n" 191 "ro.dirac.acs.controller=afm\n" 192 "ro.dirac.acs.storeSettings=1\n" 193 "ro.dirac.afm.mode=global\n" 194 "ro.dirac.config=66\n" 195 "#ro.dirac.max_active.headset=3\n" 196 "#ro.dirac.max_active.powersound=2\n" 197 "ro.dirac.poolsize=2\n" 198 "\n" 199 "# button jack mode & switch\n" 200 "persist.sys.button_jack_profile=volume\n" 201 "persist.sys.button_jack_switch=0\n" 202 "\n" 203 "#power optimize\n" 204 "persist.sys.power.optimize=1\n" 205 "\n" 206 "#hardware ui\n" 207 "debug.hwui.en_partial_updates=false\n" 208 "\n" 209 "# display features\n" 210 "ro.sys.display.support=59\n" 211 "\n" 212 "#hwui properties\n" 213 "ro.hwui.texture_cache_size=72\n" 214 "ro.hwui.layer_cache_size=48\n" 215 "ro.hwui.r_buffer_cache_size=8\n" 216 "ro.hwui.path_cache_size=32\n" 217 "ro.hwui.gradient_cache_size=1\n" 218 "ro.hwui.drop_shadow_cache_size=6\n" 219 "ro.hwui.texture_cache_flushrate=0.4\n" 220 "ro.hwui.text_small_cache_width=1024\n" 221 "ro.hwui.text_small_cache_height=1024\n" 222 "ro.hwui.text_large_cache_width=2048\n" 223 "ro.hwui.text_large_cache_height=1024\n" 224 "\n" 225 "#telephony process\n" 226 "log.tag.InCall=V\n" 227 "\n" 228 "#volume step\n" 229 "ro.config.vc_call_vol_steps=11\n" 230 "\n" 231 "# load 3 mode nvram by default\n" 232 "persist.sys.proj.nvram.mode=3\n" 233 "\n" 234 "# art threads\n" 235 "dalvik.vm.boot-dex2oat-threads=4\n" 236 "dalvik.vm.dex2oat-threads=4\n" 237 "dalvik.vm.image-dex2oat-threads=4\n" 238 "\n" 239 "#\n" 240 "# ADDITIONAL_BUILD_PROPERTIES\n" 241 "#\n" 242 "ro.miui.version.code_time=1492617600\n" 243 "ro.miui.ui.version.code=6\n" 244 "ro.miui.ui.version.name=V8\n" 245 "dalvik.vm.dex2oat-filter=\n" 246 "persist.radio.multisim.config=dsds\n" 247 "persist.logd.size.radio=2M\n" 248 "persist.logd.size.main=2M\n" 249 "persist.logd.size.system=2M\n" 250 "persist.dbg.allow_ims_off=1\n" 251 "ro.setupwizard.mode=OPTIONAL\n" 252 "ro.product.first_api_level=23\n" 253 "dalvik.vm.heapstartsize=8m\n" 254 "dalvik.vm.heapgrowthlimit=192m\n" 255 "dalvik.vm.heapsize=512m\n" 256 "dalvik.vm.heaptargetutilization=0.75\n" 257 "dalvik.vm.heapminfree=512k\n" 258 "dalvik.vm.heapmaxfree=8m\n" 259 "wifi.interface=wlan0\n" 260 "persist.sys.song.msms=221\n" 261 "persist.sys.song.standby.rat=7,3\n" 262 "persist.sys.song.dual2single=1\n" 263 "persist.sys.song.dynamic.rat=1\n" 264 "persist.sys.song.master.card=10\n" 265 "persist.sys.song.check.imei=1\n" 266 "persist.sys.initial.pdp.type=3\n" 267 "persist.ims.ut.enable=1\n" 268 "ffmpeg.force.decodersource=audio\n" 269 "persist.radio.elog.path=1\n" 270 "persist.sys.elog.auto.run=0\n" 271 "persist.sys.calls.on.ims=true\n" 272 "ro.carrier=unknown\n" 273 "ro.ril.hsxpa=1\n" 274 "ro.ril.gprsclass=10\n" 275 "ro.adb.qemud=1\n" 276 "persist.sys.mcd_config_file=/system/etc/mcd_default.conf\n" 277 "persist.sys.perf.debug=true\n" 278 "ro.ss.version=5.1.111-004\n" 279 "ro.ss.nohidden=true\n" 280 "persist.sys.dalvik.vm.lib.2=libart.so\n" 281 "dalvik.vm.isa.arm64.variant=generic\n" 282 "dalvik.vm.isa.arm64.features=default\n" 283 "dalvik.vm.isa.arm.variant=cortex-a15\n" 284 "dalvik.vm.isa.arm.features=default\n" 285 "net.bt.name=Android\n" 286 "dalvik.vm.stack-trace-file=/data/anr/traces.txt\n" 287 "ro.miui.has_real_blur=1\n" 288 "ro.miui.has_handy_mode_sf=1\n" 289 "fw.max_users=5\n" 290 "ro.product.mod_device=meri_global\n" 291 "ro.config.sms_received_sound=FadeIn.ogg\n" 292 "ro.config.sms_delivered_sound=MessageComplete.ogg\n" 293 "ro.com.android.mobiledata=false\n" 294 "ro.product.manufacturer=Xiaomi\n" 295 "ro.config.elder-ringtone=Angel.mp3\n" 296 "keyguard.no_require_sim=true\n" 297 "ro.com.android.dataroaming=false\n" 298 "persist.sys.mitalk.enable=true\n" 299 "ro.config.ringtone=Ring_Synth_04.ogg\n" 300 "ro.config.notification_sound=pixiedust.ogg\n" 301 "ro.config.alarm_alert=Alarm_Classic.ogg\n" 302 "ro.product.cuptsm=XIAOMI|ESE|02|01\n" 303 "qemu.hw.mainkeys=1\n" 304 "persist.dbg.volte_avail_ovr=1\n" 305 "persist.dbg.vt_avail_ovr=1\n" 306 "persist.sys.handy_mode_cct=160\n" 307 "ro.config.max_starting_bg=4\n" 308 "persist.added_boot_bgservices=4\n" 309 "ro.com.google.clientidbase=android-xiaomi\n" 310 "ro.expect.recovery_id=0x69417ef0f89bc80082ed241388a04ba1581a1182376d101747b4a3bb8171d7e8\n" 311 "\n" 312 "persist.sys.timezone=America/New_York\n" 313 "ro.product.locale.language=en\n" 314 "ro.product.locale.region=US\n" 315 "ro.miui.region=US\n" 316 "ro.miui.mcc=9310\n" 317 "ro.miui.mnc=9999\n" 318 "ro.miui.cust_variant=us\n" 319 "\n" 320 "ro.adb.secure=1\n" 321 "persist.adb.notify=0\n", 322 }, 323 { 324 .path = "/sys/devices/system/cpu/kernel_max", 325 .size = 2, 326 .content = "7\n", 327 }, 328 { 329 .path = "/sys/devices/system/cpu/modalias", 330 .size = 66, 331 .content = "cpu:type:aarch64:feature:,0000,0001,0002,0003,0004,0005,0006,0007\n", 332 }, 333 { 334 .path = "/sys/devices/system/cpu/offline", 335 .size = 4, 336 .content = "6-7\n", 337 }, 338 { 339 .path = "/sys/devices/system/cpu/online", 340 .size = 4, 341 .content = "0-5\n", 342 }, 343 { 344 .path = "/sys/devices/system/cpu/possible", 345 .size = 4, 346 .content = "0-7\n", 347 }, 348 { 349 .path = "/sys/devices/system/cpu/present", 350 .size = 4, 351 .content = "0-7\n", 352 }, 353 { 354 .path = "/sys/devices/system/cpu/cpufreq/all_time_in_state", 355 .size = 409, 356 .content = 357 "freq\t\tcpu0\t\tcpu1\t\tcpu2\t\tcpu3\t\tcpu4\t\tcpu5\t\tcpu6\t\tcpu7\t\t\n" 358 "460800\t\t3124\t\t3124\t\t3124\t\t3124\t\tN/A\t\tN/A\t\t\n" 359 "624000\t\t165\t\t165\t\t165\t\t165\t\tN/A\t\tN/A\t\t\n" 360 "1248000\t\t6344\t\t6344\t\t6344\t\t6344\t\tN/A\t\tN/A\t\t\n" 361 "1404000\t\t86\t\t86\t\t86\t\t86\t\tN/A\t\tN/A\t\t\n" 362 "1843200\t\tN/A\t\tN/A\t\tN/A\t\tN/A\t\t8105\t\t8105\t\t\n" 363 "1950000\t\tN/A\t\tN/A\t\tN/A\t\tN/A\t\t0\t\t0\t\t\n" 364 "2002000\t\tN/A\t\tN/A\t\tN/A\t\tN/A\t\t0\t\t0\t\t\n" 365 "2106000\t\tN/A\t\tN/A\t\tN/A\t\tN/A\t\t14\t\t14\t\t\n" 366 "2158000\t\tN/A\t\tN/A\t\tN/A\t\tN/A\t\t180\t\t180\t\t\n", 367 }, 368 { 369 .path = "/sys/devices/system/cpu/cpufreq/current_in_state", 370 .size = 116, 371 .content = 372 "CPU0:460800=46 624000=70 1248000=174 1404000=217 \n" 373 "CPU4:1843200=300 1950000=352 2002000=370 2106000=421 2158000=470 \n", 374 }, 375 { 376 .path = "/sys/devices/system/cpu/cpuidle/current_driver", 377 .size = 11, 378 .content = "arm64_idle\n", 379 }, 380 { 381 .path = "/sys/devices/system/cpu/cpuidle/current_governor_ro", 382 .size = 5, 383 .content = "menu\n", 384 }, 385 { 386 .path = "/sys/devices/system/cpu/cpu0/cpufreq/affected_cpus", 387 .size = 8, 388 .content = "0 1 2 3\n", 389 }, 390 { 391 .path = "/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq", 392 .size = 8, 393 .content = "1404000\n", 394 }, 395 { 396 .path = "/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_min_freq", 397 .size = 7, 398 .content = "460800\n", 399 }, 400 { 401 .path = "/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_transition_latency", 402 .size = 6, 403 .content = "65536\n", 404 }, 405 { 406 .path = "/sys/devices/system/cpu/cpu0/cpufreq/related_cpus", 407 .size = 8, 408 .content = "0 1 2 3\n", 409 }, 410 { 411 .path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies", 412 .size = 31, 413 .content = "460800 624000 1248000 1404000 \n", 414 }, 415 { 416 .path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors", 417 .size = 54, 418 .content = "ondemand userspace powersave interactive performance \n", 419 }, 420 { 421 .path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq", 422 .size = 7, 423 .content = "460800\n", 424 }, 425 { 426 .path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_driver", 427 .size = 13, 428 .content = "song-cpufreq\n", 429 }, 430 { 431 .path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor", 432 .size = 12, 433 .content = "interactive\n", 434 }, 435 { 436 .path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq", 437 .size = 7, 438 .content = "460800\n", 439 }, 440 { 441 .path = "/sys/devices/system/cpu/cpu0/cpufreq/stats/time_in_state", 442 .size = 47, 443 .content = 444 "460800 3240\n" 445 "624000 165\n" 446 "1248000 6358\n" 447 "1404000 86\n", 448 }, 449 { 450 .path = "/sys/devices/system/cpu/cpu0/cpufreq/stats/total_trans", 451 .size = 4, 452 .content = "152\n", 453 }, 454 { 455 .path = "/sys/devices/system/cpu/cpu0/topology/core_id", 456 .size = 2, 457 .content = "0\n", 458 }, 459 { 460 .path = "/sys/devices/system/cpu/cpu0/topology/core_siblings", 461 .size = 3, 462 .content = "0f\n", 463 }, 464 { 465 .path = "/sys/devices/system/cpu/cpu0/topology/core_siblings_list", 466 .size = 4, 467 .content = "0-3\n", 468 }, 469 { 470 .path = "/sys/devices/system/cpu/cpu0/topology/physical_package_id", 471 .size = 2, 472 .content = "0\n", 473 }, 474 { 475 .path = "/sys/devices/system/cpu/cpu0/topology/thread_siblings", 476 .size = 3, 477 .content = "01\n", 478 }, 479 { 480 .path = "/sys/devices/system/cpu/cpu0/topology/thread_siblings_list", 481 .size = 2, 482 .content = "0\n", 483 }, 484 { 485 .path = "/sys/devices/system/cpu/cpu1/cpufreq/affected_cpus", 486 .size = 8, 487 .content = "0 1 2 3\n", 488 }, 489 { 490 .path = "/sys/devices/system/cpu/cpu1/cpufreq/cpuinfo_max_freq", 491 .size = 8, 492 .content = "1404000\n", 493 }, 494 { 495 .path = "/sys/devices/system/cpu/cpu1/cpufreq/cpuinfo_min_freq", 496 .size = 7, 497 .content = "460800\n", 498 }, 499 { 500 .path = "/sys/devices/system/cpu/cpu1/cpufreq/cpuinfo_transition_latency", 501 .size = 6, 502 .content = "65536\n", 503 }, 504 { 505 .path = "/sys/devices/system/cpu/cpu1/cpufreq/related_cpus", 506 .size = 8, 507 .content = "0 1 2 3\n", 508 }, 509 { 510 .path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_available_frequencies", 511 .size = 31, 512 .content = "460800 624000 1248000 1404000 \n", 513 }, 514 { 515 .path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_available_governors", 516 .size = 54, 517 .content = "ondemand userspace powersave interactive performance \n", 518 }, 519 { 520 .path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_cur_freq", 521 .size = 7, 522 .content = "460800\n", 523 }, 524 { 525 .path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_driver", 526 .size = 13, 527 .content = "song-cpufreq\n", 528 }, 529 { 530 .path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_governor", 531 .size = 12, 532 .content = "interactive\n", 533 }, 534 { 535 .path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_min_freq", 536 .size = 7, 537 .content = "460800\n", 538 }, 539 { 540 .path = "/sys/devices/system/cpu/cpu1/cpufreq/stats/time_in_state", 541 .size = 47, 542 .content = 543 "460800 3445\n" 544 "624000 194\n" 545 "1248000 6358\n" 546 "1404000 86\n", 547 }, 548 { 549 .path = "/sys/devices/system/cpu/cpu1/cpufreq/stats/total_trans", 550 .size = 4, 551 .content = "154\n", 552 }, 553 { 554 .path = "/sys/devices/system/cpu/cpu1/topology/core_id", 555 .size = 2, 556 .content = "1\n", 557 }, 558 { 559 .path = "/sys/devices/system/cpu/cpu1/topology/core_siblings", 560 .size = 3, 561 .content = "0f\n", 562 }, 563 { 564 .path = "/sys/devices/system/cpu/cpu1/topology/core_siblings_list", 565 .size = 4, 566 .content = "0-3\n", 567 }, 568 { 569 .path = "/sys/devices/system/cpu/cpu1/topology/physical_package_id", 570 .size = 2, 571 .content = "0\n", 572 }, 573 { 574 .path = "/sys/devices/system/cpu/cpu1/topology/thread_siblings", 575 .size = 3, 576 .content = "02\n", 577 }, 578 { 579 .path = "/sys/devices/system/cpu/cpu1/topology/thread_siblings_list", 580 .size = 2, 581 .content = "1\n", 582 }, 583 { 584 .path = "/sys/devices/system/cpu/cpu2/cpufreq/affected_cpus", 585 .size = 8, 586 .content = "0 1 2 3\n", 587 }, 588 { 589 .path = "/sys/devices/system/cpu/cpu2/cpufreq/cpuinfo_max_freq", 590 .size = 8, 591 .content = "1404000\n", 592 }, 593 { 594 .path = "/sys/devices/system/cpu/cpu2/cpufreq/cpuinfo_min_freq", 595 .size = 7, 596 .content = "460800\n", 597 }, 598 { 599 .path = "/sys/devices/system/cpu/cpu2/cpufreq/cpuinfo_transition_latency", 600 .size = 6, 601 .content = "65536\n", 602 }, 603 { 604 .path = "/sys/devices/system/cpu/cpu2/cpufreq/related_cpus", 605 .size = 8, 606 .content = "0 1 2 3\n", 607 }, 608 { 609 .path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_available_frequencies", 610 .size = 31, 611 .content = "460800 624000 1248000 1404000 \n", 612 }, 613 { 614 .path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_available_governors", 615 .size = 54, 616 .content = "ondemand userspace powersave interactive performance \n", 617 }, 618 { 619 .path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_cur_freq", 620 .size = 7, 621 .content = "460800\n", 622 }, 623 { 624 .path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_driver", 625 .size = 13, 626 .content = "song-cpufreq\n", 627 }, 628 { 629 .path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_governor", 630 .size = 12, 631 .content = "interactive\n", 632 }, 633 { 634 .path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_min_freq", 635 .size = 7, 636 .content = "460800\n", 637 }, 638 { 639 .path = "/sys/devices/system/cpu/cpu2/cpufreq/stats/time_in_state", 640 .size = 47, 641 .content = 642 "460800 3671\n" 643 "624000 194\n" 644 "1248000 6368\n" 645 "1404000 86\n", 646 }, 647 { 648 .path = "/sys/devices/system/cpu/cpu2/cpufreq/stats/total_trans", 649 .size = 4, 650 .content = "156\n", 651 }, 652 { 653 .path = "/sys/devices/system/cpu/cpu2/topology/core_id", 654 .size = 2, 655 .content = "2\n", 656 }, 657 { 658 .path = "/sys/devices/system/cpu/cpu2/topology/core_siblings", 659 .size = 3, 660 .content = "0f\n", 661 }, 662 { 663 .path = "/sys/devices/system/cpu/cpu2/topology/core_siblings_list", 664 .size = 4, 665 .content = "0-3\n", 666 }, 667 { 668 .path = "/sys/devices/system/cpu/cpu2/topology/physical_package_id", 669 .size = 2, 670 .content = "0\n", 671 }, 672 { 673 .path = "/sys/devices/system/cpu/cpu2/topology/thread_siblings", 674 .size = 3, 675 .content = "04\n", 676 }, 677 { 678 .path = "/sys/devices/system/cpu/cpu2/topology/thread_siblings_list", 679 .size = 2, 680 .content = "2\n", 681 }, 682 { 683 .path = "/sys/devices/system/cpu/cpu3/cpufreq/affected_cpus", 684 .size = 8, 685 .content = "0 1 2 3\n", 686 }, 687 { 688 .path = "/sys/devices/system/cpu/cpu3/cpufreq/cpuinfo_max_freq", 689 .size = 8, 690 .content = "1404000\n", 691 }, 692 { 693 .path = "/sys/devices/system/cpu/cpu3/cpufreq/cpuinfo_min_freq", 694 .size = 7, 695 .content = "460800\n", 696 }, 697 { 698 .path = "/sys/devices/system/cpu/cpu3/cpufreq/cpuinfo_transition_latency", 699 .size = 6, 700 .content = "65536\n", 701 }, 702 { 703 .path = "/sys/devices/system/cpu/cpu3/cpufreq/related_cpus", 704 .size = 8, 705 .content = "0 1 2 3\n", 706 }, 707 { 708 .path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_available_frequencies", 709 .size = 31, 710 .content = "460800 624000 1248000 1404000 \n", 711 }, 712 { 713 .path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_available_governors", 714 .size = 54, 715 .content = "ondemand userspace powersave interactive performance \n", 716 }, 717 { 718 .path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_cur_freq", 719 .size = 7, 720 .content = "460800\n", 721 }, 722 { 723 .path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_driver", 724 .size = 13, 725 .content = "song-cpufreq\n", 726 }, 727 { 728 .path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_governor", 729 .size = 12, 730 .content = "interactive\n", 731 }, 732 { 733 .path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_min_freq", 734 .size = 7, 735 .content = "460800\n", 736 }, 737 { 738 .path = "/sys/devices/system/cpu/cpu3/cpufreq/stats/time_in_state", 739 .size = 47, 740 .content = 741 "460800 3914\n" 742 "624000 194\n" 743 "1248000 6368\n" 744 "1404000 86\n", 745 }, 746 { 747 .path = "/sys/devices/system/cpu/cpu3/cpufreq/stats/total_trans", 748 .size = 4, 749 .content = "156\n", 750 }, 751 { 752 .path = "/sys/devices/system/cpu/cpu3/topology/core_id", 753 .size = 2, 754 .content = "3\n", 755 }, 756 { 757 .path = "/sys/devices/system/cpu/cpu3/topology/core_siblings", 758 .size = 3, 759 .content = "0f\n", 760 }, 761 { 762 .path = "/sys/devices/system/cpu/cpu3/topology/core_siblings_list", 763 .size = 4, 764 .content = "0-3\n", 765 }, 766 { 767 .path = "/sys/devices/system/cpu/cpu3/topology/physical_package_id", 768 .size = 2, 769 .content = "0\n", 770 }, 771 { 772 .path = "/sys/devices/system/cpu/cpu3/topology/thread_siblings", 773 .size = 3, 774 .content = "08\n", 775 }, 776 { 777 .path = "/sys/devices/system/cpu/cpu3/topology/thread_siblings_list", 778 .size = 2, 779 .content = "3\n", 780 }, 781 { 782 .path = "/sys/devices/system/cpu/cpu4/cpufreq/affected_cpus", 783 .size = 4, 784 .content = "4 5\n", 785 }, 786 { 787 .path = "/sys/devices/system/cpu/cpu4/cpufreq/cpuinfo_max_freq", 788 .size = 8, 789 .content = "2158000\n", 790 }, 791 { 792 .path = "/sys/devices/system/cpu/cpu4/cpufreq/cpuinfo_min_freq", 793 .size = 8, 794 .content = "1843200\n", 795 }, 796 { 797 .path = "/sys/devices/system/cpu/cpu4/cpufreq/cpuinfo_transition_latency", 798 .size = 6, 799 .content = "78536\n", 800 }, 801 { 802 .path = "/sys/devices/system/cpu/cpu4/cpufreq/related_cpus", 803 .size = 8, 804 .content = "4 5 6 7\n", 805 }, 806 { 807 .path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_available_frequencies", 808 .size = 41, 809 .content = "1843200 1950000 2002000 2106000 2158000 \n", 810 }, 811 { 812 .path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_available_governors", 813 .size = 54, 814 .content = "ondemand userspace powersave interactive performance \n", 815 }, 816 { 817 .path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_cur_freq", 818 .size = 8, 819 .content = "1843200\n", 820 }, 821 { 822 .path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_driver", 823 .size = 13, 824 .content = "song-cpufreq\n", 825 }, 826 { 827 .path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_governor", 828 .size = 12, 829 .content = "interactive\n", 830 }, 831 { 832 .path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_max_freq", 833 .size = 8, 834 .content = "1843200\n", 835 }, 836 { 837 .path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_min_freq", 838 .size = 8, 839 .content = "1843200\n", 840 }, 841 { 842 .path = "/sys/devices/system/cpu/cpu4/cpufreq/stats/time_in_state", 843 .size = 54, 844 .content = 845 "1843200 6013\n" 846 "1950000 0\n" 847 "2002000 0\n" 848 "2106000 1\n" 849 "2158000 54\n", 850 }, 851 { 852 .path = "/sys/devices/system/cpu/cpu4/cpufreq/stats/total_trans", 853 .size = 2, 854 .content = "3\n", 855 }, 856 { 857 .path = "/sys/devices/system/cpu/cpu4/topology/core_id", 858 .size = 2, 859 .content = "0\n", 860 }, 861 { 862 .path = "/sys/devices/system/cpu/cpu4/topology/core_siblings", 863 .size = 3, 864 .content = "f0\n", 865 }, 866 { 867 .path = "/sys/devices/system/cpu/cpu4/topology/core_siblings_list", 868 .size = 4, 869 .content = "4-7\n", 870 }, 871 { 872 .path = "/sys/devices/system/cpu/cpu4/topology/physical_package_id", 873 .size = 2, 874 .content = "1\n", 875 }, 876 { 877 .path = "/sys/devices/system/cpu/cpu4/topology/thread_siblings", 878 .size = 3, 879 .content = "10\n", 880 }, 881 { 882 .path = "/sys/devices/system/cpu/cpu4/topology/thread_siblings_list", 883 .size = 2, 884 .content = "4\n", 885 }, 886 { 887 .path = "/sys/devices/system/cpu/cpu5/cpufreq/affected_cpus", 888 .size = 4, 889 .content = "4 5\n", 890 }, 891 { 892 .path = "/sys/devices/system/cpu/cpu5/cpufreq/cpuinfo_max_freq", 893 .size = 8, 894 .content = "2158000\n", 895 }, 896 { 897 .path = "/sys/devices/system/cpu/cpu5/cpufreq/cpuinfo_min_freq", 898 .size = 8, 899 .content = "1843200\n", 900 }, 901 { 902 .path = "/sys/devices/system/cpu/cpu5/cpufreq/cpuinfo_transition_latency", 903 .size = 6, 904 .content = "78536\n", 905 }, 906 { 907 .path = "/sys/devices/system/cpu/cpu5/cpufreq/related_cpus", 908 .size = 8, 909 .content = "4 5 6 7\n", 910 }, 911 { 912 .path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_available_frequencies", 913 .size = 41, 914 .content = "1843200 1950000 2002000 2106000 2158000 \n", 915 }, 916 { 917 .path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_available_governors", 918 .size = 54, 919 .content = "ondemand userspace powersave interactive performance \n", 920 }, 921 { 922 .path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_cur_freq", 923 .size = 8, 924 .content = "1843200\n", 925 }, 926 { 927 .path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_driver", 928 .size = 13, 929 .content = "song-cpufreq\n", 930 }, 931 { 932 .path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_governor", 933 .size = 12, 934 .content = "interactive\n", 935 }, 936 { 937 .path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_max_freq", 938 .size = 8, 939 .content = "1843200\n", 940 }, 941 { 942 .path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_min_freq", 943 .size = 8, 944 .content = "1843200\n", 945 }, 946 { 947 .path = "/sys/devices/system/cpu/cpu5/cpufreq/stats/time_in_state", 948 .size = 54, 949 .content = 950 "1843200 6264\n" 951 "1950000 0\n" 952 "2002000 0\n" 953 "2106000 1\n" 954 "2158000 54\n", 955 }, 956 { 957 .path = "/sys/devices/system/cpu/cpu5/cpufreq/stats/total_trans", 958 .size = 2, 959 .content = "3\n", 960 }, 961 { 962 .path = "/sys/devices/system/cpu/cpu5/topology/core_id", 963 .size = 2, 964 .content = "1\n", 965 }, 966 { 967 .path = "/sys/devices/system/cpu/cpu5/topology/core_siblings", 968 .size = 3, 969 .content = "f0\n", 970 }, 971 { 972 .path = "/sys/devices/system/cpu/cpu5/topology/core_siblings_list", 973 .size = 4, 974 .content = "4-7\n", 975 }, 976 { 977 .path = "/sys/devices/system/cpu/cpu5/topology/physical_package_id", 978 .size = 2, 979 .content = "1\n", 980 }, 981 { 982 .path = "/sys/devices/system/cpu/cpu5/topology/thread_siblings", 983 .size = 3, 984 .content = "20\n", 985 }, 986 { 987 .path = "/sys/devices/system/cpu/cpu5/topology/thread_siblings_list", 988 .size = 2, 989 .content = "5\n", 990 }, 991 { NULL }, 992 }; 993 #ifdef __ANDROID__ 994 struct cpuinfo_mock_property properties[] = { 995 { 996 .key = "dalvik.vm.appimageformat", 997 .value = "lz4", 998 }, 999 { 1000 .key = "dalvik.vm.boot-dex2oat-threads", 1001 .value = "4", 1002 }, 1003 { 1004 .key = "dalvik.vm.dex2oat-Xms", 1005 .value = "64m", 1006 }, 1007 { 1008 .key = "dalvik.vm.dex2oat-Xmx", 1009 .value = "512m", 1010 }, 1011 { 1012 .key = "dalvik.vm.dex2oat-filter", 1013 .value = "", 1014 }, 1015 { 1016 .key = "dalvik.vm.dex2oat-threads", 1017 .value = "4", 1018 }, 1019 { 1020 .key = "dalvik.vm.heapgrowthlimit", 1021 .value = "192m", 1022 }, 1023 { 1024 .key = "dalvik.vm.heapmaxfree", 1025 .value = "8m", 1026 }, 1027 { 1028 .key = "dalvik.vm.heapminfree", 1029 .value = "512k", 1030 }, 1031 { 1032 .key = "dalvik.vm.heapsize", 1033 .value = "512m", 1034 }, 1035 { 1036 .key = "dalvik.vm.heapstartsize", 1037 .value = "8m", 1038 }, 1039 { 1040 .key = "dalvik.vm.heaptargetutilization", 1041 .value = "0.75", 1042 }, 1043 { 1044 .key = "dalvik.vm.image-dex2oat-Xms", 1045 .value = "64m", 1046 }, 1047 { 1048 .key = "dalvik.vm.image-dex2oat-Xmx", 1049 .value = "64m", 1050 }, 1051 { 1052 .key = "dalvik.vm.image-dex2oat-threads", 1053 .value = "4", 1054 }, 1055 { 1056 .key = "dalvik.vm.isa.arm.features", 1057 .value = "default", 1058 }, 1059 { 1060 .key = "dalvik.vm.isa.arm.variant", 1061 .value = "cortex-a15", 1062 }, 1063 { 1064 .key = "dalvik.vm.isa.arm64.features", 1065 .value = "default", 1066 }, 1067 { 1068 .key = "dalvik.vm.isa.arm64.variant", 1069 .value = "generic", 1070 }, 1071 { 1072 .key = "dalvik.vm.stack-trace-file", 1073 .value = "/data/anr/traces.txt", 1074 }, 1075 { 1076 .key = "dalvik.vm.usejit", 1077 .value = "true", 1078 }, 1079 { 1080 .key = "dalvik.vm.usejitprofiles", 1081 .value = "true", 1082 }, 1083 { 1084 .key = "debug.atrace.tags.enableflags", 1085 .value = "0", 1086 }, 1087 { 1088 .key = "debug.force_rtl", 1089 .value = "0", 1090 }, 1091 { 1092 .key = "debug.hwui.en_partial_updates", 1093 .value = "false", 1094 }, 1095 { 1096 .key = "dev.bootcomplete", 1097 .value = "1", 1098 }, 1099 { 1100 .key = "events.cpu", 1101 .value = "true", 1102 }, 1103 { 1104 .key = "ffmpeg.force.decodersource", 1105 .value = "audio", 1106 }, 1107 { 1108 .key = "fw.max_users", 1109 .value = "5", 1110 }, 1111 { 1112 .key = "gsm.current.phone-type", 1113 .value = "1,1", 1114 }, 1115 { 1116 .key = "gsm.network.type", 1117 .value = "EDGE,Unknown", 1118 }, 1119 { 1120 .key = "gsm.operator.alpha", 1121 .value = "", 1122 }, 1123 { 1124 .key = "gsm.operator.iso-country", 1125 .value = "", 1126 }, 1127 { 1128 .key = "gsm.operator.isroaming", 1129 .value = "false,false", 1130 }, 1131 { 1132 .key = "gsm.operator.numeric", 1133 .value = "", 1134 }, 1135 { 1136 .key = "gsm.operator.orig.alpha", 1137 .value = "", 1138 }, 1139 { 1140 .key = "gsm.sim.operator.alpha", 1141 .value = ",", 1142 }, 1143 { 1144 .key = "gsm.sim.operator.iso-country", 1145 .value = ",", 1146 }, 1147 { 1148 .key = "gsm.sim.operator.numeric", 1149 .value = ",", 1150 }, 1151 { 1152 .key = "gsm.sim.state", 1153 .value = "ABSENT,ABSENT", 1154 }, 1155 { 1156 .key = "gsm.version.baseband", 1157 .value = "ABIES.R10.T46-be91e70-141f514", 1158 }, 1159 { 1160 .key = "gsm.version.baseband1", 1161 .value = "ABIES.R10.T46-be91e70-141f514", 1162 }, 1163 { 1164 .key = "gsm.version.ril-impl", 1165 .value = "android reference-ril 1.0", 1166 }, 1167 { 1168 .key = "ims.ecclist", 1169 .value = "", 1170 }, 1171 { 1172 .key = "ims.emergency.service", 1173 .value = "0", 1174 }, 1175 { 1176 .key = "ims.ut.registered", 1177 .value = "0", 1178 }, 1179 { 1180 .key = "init.svc.adbd", 1181 .value = "running", 1182 }, 1183 { 1184 .key = "init.svc.audioserver", 1185 .value = "running", 1186 }, 1187 { 1188 .key = "init.svc.bootanim", 1189 .value = "stopped", 1190 }, 1191 { 1192 .key = "init.svc.bt_init", 1193 .value = "stopped", 1194 }, 1195 { 1196 .key = "init.svc.cameraserver", 1197 .value = "running", 1198 }, 1199 { 1200 .key = "init.svc.clear-bcb", 1201 .value = "stopped", 1202 }, 1203 { 1204 .key = "init.svc.debuggerd", 1205 .value = "running", 1206 }, 1207 { 1208 .key = "init.svc.debuggerd64", 1209 .value = "running", 1210 }, 1211 { 1212 .key = "init.svc.displayfeature", 1213 .value = "running", 1214 }, 1215 { 1216 .key = "init.svc.dns_eth0", 1217 .value = "stopped", 1218 }, 1219 { 1220 .key = "init.svc.drm", 1221 .value = "running", 1222 }, 1223 { 1224 .key = "init.svc.emsd", 1225 .value = "running", 1226 }, 1227 { 1228 .key = "init.svc.fdpp", 1229 .value = "running", 1230 }, 1231 { 1232 .key = "init.svc.fingerprintd", 1233 .value = "running", 1234 }, 1235 { 1236 .key = "init.svc.gatekeeperd", 1237 .value = "running", 1238 }, 1239 { 1240 .key = "init.svc.gps-daemon", 1241 .value = "running", 1242 }, 1243 { 1244 .key = "init.svc.healthd", 1245 .value = "running", 1246 }, 1247 { 1248 .key = "init.svc.iild", 1249 .value = "running", 1250 }, 1251 { 1252 .key = "init.svc.installd", 1253 .value = "running", 1254 }, 1255 { 1256 .key = "init.svc.keystore", 1257 .value = "running", 1258 }, 1259 { 1260 .key = "init.svc.lcvmserver", 1261 .value = "running", 1262 }, 1263 { 1264 .key = "init.svc.leds-sh", 1265 .value = "stopped", 1266 }, 1267 { 1268 .key = "init.svc.lmkd", 1269 .value = "running", 1270 }, 1271 { 1272 .key = "init.svc.logd", 1273 .value = "running", 1274 }, 1275 { 1276 .key = "init.svc.logd-reinit", 1277 .value = "stopped", 1278 }, 1279 { 1280 .key = "init.svc.mcd_init", 1281 .value = "stopped", 1282 }, 1283 { 1284 .key = "init.svc.mcd_service", 1285 .value = "running", 1286 }, 1287 { 1288 .key = "init.svc.media", 1289 .value = "running", 1290 }, 1291 { 1292 .key = "init.svc.mediacodec", 1293 .value = "running", 1294 }, 1295 { 1296 .key = "init.svc.mediadrm", 1297 .value = "running", 1298 }, 1299 { 1300 .key = "init.svc.mediaextractor", 1301 .value = "running", 1302 }, 1303 { 1304 .key = "init.svc.mlipayservice", 1305 .value = "running", 1306 }, 1307 { 1308 .key = "init.svc.mqsasd", 1309 .value = "running", 1310 }, 1311 { 1312 .key = "init.svc.mtservice", 1313 .value = "running", 1314 }, 1315 { 1316 .key = "init.svc.netd", 1317 .value = "running", 1318 }, 1319 { 1320 .key = "init.svc.otad", 1321 .value = "running", 1322 }, 1323 { 1324 .key = "init.svc.p2p_supplicant", 1325 .value = "running", 1326 }, 1327 { 1328 .key = "init.svc.radio_config", 1329 .value = "running", 1330 }, 1331 { 1332 .key = "init.svc.rild0", 1333 .value = "running", 1334 }, 1335 { 1336 .key = "init.svc.rild1", 1337 .value = "running", 1338 }, 1339 { 1340 .key = "init.svc.servicemanager", 1341 .value = "running", 1342 }, 1343 { 1344 .key = "init.svc.shelld", 1345 .value = "running", 1346 }, 1347 { 1348 .key = "init.svc.smeloop", 1349 .value = "stopped", 1350 }, 1351 { 1352 .key = "init.svc.song-elog-boot", 1353 .value = "stopped", 1354 }, 1355 { 1356 .key = "init.svc.song-mla-manager", 1357 .value = "stopped", 1358 }, 1359 { 1360 .key = "init.svc.song-oms-mla0", 1361 .value = "stopped", 1362 }, 1363 { 1364 .key = "init.svc.song-oms-mla1", 1365 .value = "stopped", 1366 }, 1367 { 1368 .key = "init.svc.song-oms-mla2", 1369 .value = "stopped", 1370 }, 1371 { 1372 .key = "init.svc.song-oms-mla3", 1373 .value = "stopped", 1374 }, 1375 { 1376 .key = "init.svc.song-oms-sa", 1377 .value = "running", 1378 }, 1379 { 1380 .key = "init.svc.song-thermal", 1381 .value = "running", 1382 }, 1383 { 1384 .key = "init.svc.ssService", 1385 .value = "running", 1386 }, 1387 { 1388 .key = "init.svc.surfaceflinger", 1389 .value = "running", 1390 }, 1391 { 1392 .key = "init.svc.tee_supplicant", 1393 .value = "running", 1394 }, 1395 { 1396 .key = "init.svc.ueventd", 1397 .value = "running", 1398 }, 1399 { 1400 .key = "init.svc.vold", 1401 .value = "running", 1402 }, 1403 { 1404 .key = "init.svc.wifi_init", 1405 .value = "stopped", 1406 }, 1407 { 1408 .key = "init.svc.zygote", 1409 .value = "running", 1410 }, 1411 { 1412 .key = "init.svc.zygote_secondary", 1413 .value = "running", 1414 }, 1415 { 1416 .key = "keyguard.no_require_sim", 1417 .value = "true", 1418 }, 1419 { 1420 .key = "log.tag.InCall", 1421 .value = "V", 1422 }, 1423 { 1424 .key = "mali.hwc.flattener.enable", 1425 .value = "1", 1426 }, 1427 { 1428 .key = "mali.hwc.flattener.interval", 1429 .value = "900", 1430 }, 1431 { 1432 .key = "mali.hwc.rotation.size", 1433 .value = "69120", 1434 }, 1435 { 1436 .key = "mcd.extra.params", 1437 .value = "", 1438 }, 1439 { 1440 .key = "net.bt.name", 1441 .value = "Android", 1442 }, 1443 { 1444 .key = "net.change", 1445 .value = "net.lte.ims.data.enabled", 1446 }, 1447 { 1448 .key = "net.hostname", 1449 .value = "MI5C-MiPhone", 1450 }, 1451 { 1452 .key = "net.lte.ims.data.enabled", 1453 .value = "true", 1454 }, 1455 { 1456 .key = "net.qtaguid_enabled", 1457 .value = "1", 1458 }, 1459 { 1460 .key = "net.tcp.default_init_rwnd", 1461 .value = "60", 1462 }, 1463 { 1464 .key = "persist.adb.notify", 1465 .value = "0", 1466 }, 1467 { 1468 .key = "persist.added_boot_bgservices", 1469 .value = "4", 1470 }, 1471 { 1472 .key = "persist.camera.module.info", 1473 .value = "back_camera=ov12870,front_camera=ov8865", 1474 }, 1475 { 1476 .key = "persist.dbg.allow_ims_off", 1477 .value = "1", 1478 }, 1479 { 1480 .key = "persist.dbg.volte_avail_ovr", 1481 .value = "0", 1482 }, 1483 { 1484 .key = "persist.dbg.vt_avail_ovr", 1485 .value = "1", 1486 }, 1487 { 1488 .key = "persist.ims.ut.enable", 1489 .value = "1", 1490 }, 1491 { 1492 .key = "persist.logd.prunelist", 1493 .value = "1000 1013 1001", 1494 }, 1495 { 1496 .key = "persist.logd.size.main", 1497 .value = "2M", 1498 }, 1499 { 1500 .key = "persist.logd.size.radio", 1501 .value = "2M", 1502 }, 1503 { 1504 .key = "persist.logd.size.system", 1505 .value = "2M", 1506 }, 1507 { 1508 .key = "persist.radio.elog.path", 1509 .value = "1", 1510 }, 1511 { 1512 .key = "persist.radio.multisim.config", 1513 .value = "dsds", 1514 }, 1515 { 1516 .key = "persist.radio.song.master.card", 1517 .value = "10", 1518 }, 1519 { 1520 .key = "persist.service.bdroid.bdaddr", 1521 .value = "ac:c1:ee:fc:b3:cc", 1522 }, 1523 { 1524 .key = "persist.sys.button_jack_profile", 1525 .value = "volume", 1526 }, 1527 { 1528 .key = "persist.sys.button_jack_switch", 1529 .value = "0", 1530 }, 1531 { 1532 .key = "persist.sys.calls.on.ims", 1533 .value = "true", 1534 }, 1535 { 1536 .key = "persist.sys.cucc.gsm.3mode", 1537 .value = "0", 1538 }, 1539 { 1540 .key = "persist.sys.dalvik.vm.lib.2", 1541 .value = "libart.so", 1542 }, 1543 { 1544 .key = "persist.sys.display_cabc", 1545 .value = "1", 1546 }, 1547 { 1548 .key = "persist.sys.display_ce", 1549 .value = "10", 1550 }, 1551 { 1552 .key = "persist.sys.display_eyecare", 1553 .value = "0", 1554 }, 1555 { 1556 .key = "persist.sys.display_prefer", 1557 .value = "2", 1558 }, 1559 { 1560 .key = "persist.sys.elog.auto.run", 1561 .value = "0", 1562 }, 1563 { 1564 .key = "persist.sys.enable_pinfile", 1565 .value = "true", 1566 }, 1567 { 1568 .key = "persist.sys.gamut_mode", 1569 .value = "0", 1570 }, 1571 { 1572 .key = "persist.sys.handy_mode_cct", 1573 .value = "160", 1574 }, 1575 { 1576 .key = "persist.sys.ifaa", 1577 .value = "0", 1578 }, 1579 { 1580 .key = "persist.sys.initial.pdp.type", 1581 .value = "3", 1582 }, 1583 { 1584 .key = "persist.sys.locale", 1585 .value = "en-US", 1586 }, 1587 { 1588 .key = "persist.sys.ltm_enable", 1589 .value = "true", 1590 }, 1591 { 1592 .key = "persist.sys.mcd_config_file", 1593 .value = "/system/etc/mcd_default.conf", 1594 }, 1595 { 1596 .key = "persist.sys.memctrl", 1597 .value = "supported", 1598 }, 1599 { 1600 .key = "persist.sys.mitalk.enable", 1601 .value = "true", 1602 }, 1603 { 1604 .key = "persist.sys.notification_device", 1605 .value = "453", 1606 }, 1607 { 1608 .key = "persist.sys.notification_num", 1609 .value = "3", 1610 }, 1611 { 1612 .key = "persist.sys.notification_rank", 1613 .value = "0", 1614 }, 1615 { 1616 .key = "persist.sys.perf.debug", 1617 .value = "true", 1618 }, 1619 { 1620 .key = "persist.sys.power.optimize", 1621 .value = "1", 1622 }, 1623 { 1624 .key = "persist.sys.profiler_ms", 1625 .value = "0", 1626 }, 1627 { 1628 .key = "persist.sys.proj.nvram.mode", 1629 .value = "3", 1630 }, 1631 { 1632 .key = "persist.sys.screenshot_mode", 1633 .value = "1", 1634 }, 1635 { 1636 .key = "persist.sys.silent", 1637 .value = "0", 1638 }, 1639 { 1640 .key = "persist.sys.sim2.master.enable", 1641 .value = "0", 1642 }, 1643 { 1644 .key = "persist.sys.smartcover_mode", 1645 .value = "1", 1646 }, 1647 { 1648 .key = "persist.sys.song.actual.rat", 1649 .value = "7,1", 1650 }, 1651 { 1652 .key = "persist.sys.song.check.imei", 1653 .value = "0", 1654 }, 1655 { 1656 .key = "persist.sys.song.dual2single", 1657 .value = "1", 1658 }, 1659 { 1660 .key = "persist.sys.song.dynamic.rat", 1661 .value = "1", 1662 }, 1663 { 1664 .key = "persist.sys.song.log", 1665 .value = "/data/local/log,I1,0,0,I2,0,0,I3,0,0,I4,0,0,I5,0,0,I6,0,0", 1666 }, 1667 { 1668 .key = "persist.sys.song.master.card", 1669 .value = "10", 1670 }, 1671 { 1672 .key = "persist.sys.song.msms", 1673 .value = "221", 1674 }, 1675 { 1676 .key = "persist.sys.song.proj.rat", 1677 .value = "gsm,tdscdma,lte_tdd", 1678 }, 1679 { 1680 .key = "persist.sys.song.standby.rat", 1681 .value = "7,3", 1682 }, 1683 { 1684 .key = "persist.sys.strictmode.disable", 1685 .value = "true", 1686 }, 1687 { 1688 .key = "persist.sys.task_isolation", 1689 .value = "true", 1690 }, 1691 { 1692 .key = "persist.sys.timezone", 1693 .value = "America/New_York", 1694 }, 1695 { 1696 .key = "persist.sys.usb.config", 1697 .value = "adb", 1698 }, 1699 { 1700 .key = "persist.sys.webview.vmsize", 1701 .value = "124435184", 1702 }, 1703 { 1704 .key = "pm.dexopt.ab-ota", 1705 .value = "speed-profile", 1706 }, 1707 { 1708 .key = "pm.dexopt.bg-dexopt", 1709 .value = "speed-profile", 1710 }, 1711 { 1712 .key = "pm.dexopt.boot", 1713 .value = "verify-profile", 1714 }, 1715 { 1716 .key = "pm.dexopt.core-app", 1717 .value = "speed", 1718 }, 1719 { 1720 .key = "pm.dexopt.first-boot", 1721 .value = "interpret-only", 1722 }, 1723 { 1724 .key = "pm.dexopt.forced-dexopt", 1725 .value = "speed", 1726 }, 1727 { 1728 .key = "pm.dexopt.install", 1729 .value = "interpret-only", 1730 }, 1731 { 1732 .key = "pm.dexopt.nsys-library", 1733 .value = "speed", 1734 }, 1735 { 1736 .key = "pm.dexopt.shared-apk", 1737 .value = "speed", 1738 }, 1739 { 1740 .key = "qemu.hw.mainkeys", 1741 .value = "1", 1742 }, 1743 { 1744 .key = "radio.start.state", 1745 .value = "started", 1746 }, 1747 { 1748 .key = "ril.1.first_connected", 1749 .value = "false", 1750 }, 1751 { 1752 .key = "ril.2.first_connected", 1753 .value = "false", 1754 }, 1755 { 1756 .key = "ril.ecclist", 1757 .value = "120,122,112,911,000,08,110,118,119,999", 1758 }, 1759 { 1760 .key = "ril.ecclist1", 1761 .value = "120,122,112,911,000,08,110,118,119,999", 1762 }, 1763 { 1764 .key = "ril.emsd.init.complete.flag0", 1765 .value = "0", 1766 }, 1767 { 1768 .key = "ril.emsd.init.complete.flag1", 1769 .value = "0", 1770 }, 1771 { 1772 .key = "rild.send.cfun", 1773 .value = "1", 1774 }, 1775 { 1776 .key = "ro.adb.qemud", 1777 .value = "1", 1778 }, 1779 { 1780 .key = "ro.adb.secure", 1781 .value = "1", 1782 }, 1783 { 1784 .key = "ro.allow.mock.location", 1785 .value = "0", 1786 }, 1787 { 1788 .key = "ro.baseband", 1789 .value = "unknown", 1790 }, 1791 { 1792 .key = "ro.board.platform", 1793 .value = "song", 1794 }, 1795 { 1796 .key = "ro.boot.bl_state", 1797 .value = "0", 1798 }, 1799 { 1800 .key = "ro.boot.board-id", 1801 .value = "14", 1802 }, 1803 { 1804 .key = "ro.boot.corner-info", 1805 .value = "5", 1806 }, 1807 { 1808 .key = "ro.boot.cpub-freq", 1809 .value = "2", 1810 }, 1811 { 1812 .key = "ro.boot.cpuid", 1813 .value = "0x21088866e62774", 1814 }, 1815 { 1816 .key = "ro.boot.cpul-volt", 1817 .value = "1", 1818 }, 1819 { 1820 .key = "ro.boot.flash.locked", 1821 .value = "1", 1822 }, 1823 { 1824 .key = "ro.boot.gpu-volt", 1825 .value = "1", 1826 }, 1827 { 1828 .key = "ro.boot.hardware", 1829 .value = "song", 1830 }, 1831 { 1832 .key = "ro.boot.secureboot", 1833 .value = "1", 1834 }, 1835 { 1836 .key = "ro.boot.serialno", 1837 .value = "1d1fb852", 1838 }, 1839 { 1840 .key = "ro.boot.soc-class", 1841 .value = "1", 1842 }, 1843 { 1844 .key = "ro.boot.soc-id", 1845 .value = "1", 1846 }, 1847 { 1848 .key = "ro.boot.soc-rev", 1849 .value = "1", 1850 }, 1851 { 1852 .key = "ro.boot.soc-type", 1853 .value = "0", 1854 }, 1855 { 1856 .key = "ro.boot.verifiedbootstate", 1857 .value = "green", 1858 }, 1859 { 1860 .key = "ro.boot.veritymode", 1861 .value = "enforcing", 1862 }, 1863 { 1864 .key = "ro.bootimage.build.date", 1865 .value = "Thu Jun 15 10:24:29 CST 2017", 1866 }, 1867 { 1868 .key = "ro.bootimage.build.date.utc", 1869 .value = "1497493469", 1870 }, 1871 { 1872 .key = "ro.bootloader", 1873 .value = "unknown", 1874 }, 1875 { 1876 .key = "ro.bootmode", 1877 .value = "unknown", 1878 }, 1879 { 1880 .key = "ro.build.characteristics", 1881 .value = "nosdcard", 1882 }, 1883 { 1884 .key = "ro.build.date", 1885 .value = "Thu Jun 15 10:24:29 CST 2017", 1886 }, 1887 { 1888 .key = "ro.build.date.utc", 1889 .value = "1497493469", 1890 }, 1891 { 1892 .key = "ro.build.description", 1893 .value = "song-user 7.1.2 N2G47J V8.5.3.0.0.NCJCNED release-keys", 1894 }, 1895 { 1896 .key = "ro.build.display.id", 1897 .value = "N2G47J", 1898 }, 1899 { 1900 .key = "ro.build.fingerprint", 1901 .value = "Xiaomi/meri/meri:7.1.2/N2G47J/V8.5.3.0.0.NCJCNED:user/release-keys", 1902 }, 1903 { 1904 .key = "ro.build.flavor", 1905 .value = "song-user", 1906 }, 1907 { 1908 .key = "ro.build.host", 1909 .value = "c3-miui-ota-bd09.bj", 1910 }, 1911 { 1912 .key = "ro.build.id", 1913 .value = "N2G47J", 1914 }, 1915 { 1916 .key = "ro.build.product", 1917 .value = "song", 1918 }, 1919 { 1920 .key = "ro.build.tags", 1921 .value = "release-keys", 1922 }, 1923 { 1924 .key = "ro.build.type", 1925 .value = "user", 1926 }, 1927 { 1928 .key = "ro.build.user", 1929 .value = "builder", 1930 }, 1931 { 1932 .key = "ro.build.version.all_codenames", 1933 .value = "REL", 1934 }, 1935 { 1936 .key = "ro.build.version.base_os", 1937 .value = "", 1938 }, 1939 { 1940 .key = "ro.build.version.codename", 1941 .value = "REL", 1942 }, 1943 { 1944 .key = "ro.build.version.incremental", 1945 .value = "V8.5.3.0.0.NCJCNED", 1946 }, 1947 { 1948 .key = "ro.build.version.preview_sdk", 1949 .value = "0", 1950 }, 1951 { 1952 .key = "ro.build.version.release", 1953 .value = "7.1.2", 1954 }, 1955 { 1956 .key = "ro.build.version.sdk", 1957 .value = "25", 1958 }, 1959 { 1960 .key = "ro.build.version.security_patch", 1961 .value = "2017-05-01", 1962 }, 1963 { 1964 .key = "ro.carrier", 1965 .value = "unknown", 1966 }, 1967 { 1968 .key = "ro.com.android.dataroaming", 1969 .value = "false", 1970 }, 1971 { 1972 .key = "ro.com.android.mobiledata", 1973 .value = "false", 1974 }, 1975 { 1976 .key = "ro.com.google.clientidbase", 1977 .value = "android-xiaomi", 1978 }, 1979 { 1980 .key = "ro.com.google.locationfeatures", 1981 .value = "1", 1982 }, 1983 { 1984 .key = "ro.config.alarm_alert", 1985 .value = "Alarm_Classic.ogg", 1986 }, 1987 { 1988 .key = "ro.config.elder-ringtone", 1989 .value = "Angel.mp3", 1990 }, 1991 { 1992 .key = "ro.config.max_starting_bg", 1993 .value = "4", 1994 }, 1995 { 1996 .key = "ro.config.notification_sound", 1997 .value = "pixiedust.ogg", 1998 }, 1999 { 2000 .key = "ro.config.ringtone", 2001 .value = "Ring_Synth_04.ogg", 2002 }, 2003 { 2004 .key = "ro.config.sms_delivered_sound", 2005 .value = "MessageComplete.ogg", 2006 }, 2007 { 2008 .key = "ro.config.sms_received_sound", 2009 .value = "FadeIn.ogg", 2010 }, 2011 { 2012 .key = "ro.config.vc_call_vol_steps", 2013 .value = "11", 2014 }, 2015 { 2016 .key = "ro.crypto.fs_crypto_blkdev", 2017 .value = "/dev/block/dm-0", 2018 }, 2019 { 2020 .key = "ro.crypto.state", 2021 .value = "encrypted", 2022 }, 2023 { 2024 .key = "ro.crypto.type", 2025 .value = "block", 2026 }, 2027 { 2028 .key = "ro.dalvik.vm.native.bridge", 2029 .value = "0", 2030 }, 2031 { 2032 .key = "ro.debuggable", 2033 .value = "0", 2034 }, 2035 { 2036 .key = "ro.dev.imei1", 2037 .value = "862391035860113", 2038 }, 2039 { 2040 .key = "ro.dev.imei2", 2041 .value = "862391036060119", 2042 }, 2043 { 2044 .key = "ro.dirac.acs.controller", 2045 .value = "afm", 2046 }, 2047 { 2048 .key = "ro.dirac.acs.storeSettings", 2049 .value = "1", 2050 }, 2051 { 2052 .key = "ro.dirac.afm.mode", 2053 .value = "global", 2054 }, 2055 { 2056 .key = "ro.dirac.config", 2057 .value = "66", 2058 }, 2059 { 2060 .key = "ro.dirac.config_path", 2061 .value = "/vendor/etc/audio/meri/diracmobile.config", 2062 }, 2063 { 2064 .key = "ro.dirac.poolsize", 2065 .value = "2", 2066 }, 2067 { 2068 .key = "ro.expect.recovery_id", 2069 .value = "0x69417ef0f89bc80082ed241388a04ba1581a1182376d101747b4a3bb8171d7e8", 2070 }, 2071 { 2072 .key = "ro.hardware", 2073 .value = "song", 2074 }, 2075 { 2076 .key = "ro.hwui.drop_shadow_cache_size", 2077 .value = "6", 2078 }, 2079 { 2080 .key = "ro.hwui.gradient_cache_size", 2081 .value = "1", 2082 }, 2083 { 2084 .key = "ro.hwui.layer_cache_size", 2085 .value = "48", 2086 }, 2087 { 2088 .key = "ro.hwui.path_cache_size", 2089 .value = "32", 2090 }, 2091 { 2092 .key = "ro.hwui.r_buffer_cache_size", 2093 .value = "8", 2094 }, 2095 { 2096 .key = "ro.hwui.text_large_cache_height", 2097 .value = "1024", 2098 }, 2099 { 2100 .key = "ro.hwui.text_large_cache_width", 2101 .value = "2048", 2102 }, 2103 { 2104 .key = "ro.hwui.text_small_cache_height", 2105 .value = "1024", 2106 }, 2107 { 2108 .key = "ro.hwui.text_small_cache_width", 2109 .value = "1024", 2110 }, 2111 { 2112 .key = "ro.hwui.texture_cache_flushrate", 2113 .value = "0.4", 2114 }, 2115 { 2116 .key = "ro.hwui.texture_cache_size", 2117 .value = "72", 2118 }, 2119 { 2120 .key = "ro.miui.cust_variant", 2121 .value = "us", 2122 }, 2123 { 2124 .key = "ro.miui.has_cust_partition", 2125 .value = "true", 2126 }, 2127 { 2128 .key = "ro.miui.has_handy_mode_sf", 2129 .value = "1", 2130 }, 2131 { 2132 .key = "ro.miui.has_real_blur", 2133 .value = "1", 2134 }, 2135 { 2136 .key = "ro.miui.mcc", 2137 .value = "9310", 2138 }, 2139 { 2140 .key = "ro.miui.mnc", 2141 .value = "9999", 2142 }, 2143 { 2144 .key = "ro.miui.region", 2145 .value = "US", 2146 }, 2147 { 2148 .key = "ro.miui.ui.version.code", 2149 .value = "6", 2150 }, 2151 { 2152 .key = "ro.miui.ui.version.name", 2153 .value = "V8", 2154 }, 2155 { 2156 .key = "ro.miui.version.code_time", 2157 .value = "1492617600", 2158 }, 2159 { 2160 .key = "ro.opengles.version", 2161 .value = "196610", 2162 }, 2163 { 2164 .key = "ro.product.board", 2165 .value = "", 2166 }, 2167 { 2168 .key = "ro.product.brand", 2169 .value = "Xiaomi", 2170 }, 2171 { 2172 .key = "ro.product.cpu.abi", 2173 .value = "arm64-v8a", 2174 }, 2175 { 2176 .key = "ro.product.cpu.abilist", 2177 .value = "arm64-v8a,armeabi-v7a,armeabi", 2178 }, 2179 { 2180 .key = "ro.product.cpu.abilist32", 2181 .value = "armeabi-v7a,armeabi", 2182 }, 2183 { 2184 .key = "ro.product.cpu.abilist64", 2185 .value = "arm64-v8a", 2186 }, 2187 { 2188 .key = "ro.product.cuptsm", 2189 .value = "XIAOMI|ESE|02|01", 2190 }, 2191 { 2192 .key = "ro.product.device", 2193 .value = "meri", 2194 }, 2195 { 2196 .key = "ro.product.first_api_level", 2197 .value = "23", 2198 }, 2199 { 2200 .key = "ro.product.locale", 2201 .value = "en-US", 2202 }, 2203 { 2204 .key = "ro.product.locale.language", 2205 .value = "en", 2206 }, 2207 { 2208 .key = "ro.product.locale.region", 2209 .value = "US", 2210 }, 2211 { 2212 .key = "ro.product.manufacturer", 2213 .value = "Xiaomi", 2214 }, 2215 { 2216 .key = "ro.product.mod_device", 2217 .value = "meri_global", 2218 }, 2219 { 2220 .key = "ro.product.model", 2221 .value = "MI 5C", 2222 }, 2223 { 2224 .key = "ro.product.name", 2225 .value = "meri", 2226 }, 2227 { 2228 .key = "ro.recovery_id", 2229 .value = "0x714ddbb84668b08ee0e562e36fdebf1130e9bcb3285de6abdb81aee5e7526de3", 2230 }, 2231 { 2232 .key = "ro.revision", 2233 .value = "0", 2234 }, 2235 { 2236 .key = "ro.ril.gprsclass", 2237 .value = "10", 2238 }, 2239 { 2240 .key = "ro.ril.hsxpa", 2241 .value = "1", 2242 }, 2243 { 2244 .key = "ro.ril.miui.imei0", 2245 .value = "862391035860113", 2246 }, 2247 { 2248 .key = "ro.ril.miui.imei1", 2249 .value = "862391036060119", 2250 }, 2251 { 2252 .key = "ro.ril.modem.pb", 2253 .value = "0", 2254 }, 2255 { 2256 .key = "ro.runtime.firstboot", 2257 .value = "946686643615", 2258 }, 2259 { 2260 .key = "ro.secure", 2261 .value = "1", 2262 }, 2263 { 2264 .key = "ro.serialno", 2265 .value = "1d1fb852", 2266 }, 2267 { 2268 .key = "ro.setupwizard.mode", 2269 .value = "OPTIONAL", 2270 }, 2271 { 2272 .key = "ro.sf.lcd_density", 2273 .value = "480", 2274 }, 2275 { 2276 .key = "ro.song.dual2single", 2277 .value = "1", 2278 }, 2279 { 2280 .key = "ro.song.msms", 2281 .value = "221", 2282 }, 2283 { 2284 .key = "ro.ss.nohidden", 2285 .value = "true", 2286 }, 2287 { 2288 .key = "ro.ss.version", 2289 .value = "5.1.111-004", 2290 }, 2291 { 2292 .key = "ro.sys.display.support", 2293 .value = "59", 2294 }, 2295 { 2296 .key = "ro.telephony.default_network", 2297 .value = "9", 2298 }, 2299 { 2300 .key = "ro.wifi.channels", 2301 .value = "", 2302 }, 2303 { 2304 .key = "ro.zygote", 2305 .value = "zygote64_32", 2306 }, 2307 { 2308 .key = "security.perf_harden", 2309 .value = "1", 2310 }, 2311 { 2312 .key = "selinux.reload_policy", 2313 .value = "1", 2314 }, 2315 { 2316 .key = "service.bootanim.exit", 2317 .value = "1", 2318 }, 2319 { 2320 .key = "song-ipc-agent-stat", 2321 .value = "hs-ok", 2322 }, 2323 { 2324 .key = "sys.boot_completed", 2325 .value = "1", 2326 }, 2327 { 2328 .key = "sys.elog_service.flag", 2329 .value = "1", 2330 }, 2331 { 2332 .key = "sys.fake_bs_flag0", 2333 .value = "", 2334 }, 2335 { 2336 .key = "sys.fake_bs_flag1", 2337 .value = "", 2338 }, 2339 { 2340 .key = "sys.is_keyguard_showing", 2341 .value = "0", 2342 }, 2343 { 2344 .key = "sys.kernel.firstboot", 2345 .value = "946686643527", 2346 }, 2347 { 2348 .key = "sys.keyguard.bleunlock", 2349 .value = "true", 2350 }, 2351 { 2352 .key = "sys.keyguard.screen_off_by_lid", 2353 .value = "false", 2354 }, 2355 { 2356 .key = "sys.logbootcomplete", 2357 .value = "1", 2358 }, 2359 { 2360 .key = "sys.miui.user_authenticated", 2361 .value = "true", 2362 }, 2363 { 2364 .key = "sys.panel.color", 2365 .value = "UNKNOWN", 2366 }, 2367 { 2368 .key = "sys.pinecone.usb.state", 2369 .value = "1", 2370 }, 2371 { 2372 .key = "sys.radio.config.running", 2373 .value = "0", 2374 }, 2375 { 2376 .key = "sys.ril.1.cell_info", 2377 .value = "gsm,3,0,0,-77", 2378 }, 2379 { 2380 .key = "sys.ril.2.cell_info", 2381 .value = "gsm,0,0,0,-113", 2382 }, 2383 { 2384 .key = "sys.song.swap.nvram.standby", 2385 .value = "0", 2386 }, 2387 { 2388 .key = "sys.sysctl.extra_free_kbytes", 2389 .value = "24300", 2390 }, 2391 { 2392 .key = "sys.usb.config", 2393 .value = "adb", 2394 }, 2395 { 2396 .key = "sys.usb.configfs", 2397 .value = "0", 2398 }, 2399 { 2400 .key = "sys.usb.ffs.ready", 2401 .value = "1", 2402 }, 2403 { 2404 .key = "sys.usb.state", 2405 .value = "adb", 2406 }, 2407 { 2408 .key = "vold.decrypt", 2409 .value = "trigger_restart_framework", 2410 }, 2411 { 2412 .key = "vold.has_adoptable", 2413 .value = "0", 2414 }, 2415 { 2416 .key = "vold.post_fs_data_done", 2417 .value = "1", 2418 }, 2419 { 2420 .key = "wifi.interface", 2421 .value = "wlan0", 2422 }, 2423 { 2424 .key = "wlan.driver.status", 2425 .value = "ok", 2426 }, 2427 { NULL }, 2428 }; 2429 #endif /* __ANDROID__ */ 2430