1 struct cpuinfo_mock_file filesystem[] = { 2 #if CPUINFO_ARCH_ARM64 3 { 4 .path = "/proc/cpuinfo", 5 .size = 1440, 6 .content = 7 "processor\t: 0\n" 8 "BogoMIPS\t: 3.84\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: 3.84\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: 3.84\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: 3.84\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: 3.84\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: 0xd09\n" 50 "CPU revision\t: 2\n" 51 "\n" 52 "processor\t: 5\n" 53 "BogoMIPS\t: 3.84\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: 0xd09\n" 59 "CPU revision\t: 2\n" 60 "\n" 61 "processor\t: 6\n" 62 "BogoMIPS\t: 3.84\n" 63 "Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\n" 64 "CPU implementer\t: 0x41\n" 65 "CPU architecture: 8\n" 66 "CPU variant\t: 0x0\n" 67 "CPU part\t: 0xd09\n" 68 "CPU revision\t: 2\n" 69 "\n" 70 "processor\t: 7\n" 71 "BogoMIPS\t: 3.84\n" 72 "Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\n" 73 "CPU implementer\t: 0x41\n" 74 "CPU architecture: 8\n" 75 "CPU variant\t: 0x0\n" 76 "CPU part\t: 0xd09\n" 77 "CPU revision\t: 2\n" 78 "\n", 79 }, 80 #elif CPUINFO_ARCH_ARM 81 { 82 .path = "/proc/cpuinfo", 83 .size = 2232, 84 .content = 85 "processor\t: 0\n" 86 "model name\t: ARMv8 Processor rev 4 (v8l)\n" 87 "BogoMIPS\t: 3.84\n" 88 "Features\t: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt lpae evtstrm aes pmull sha1 sha2 crc32\n" 89 "CPU implementer\t: 0x41\n" 90 "CPU architecture: 8\n" 91 "CPU variant\t: 0x0\n" 92 "CPU part\t: 0xd03\n" 93 "CPU revision\t: 4\n" 94 "\n" 95 "processor\t: 1\n" 96 "model name\t: ARMv8 Processor rev 4 (v8l)\n" 97 "BogoMIPS\t: 3.84\n" 98 "Features\t: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt lpae evtstrm aes pmull sha1 sha2 crc32\n" 99 "CPU implementer\t: 0x41\n" 100 "CPU architecture: 8\n" 101 "CPU variant\t: 0x0\n" 102 "CPU part\t: 0xd03\n" 103 "CPU revision\t: 4\n" 104 "\n" 105 "processor\t: 2\n" 106 "model name\t: ARMv8 Processor rev 4 (v8l)\n" 107 "BogoMIPS\t: 3.84\n" 108 "Features\t: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt lpae evtstrm aes pmull sha1 sha2 crc32\n" 109 "CPU implementer\t: 0x41\n" 110 "CPU architecture: 8\n" 111 "CPU variant\t: 0x0\n" 112 "CPU part\t: 0xd03\n" 113 "CPU revision\t: 4\n" 114 "\n" 115 "processor\t: 3\n" 116 "model name\t: ARMv8 Processor rev 4 (v8l)\n" 117 "BogoMIPS\t: 3.84\n" 118 "Features\t: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt lpae evtstrm aes pmull sha1 sha2 crc32\n" 119 "CPU implementer\t: 0x41\n" 120 "CPU architecture: 8\n" 121 "CPU variant\t: 0x0\n" 122 "CPU part\t: 0xd03\n" 123 "CPU revision\t: 4\n" 124 "\n" 125 "processor\t: 4\n" 126 "model name\t: ARMv8 Processor rev 2 (v8l)\n" 127 "BogoMIPS\t: 3.84\n" 128 "Features\t: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt lpae evtstrm aes pmull sha1 sha2 crc32\n" 129 "CPU implementer\t: 0x41\n" 130 "CPU architecture: 8\n" 131 "CPU variant\t: 0x0\n" 132 "CPU part\t: 0xd09\n" 133 "CPU revision\t: 2\n" 134 "\n" 135 "processor\t: 5\n" 136 "model name\t: ARMv8 Processor rev 2 (v8l)\n" 137 "BogoMIPS\t: 3.84\n" 138 "Features\t: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt lpae evtstrm aes pmull sha1 sha2 crc32\n" 139 "CPU implementer\t: 0x41\n" 140 "CPU architecture: 8\n" 141 "CPU variant\t: 0x0\n" 142 "CPU part\t: 0xd09\n" 143 "CPU revision\t: 2\n" 144 "\n" 145 "processor\t: 6\n" 146 "model name\t: ARMv8 Processor rev 2 (v8l)\n" 147 "BogoMIPS\t: 3.84\n" 148 "Features\t: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt lpae evtstrm aes pmull sha1 sha2 crc32\n" 149 "CPU implementer\t: 0x41\n" 150 "CPU architecture: 8\n" 151 "CPU variant\t: 0x0\n" 152 "CPU part\t: 0xd09\n" 153 "CPU revision\t: 2\n" 154 "\n" 155 "processor\t: 7\n" 156 "model name\t: ARMv8 Processor rev 2 (v8l)\n" 157 "BogoMIPS\t: 3.84\n" 158 "Features\t: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt lpae evtstrm aes pmull sha1 sha2 crc32\n" 159 "CPU implementer\t: 0x41\n" 160 "CPU architecture: 8\n" 161 "CPU variant\t: 0x0\n" 162 "CPU part\t: 0xd09\n" 163 "CPU revision\t: 2\n" 164 "\n", 165 }, 166 #endif 167 { 168 .path = "/sys/devices/system/cpu/isolated", 169 .size = 1, 170 .content = "\n", 171 }, 172 { 173 .path = "/sys/devices/system/cpu/kernel_max", 174 .size = 2, 175 .content = "7\n", 176 }, 177 { 178 .path = "/sys/devices/system/cpu/modalias", 179 .size = 66, 180 .content = "cpu:type:aarch64:feature:,0000,0001,0002,0003,0004,0005,0006,0007\n", 181 }, 182 { 183 .path = "/sys/devices/system/cpu/offline", 184 .size = 1, 185 .content = "\n", 186 }, 187 { 188 .path = "/sys/devices/system/cpu/online", 189 .size = 4, 190 .content = "0-7\n", 191 }, 192 { 193 .path = "/sys/devices/system/cpu/possible", 194 .size = 4, 195 .content = "0-7\n", 196 }, 197 { 198 .path = "/sys/devices/system/cpu/present", 199 .size = 4, 200 .content = "0-7\n", 201 }, 202 { 203 .path = "/sys/devices/system/cpu/cpuidle/current_driver", 204 .size = 25, 205 .content = "hisi_little_cluster_idle\n", 206 }, 207 { 208 .path = "/sys/devices/system/cpu/cpuidle/current_governor_ro", 209 .size = 5, 210 .content = "menu\n", 211 }, 212 { 213 .path = "/sys/devices/system/cpu/cpu0/cpuidle/driver/name", 214 .size = 25, 215 .content = "hisi_little_cluster_idle\n", 216 }, 217 { 218 .path = "/sys/devices/system/cpu/cpu0/cpufreq/affected_cpus", 219 .size = 8, 220 .content = "0 1 2 3\n", 221 }, 222 { 223 .path = "/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq", 224 .size = 8, 225 .content = "1844000\n", 226 }, 227 { 228 .path = "/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_min_freq", 229 .size = 7, 230 .content = "509000\n", 231 }, 232 { 233 .path = "/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_transition_latency", 234 .size = 8, 235 .content = "2000000\n", 236 }, 237 { 238 .path = "/sys/devices/system/cpu/cpu0/cpufreq/related_cpus", 239 .size = 8, 240 .content = "0 1 2 3\n", 241 }, 242 { 243 .path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies", 244 .size = 56, 245 .content = "509000 1018000 1210000 1402000 1556000 1690000 1844000 \n", 246 }, 247 { 248 .path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors", 249 .size = 67, 250 .content = "interactive conservative ondemand userspace powersave performance \n", 251 }, 252 { 253 .path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq", 254 .size = 8, 255 .content = "1844000\n", 256 }, 257 { 258 .path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_driver", 259 .size = 11, 260 .content = "cpufreq-dt\n", 261 }, 262 { 263 .path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor", 264 .size = 12, 265 .content = "interactive\n", 266 }, 267 { 268 .path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq", 269 .size = 7, 270 .content = "509000\n", 271 }, 272 { 273 .path = "/sys/devices/system/cpu/cpu0/cpufreq/stats/time_in_state", 274 .size = 77, 275 .content = 276 "509000 94\n" 277 "1018000 97\n" 278 "1210000 8\n" 279 "1402000 79\n" 280 "1556000 23\n" 281 "1690000 52\n" 282 "1844000 8524\n", 283 }, 284 { 285 .path = "/sys/devices/system/cpu/cpu0/cpufreq/stats/total_trans", 286 .size = 3, 287 .content = "58\n", 288 }, 289 { 290 .path = "/sys/devices/system/cpu/cpu0/cpufreq/stats/trans_table", 291 .size = 673, 292 .content = 293 " From : To\n" 294 " : 509000 1018000 1210000 1402000 1556000 1690000 1844000 \n" 295 " 509000: 0 3 0 5 0 0 0 \n" 296 " 1018000: 1 0 1 5 0 0 0 \n" 297 " 1210000: 1 0 0 0 0 0 0 \n" 298 " 1402000: 1 2 0 0 3 6 0 \n" 299 " 1556000: 1 0 0 0 0 2 3 \n" 300 " 1690000: 1 0 0 0 1 0 10 \n" 301 " 1844000: 3 2 0 2 2 3 0 \n", 302 }, 303 { 304 .path = "/sys/devices/system/cpu/cpu0/topology/core_id", 305 .size = 2, 306 .content = "0\n", 307 }, 308 { 309 .path = "/sys/devices/system/cpu/cpu0/topology/core_siblings", 310 .size = 3, 311 .content = "0f\n", 312 }, 313 { 314 .path = "/sys/devices/system/cpu/cpu0/topology/core_siblings_list", 315 .size = 4, 316 .content = "0-3\n", 317 }, 318 { 319 .path = "/sys/devices/system/cpu/cpu0/topology/physical_package_id", 320 .size = 2, 321 .content = "0\n", 322 }, 323 { 324 .path = "/sys/devices/system/cpu/cpu0/topology/thread_siblings", 325 .size = 3, 326 .content = "01\n", 327 }, 328 { 329 .path = "/sys/devices/system/cpu/cpu0/topology/thread_siblings_list", 330 .size = 2, 331 .content = "0\n", 332 }, 333 { 334 .path = "/sys/devices/system/cpu/cpu1/cpuidle/driver/name", 335 .size = 25, 336 .content = "hisi_little_cluster_idle\n", 337 }, 338 { 339 .path = "/sys/devices/system/cpu/cpu1/cpufreq/affected_cpus", 340 .size = 8, 341 .content = "0 1 2 3\n", 342 }, 343 { 344 .path = "/sys/devices/system/cpu/cpu1/cpufreq/cpuinfo_max_freq", 345 .size = 8, 346 .content = "1844000\n", 347 }, 348 { 349 .path = "/sys/devices/system/cpu/cpu1/cpufreq/cpuinfo_min_freq", 350 .size = 7, 351 .content = "509000\n", 352 }, 353 { 354 .path = "/sys/devices/system/cpu/cpu1/cpufreq/cpuinfo_transition_latency", 355 .size = 8, 356 .content = "2000000\n", 357 }, 358 { 359 .path = "/sys/devices/system/cpu/cpu1/cpufreq/related_cpus", 360 .size = 8, 361 .content = "0 1 2 3\n", 362 }, 363 { 364 .path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_available_frequencies", 365 .size = 56, 366 .content = "509000 1018000 1210000 1402000 1556000 1690000 1844000 \n", 367 }, 368 { 369 .path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_available_governors", 370 .size = 67, 371 .content = "interactive conservative ondemand userspace powersave performance \n", 372 }, 373 { 374 .path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_cur_freq", 375 .size = 8, 376 .content = "1844000\n", 377 }, 378 { 379 .path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_driver", 380 .size = 11, 381 .content = "cpufreq-dt\n", 382 }, 383 { 384 .path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_governor", 385 .size = 12, 386 .content = "interactive\n", 387 }, 388 { 389 .path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_min_freq", 390 .size = 7, 391 .content = "509000\n", 392 }, 393 { 394 .path = "/sys/devices/system/cpu/cpu1/cpufreq/stats/time_in_state", 395 .size = 77, 396 .content = 397 "509000 94\n" 398 "1018000 97\n" 399 "1210000 8\n" 400 "1402000 79\n" 401 "1556000 23\n" 402 "1690000 52\n" 403 "1844000 8742\n", 404 }, 405 { 406 .path = "/sys/devices/system/cpu/cpu1/cpufreq/stats/total_trans", 407 .size = 3, 408 .content = "58\n", 409 }, 410 { 411 .path = "/sys/devices/system/cpu/cpu1/cpufreq/stats/trans_table", 412 .size = 673, 413 .content = 414 " From : To\n" 415 " : 509000 1018000 1210000 1402000 1556000 1690000 1844000 \n" 416 " 509000: 0 3 0 5 0 0 0 \n" 417 " 1018000: 1 0 1 5 0 0 0 \n" 418 " 1210000: 1 0 0 0 0 0 0 \n" 419 " 1402000: 1 2 0 0 3 6 0 \n" 420 " 1556000: 1 0 0 0 0 2 3 \n" 421 " 1690000: 1 0 0 0 1 0 10 \n" 422 " 1844000: 3 2 0 2 2 3 0 \n", 423 }, 424 { 425 .path = "/sys/devices/system/cpu/cpu1/topology/core_id", 426 .size = 2, 427 .content = "1\n", 428 }, 429 { 430 .path = "/sys/devices/system/cpu/cpu1/topology/core_siblings", 431 .size = 3, 432 .content = "0f\n", 433 }, 434 { 435 .path = "/sys/devices/system/cpu/cpu1/topology/core_siblings_list", 436 .size = 4, 437 .content = "0-3\n", 438 }, 439 { 440 .path = "/sys/devices/system/cpu/cpu1/topology/physical_package_id", 441 .size = 2, 442 .content = "0\n", 443 }, 444 { 445 .path = "/sys/devices/system/cpu/cpu1/topology/thread_siblings", 446 .size = 3, 447 .content = "02\n", 448 }, 449 { 450 .path = "/sys/devices/system/cpu/cpu1/topology/thread_siblings_list", 451 .size = 2, 452 .content = "1\n", 453 }, 454 { 455 .path = "/sys/devices/system/cpu/cpu2/cpuidle/driver/name", 456 .size = 25, 457 .content = "hisi_little_cluster_idle\n", 458 }, 459 { 460 .path = "/sys/devices/system/cpu/cpu2/cpufreq/affected_cpus", 461 .size = 8, 462 .content = "0 1 2 3\n", 463 }, 464 { 465 .path = "/sys/devices/system/cpu/cpu2/cpufreq/cpuinfo_max_freq", 466 .size = 8, 467 .content = "1844000\n", 468 }, 469 { 470 .path = "/sys/devices/system/cpu/cpu2/cpufreq/cpuinfo_min_freq", 471 .size = 7, 472 .content = "509000\n", 473 }, 474 { 475 .path = "/sys/devices/system/cpu/cpu2/cpufreq/cpuinfo_transition_latency", 476 .size = 8, 477 .content = "2000000\n", 478 }, 479 { 480 .path = "/sys/devices/system/cpu/cpu2/cpufreq/related_cpus", 481 .size = 8, 482 .content = "0 1 2 3\n", 483 }, 484 { 485 .path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_available_frequencies", 486 .size = 56, 487 .content = "509000 1018000 1210000 1402000 1556000 1690000 1844000 \n", 488 }, 489 { 490 .path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_available_governors", 491 .size = 67, 492 .content = "interactive conservative ondemand userspace powersave performance \n", 493 }, 494 { 495 .path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_cur_freq", 496 .size = 8, 497 .content = "1844000\n", 498 }, 499 { 500 .path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_driver", 501 .size = 11, 502 .content = "cpufreq-dt\n", 503 }, 504 { 505 .path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_governor", 506 .size = 12, 507 .content = "interactive\n", 508 }, 509 { 510 .path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_min_freq", 511 .size = 7, 512 .content = "509000\n", 513 }, 514 { 515 .path = "/sys/devices/system/cpu/cpu2/cpufreq/stats/time_in_state", 516 .size = 77, 517 .content = 518 "509000 94\n" 519 "1018000 97\n" 520 "1210000 8\n" 521 "1402000 79\n" 522 "1556000 23\n" 523 "1690000 52\n" 524 "1844000 8984\n", 525 }, 526 { 527 .path = "/sys/devices/system/cpu/cpu2/cpufreq/stats/total_trans", 528 .size = 3, 529 .content = "58\n", 530 }, 531 { 532 .path = "/sys/devices/system/cpu/cpu2/cpufreq/stats/trans_table", 533 .size = 673, 534 .content = 535 " From : To\n" 536 " : 509000 1018000 1210000 1402000 1556000 1690000 1844000 \n" 537 " 509000: 0 3 0 5 0 0 0 \n" 538 " 1018000: 1 0 1 5 0 0 0 \n" 539 " 1210000: 1 0 0 0 0 0 0 \n" 540 " 1402000: 1 2 0 0 3 6 0 \n" 541 " 1556000: 1 0 0 0 0 2 3 \n" 542 " 1690000: 1 0 0 0 1 0 10 \n" 543 " 1844000: 3 2 0 2 2 3 0 \n", 544 }, 545 { 546 .path = "/sys/devices/system/cpu/cpu2/topology/core_id", 547 .size = 2, 548 .content = "2\n", 549 }, 550 { 551 .path = "/sys/devices/system/cpu/cpu2/topology/core_siblings", 552 .size = 3, 553 .content = "0f\n", 554 }, 555 { 556 .path = "/sys/devices/system/cpu/cpu2/topology/core_siblings_list", 557 .size = 4, 558 .content = "0-3\n", 559 }, 560 { 561 .path = "/sys/devices/system/cpu/cpu2/topology/physical_package_id", 562 .size = 2, 563 .content = "0\n", 564 }, 565 { 566 .path = "/sys/devices/system/cpu/cpu2/topology/thread_siblings", 567 .size = 3, 568 .content = "04\n", 569 }, 570 { 571 .path = "/sys/devices/system/cpu/cpu2/topology/thread_siblings_list", 572 .size = 2, 573 .content = "2\n", 574 }, 575 { 576 .path = "/sys/devices/system/cpu/cpu3/cpuidle/driver/name", 577 .size = 25, 578 .content = "hisi_little_cluster_idle\n", 579 }, 580 { 581 .path = "/sys/devices/system/cpu/cpu3/cpufreq/affected_cpus", 582 .size = 8, 583 .content = "0 1 2 3\n", 584 }, 585 { 586 .path = "/sys/devices/system/cpu/cpu3/cpufreq/cpuinfo_max_freq", 587 .size = 8, 588 .content = "1844000\n", 589 }, 590 { 591 .path = "/sys/devices/system/cpu/cpu3/cpufreq/cpuinfo_min_freq", 592 .size = 7, 593 .content = "509000\n", 594 }, 595 { 596 .path = "/sys/devices/system/cpu/cpu3/cpufreq/cpuinfo_transition_latency", 597 .size = 8, 598 .content = "2000000\n", 599 }, 600 { 601 .path = "/sys/devices/system/cpu/cpu3/cpufreq/related_cpus", 602 .size = 8, 603 .content = "0 1 2 3\n", 604 }, 605 { 606 .path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_available_frequencies", 607 .size = 56, 608 .content = "509000 1018000 1210000 1402000 1556000 1690000 1844000 \n", 609 }, 610 { 611 .path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_available_governors", 612 .size = 67, 613 .content = "interactive conservative ondemand userspace powersave performance \n", 614 }, 615 { 616 .path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_cur_freq", 617 .size = 8, 618 .content = "1844000\n", 619 }, 620 { 621 .path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_driver", 622 .size = 11, 623 .content = "cpufreq-dt\n", 624 }, 625 { 626 .path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_governor", 627 .size = 12, 628 .content = "interactive\n", 629 }, 630 { 631 .path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_min_freq", 632 .size = 7, 633 .content = "509000\n", 634 }, 635 { 636 .path = "/sys/devices/system/cpu/cpu3/cpufreq/stats/time_in_state", 637 .size = 77, 638 .content = 639 "509000 94\n" 640 "1018000 97\n" 641 "1210000 8\n" 642 "1402000 79\n" 643 "1556000 23\n" 644 "1690000 52\n" 645 "1844000 9255\n", 646 }, 647 { 648 .path = "/sys/devices/system/cpu/cpu3/cpufreq/stats/total_trans", 649 .size = 3, 650 .content = "58\n", 651 }, 652 { 653 .path = "/sys/devices/system/cpu/cpu3/cpufreq/stats/trans_table", 654 .size = 673, 655 .content = 656 " From : To\n" 657 " : 509000 1018000 1210000 1402000 1556000 1690000 1844000 \n" 658 " 509000: 0 3 0 5 0 0 0 \n" 659 " 1018000: 1 0 1 5 0 0 0 \n" 660 " 1210000: 1 0 0 0 0 0 0 \n" 661 " 1402000: 1 2 0 0 3 6 0 \n" 662 " 1556000: 1 0 0 0 0 2 3 \n" 663 " 1690000: 1 0 0 0 1 0 10 \n" 664 " 1844000: 3 2 0 2 2 3 0 \n", 665 }, 666 { 667 .path = "/sys/devices/system/cpu/cpu3/topology/core_id", 668 .size = 2, 669 .content = "3\n", 670 }, 671 { 672 .path = "/sys/devices/system/cpu/cpu3/topology/core_siblings", 673 .size = 3, 674 .content = "0f\n", 675 }, 676 { 677 .path = "/sys/devices/system/cpu/cpu3/topology/core_siblings_list", 678 .size = 4, 679 .content = "0-3\n", 680 }, 681 { 682 .path = "/sys/devices/system/cpu/cpu3/topology/physical_package_id", 683 .size = 2, 684 .content = "0\n", 685 }, 686 { 687 .path = "/sys/devices/system/cpu/cpu3/topology/thread_siblings", 688 .size = 3, 689 .content = "08\n", 690 }, 691 { 692 .path = "/sys/devices/system/cpu/cpu3/topology/thread_siblings_list", 693 .size = 2, 694 .content = "3\n", 695 }, 696 { 697 .path = "/sys/devices/system/cpu/cpu4/cpuidle/driver/name", 698 .size = 22, 699 .content = "hisi_big_cluster_idle\n", 700 }, 701 { 702 .path = "/sys/devices/system/cpu/cpu4/cpufreq/affected_cpus", 703 .size = 8, 704 .content = "4 5 6 7\n", 705 }, 706 { 707 .path = "/sys/devices/system/cpu/cpu4/cpufreq/cpuinfo_max_freq", 708 .size = 8, 709 .content = "2362000\n", 710 }, 711 { 712 .path = "/sys/devices/system/cpu/cpu4/cpufreq/cpuinfo_min_freq", 713 .size = 7, 714 .content = "682000\n", 715 }, 716 { 717 .path = "/sys/devices/system/cpu/cpu4/cpufreq/cpuinfo_transition_latency", 718 .size = 8, 719 .content = "2000000\n", 720 }, 721 { 722 .path = "/sys/devices/system/cpu/cpu4/cpufreq/related_cpus", 723 .size = 8, 724 .content = "4 5 6 7\n", 725 }, 726 { 727 .path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_available_frequencies", 728 .size = 72, 729 .content = "682000 1018000 1210000 1364000 1498000 1652000 1863000 2093000 2362000 \n", 730 }, 731 { 732 .path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_available_governors", 733 .size = 67, 734 .content = "interactive conservative ondemand userspace powersave performance \n", 735 }, 736 { 737 .path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_cur_freq", 738 .size = 8, 739 .content = "1863000\n", 740 }, 741 { 742 .path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_driver", 743 .size = 11, 744 .content = "cpufreq-dt\n", 745 }, 746 { 747 .path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_governor", 748 .size = 12, 749 .content = "interactive\n", 750 }, 751 { 752 .path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_max_freq", 753 .size = 8, 754 .content = "2362000\n", 755 }, 756 { 757 .path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_min_freq", 758 .size = 7, 759 .content = "682000\n", 760 }, 761 { 762 .path = "/sys/devices/system/cpu/cpu4/cpufreq/stats/time_in_state", 763 .size = 107, 764 .content = 765 "682000 867\n" 766 "1018000 259\n" 767 "1210000 66\n" 768 "1364000 481\n" 769 "1498000 232\n" 770 "1652000 328\n" 771 "1863000 287\n" 772 "2093000 240\n" 773 "2362000 7089\n", 774 }, 775 { 776 .path = "/sys/devices/system/cpu/cpu4/cpufreq/stats/total_trans", 777 .size = 4, 778 .content = "370\n", 779 }, 780 { 781 .path = "/sys/devices/system/cpu/cpu4/cpufreq/stats/trans_table", 782 .size = 1037, 783 .content = 784 " From : To\n" 785 " : 682000 1018000 1210000 1364000 1498000 1652000 1863000 2093000 2362000 \n" 786 " 682000: 0 14 0 36 0 0 0 1 0 \n" 787 " 1018000: 9 0 6 21 0 0 0 0 0 \n" 788 " 1210000: 2 1 0 11 0 0 0 0 0 \n" 789 " 1364000: 13 4 2 0 11 40 0 0 0 \n" 790 " 1498000: 2 3 2 0 0 13 0 0 0 \n" 791 " 1652000: 5 4 1 0 3 0 41 1 1 \n" 792 " 1863000: 5 3 0 0 1 1 0 36 0 \n" 793 " 2093000: 5 1 1 0 2 0 1 0 33 \n" 794 " 2362000: 11 6 2 2 3 2 4 4 0 \n", 795 }, 796 { 797 .path = "/sys/devices/system/cpu/cpu4/topology/core_id", 798 .size = 2, 799 .content = "0\n", 800 }, 801 { 802 .path = "/sys/devices/system/cpu/cpu4/topology/core_siblings", 803 .size = 3, 804 .content = "f0\n", 805 }, 806 { 807 .path = "/sys/devices/system/cpu/cpu4/topology/core_siblings_list", 808 .size = 4, 809 .content = "4-7\n", 810 }, 811 { 812 .path = "/sys/devices/system/cpu/cpu4/topology/physical_package_id", 813 .size = 2, 814 .content = "1\n", 815 }, 816 { 817 .path = "/sys/devices/system/cpu/cpu4/topology/thread_siblings", 818 .size = 3, 819 .content = "10\n", 820 }, 821 { 822 .path = "/sys/devices/system/cpu/cpu4/topology/thread_siblings_list", 823 .size = 2, 824 .content = "4\n", 825 }, 826 { 827 .path = "/sys/devices/system/cpu/cpu5/cpuidle/driver/name", 828 .size = 22, 829 .content = "hisi_big_cluster_idle\n", 830 }, 831 { 832 .path = "/sys/devices/system/cpu/cpu5/cpufreq/affected_cpus", 833 .size = 8, 834 .content = "4 5 6 7\n", 835 }, 836 { 837 .path = "/sys/devices/system/cpu/cpu5/cpufreq/cpuinfo_max_freq", 838 .size = 8, 839 .content = "2362000\n", 840 }, 841 { 842 .path = "/sys/devices/system/cpu/cpu5/cpufreq/cpuinfo_min_freq", 843 .size = 7, 844 .content = "682000\n", 845 }, 846 { 847 .path = "/sys/devices/system/cpu/cpu5/cpufreq/cpuinfo_transition_latency", 848 .size = 8, 849 .content = "2000000\n", 850 }, 851 { 852 .path = "/sys/devices/system/cpu/cpu5/cpufreq/related_cpus", 853 .size = 8, 854 .content = "4 5 6 7\n", 855 }, 856 { 857 .path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_available_frequencies", 858 .size = 72, 859 .content = "682000 1018000 1210000 1364000 1498000 1652000 1863000 2093000 2362000 \n", 860 }, 861 { 862 .path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_available_governors", 863 .size = 67, 864 .content = "interactive conservative ondemand userspace powersave performance \n", 865 }, 866 { 867 .path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_cur_freq", 868 .size = 7, 869 .content = "682000\n", 870 }, 871 { 872 .path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_driver", 873 .size = 11, 874 .content = "cpufreq-dt\n", 875 }, 876 { 877 .path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_governor", 878 .size = 12, 879 .content = "interactive\n", 880 }, 881 { 882 .path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_max_freq", 883 .size = 8, 884 .content = "2362000\n", 885 }, 886 { 887 .path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_min_freq", 888 .size = 7, 889 .content = "682000\n", 890 }, 891 { 892 .path = "/sys/devices/system/cpu/cpu5/cpufreq/stats/time_in_state", 893 .size = 108, 894 .content = 895 "682000 926\n" 896 "1018000 272\n" 897 "1210000 100\n" 898 "1364000 534\n" 899 "1498000 253\n" 900 "1652000 368\n" 901 "1863000 299\n" 902 "2093000 246\n" 903 "2362000 7116\n", 904 }, 905 { 906 .path = "/sys/devices/system/cpu/cpu5/cpufreq/stats/total_trans", 907 .size = 4, 908 .content = "396\n", 909 }, 910 { 911 .path = "/sys/devices/system/cpu/cpu5/cpufreq/stats/trans_table", 912 .size = 1037, 913 .content = 914 " From : To\n" 915 " : 682000 1018000 1210000 1364000 1498000 1652000 1863000 2093000 2362000 \n" 916 " 682000: 0 16 0 39 0 0 0 1 0 \n" 917 " 1018000: 9 0 8 21 0 0 0 0 0 \n" 918 " 1210000: 3 1 0 13 0 0 0 0 0 \n" 919 " 1364000: 13 4 2 0 13 44 0 0 0 \n" 920 " 1498000: 3 3 3 0 0 13 0 0 0 \n" 921 " 1652000: 6 5 1 1 3 0 43 1 1 \n" 922 " 1863000: 6 3 0 0 1 1 0 37 0 \n" 923 " 2093000: 5 1 1 0 2 0 1 0 34 \n" 924 " 2362000: 11 6 2 2 3 3 4 4 0 \n", 925 }, 926 { 927 .path = "/sys/devices/system/cpu/cpu5/topology/core_id", 928 .size = 2, 929 .content = "1\n", 930 }, 931 { 932 .path = "/sys/devices/system/cpu/cpu5/topology/core_siblings", 933 .size = 3, 934 .content = "f0\n", 935 }, 936 { 937 .path = "/sys/devices/system/cpu/cpu5/topology/core_siblings_list", 938 .size = 4, 939 .content = "4-7\n", 940 }, 941 { 942 .path = "/sys/devices/system/cpu/cpu5/topology/physical_package_id", 943 .size = 2, 944 .content = "1\n", 945 }, 946 { 947 .path = "/sys/devices/system/cpu/cpu5/topology/thread_siblings", 948 .size = 3, 949 .content = "20\n", 950 }, 951 { 952 .path = "/sys/devices/system/cpu/cpu5/topology/thread_siblings_list", 953 .size = 2, 954 .content = "5\n", 955 }, 956 { 957 .path = "/sys/devices/system/cpu/cpu6/cpuidle/driver/name", 958 .size = 22, 959 .content = "hisi_big_cluster_idle\n", 960 }, 961 { 962 .path = "/sys/devices/system/cpu/cpu6/cpufreq/affected_cpus", 963 .size = 8, 964 .content = "4 5 6 7\n", 965 }, 966 { 967 .path = "/sys/devices/system/cpu/cpu6/cpufreq/cpuinfo_max_freq", 968 .size = 8, 969 .content = "2362000\n", 970 }, 971 { 972 .path = "/sys/devices/system/cpu/cpu6/cpufreq/cpuinfo_min_freq", 973 .size = 7, 974 .content = "682000\n", 975 }, 976 { 977 .path = "/sys/devices/system/cpu/cpu6/cpufreq/cpuinfo_transition_latency", 978 .size = 8, 979 .content = "2000000\n", 980 }, 981 { 982 .path = "/sys/devices/system/cpu/cpu6/cpufreq/related_cpus", 983 .size = 8, 984 .content = "4 5 6 7\n", 985 }, 986 { 987 .path = "/sys/devices/system/cpu/cpu6/cpufreq/scaling_available_frequencies", 988 .size = 72, 989 .content = "682000 1018000 1210000 1364000 1498000 1652000 1863000 2093000 2362000 \n", 990 }, 991 { 992 .path = "/sys/devices/system/cpu/cpu6/cpufreq/scaling_available_governors", 993 .size = 67, 994 .content = "interactive conservative ondemand userspace powersave performance \n", 995 }, 996 { 997 .path = "/sys/devices/system/cpu/cpu6/cpufreq/scaling_cur_freq", 998 .size = 8, 999 .content = "2362000\n", 1000 }, 1001 { 1002 .path = "/sys/devices/system/cpu/cpu6/cpufreq/scaling_driver", 1003 .size = 11, 1004 .content = "cpufreq-dt\n", 1005 }, 1006 { 1007 .path = "/sys/devices/system/cpu/cpu6/cpufreq/scaling_governor", 1008 .size = 12, 1009 .content = "interactive\n", 1010 }, 1011 { 1012 .path = "/sys/devices/system/cpu/cpu6/cpufreq/scaling_max_freq", 1013 .size = 8, 1014 .content = "2362000\n", 1015 }, 1016 { 1017 .path = "/sys/devices/system/cpu/cpu6/cpufreq/scaling_min_freq", 1018 .size = 7, 1019 .content = "682000\n", 1020 }, 1021 { 1022 .path = "/sys/devices/system/cpu/cpu6/cpufreq/stats/time_in_state", 1023 .size = 108, 1024 .content = 1025 "682000 941\n" 1026 "1018000 313\n" 1027 "1210000 117\n" 1028 "1364000 548\n" 1029 "1498000 264\n" 1030 "1652000 379\n" 1031 "1863000 310\n" 1032 "2093000 253\n" 1033 "2362000 7247\n", 1034 }, 1035 { 1036 .path = "/sys/devices/system/cpu/cpu6/cpufreq/stats/total_trans", 1037 .size = 4, 1038 .content = "410\n", 1039 }, 1040 { 1041 .path = "/sys/devices/system/cpu/cpu6/cpufreq/stats/trans_table", 1042 .size = 1037, 1043 .content = 1044 " From : To\n" 1045 " : 682000 1018000 1210000 1364000 1498000 1652000 1863000 2093000 2362000 \n" 1046 " 682000: 0 16 0 40 0 0 0 1 0 \n" 1047 " 1018000: 9 0 10 21 0 0 0 0 0 \n" 1048 " 1210000: 4 1 0 14 0 0 0 0 0 \n" 1049 " 1364000: 13 4 2 0 14 45 0 0 0 \n" 1050 " 1498000: 3 3 3 0 0 14 0 0 0 \n" 1051 " 1652000: 6 5 1 1 3 0 45 1 1 \n" 1052 " 1863000: 6 4 0 0 1 1 0 38 0 \n" 1053 " 2093000: 5 1 1 0 2 0 1 0 35 \n" 1054 " 2362000: 11 6 2 2 3 3 4 4 0 \n", 1055 }, 1056 { 1057 .path = "/sys/devices/system/cpu/cpu6/topology/core_id", 1058 .size = 2, 1059 .content = "2\n", 1060 }, 1061 { 1062 .path = "/sys/devices/system/cpu/cpu6/topology/core_siblings", 1063 .size = 3, 1064 .content = "f0\n", 1065 }, 1066 { 1067 .path = "/sys/devices/system/cpu/cpu6/topology/core_siblings_list", 1068 .size = 4, 1069 .content = "4-7\n", 1070 }, 1071 { 1072 .path = "/sys/devices/system/cpu/cpu6/topology/physical_package_id", 1073 .size = 2, 1074 .content = "1\n", 1075 }, 1076 { 1077 .path = "/sys/devices/system/cpu/cpu6/topology/thread_siblings", 1078 .size = 3, 1079 .content = "40\n", 1080 }, 1081 { 1082 .path = "/sys/devices/system/cpu/cpu6/topology/thread_siblings_list", 1083 .size = 2, 1084 .content = "6\n", 1085 }, 1086 { 1087 .path = "/sys/devices/system/cpu/cpu7/cpuidle/driver/name", 1088 .size = 22, 1089 .content = "hisi_big_cluster_idle\n", 1090 }, 1091 { 1092 .path = "/sys/devices/system/cpu/cpu7/cpufreq/affected_cpus", 1093 .size = 8, 1094 .content = "4 5 6 7\n", 1095 }, 1096 { 1097 .path = "/sys/devices/system/cpu/cpu7/cpufreq/cpuinfo_max_freq", 1098 .size = 8, 1099 .content = "2362000\n", 1100 }, 1101 { 1102 .path = "/sys/devices/system/cpu/cpu7/cpufreq/cpuinfo_min_freq", 1103 .size = 7, 1104 .content = "682000\n", 1105 }, 1106 { 1107 .path = "/sys/devices/system/cpu/cpu7/cpufreq/cpuinfo_transition_latency", 1108 .size = 8, 1109 .content = "2000000\n", 1110 }, 1111 { 1112 .path = "/sys/devices/system/cpu/cpu7/cpufreq/related_cpus", 1113 .size = 8, 1114 .content = "4 5 6 7\n", 1115 }, 1116 { 1117 .path = "/sys/devices/system/cpu/cpu7/cpufreq/scaling_available_frequencies", 1118 .size = 72, 1119 .content = "682000 1018000 1210000 1364000 1498000 1652000 1863000 2093000 2362000 \n", 1120 }, 1121 { 1122 .path = "/sys/devices/system/cpu/cpu7/cpufreq/scaling_available_governors", 1123 .size = 67, 1124 .content = "interactive conservative ondemand userspace powersave performance \n", 1125 }, 1126 { 1127 .path = "/sys/devices/system/cpu/cpu7/cpufreq/scaling_cur_freq", 1128 .size = 8, 1129 .content = "2362000\n", 1130 }, 1131 { 1132 .path = "/sys/devices/system/cpu/cpu7/cpufreq/scaling_driver", 1133 .size = 11, 1134 .content = "cpufreq-dt\n", 1135 }, 1136 { 1137 .path = "/sys/devices/system/cpu/cpu7/cpufreq/scaling_governor", 1138 .size = 12, 1139 .content = "interactive\n", 1140 }, 1141 { 1142 .path = "/sys/devices/system/cpu/cpu7/cpufreq/scaling_max_freq", 1143 .size = 8, 1144 .content = "2362000\n", 1145 }, 1146 { 1147 .path = "/sys/devices/system/cpu/cpu7/cpufreq/scaling_min_freq", 1148 .size = 7, 1149 .content = "682000\n", 1150 }, 1151 { 1152 .path = "/sys/devices/system/cpu/cpu7/cpufreq/stats/time_in_state", 1153 .size = 108, 1154 .content = 1155 "682000 941\n" 1156 "1018000 313\n" 1157 "1210000 117\n" 1158 "1364000 548\n" 1159 "1498000 264\n" 1160 "1652000 379\n" 1161 "1863000 310\n" 1162 "2093000 253\n" 1163 "2362000 7450\n", 1164 }, 1165 { 1166 .path = "/sys/devices/system/cpu/cpu7/cpufreq/stats/total_trans", 1167 .size = 4, 1168 .content = "410\n", 1169 }, 1170 { 1171 .path = "/sys/devices/system/cpu/cpu7/cpufreq/stats/trans_table", 1172 .size = 1037, 1173 .content = 1174 " From : To\n" 1175 " : 682000 1018000 1210000 1364000 1498000 1652000 1863000 2093000 2362000 \n" 1176 " 682000: 0 16 0 40 0 0 0 1 0 \n" 1177 " 1018000: 9 0 10 21 0 0 0 0 0 \n" 1178 " 1210000: 4 1 0 14 0 0 0 0 0 \n" 1179 " 1364000: 13 4 2 0 14 45 0 0 0 \n" 1180 " 1498000: 3 3 3 0 0 14 0 0 0 \n" 1181 " 1652000: 6 5 1 1 3 0 45 1 1 \n" 1182 " 1863000: 6 4 0 0 1 1 0 38 0 \n" 1183 " 2093000: 5 1 1 0 2 0 1 0 35 \n" 1184 " 2362000: 11 6 2 2 3 3 4 4 0 \n", 1185 }, 1186 { 1187 .path = "/sys/devices/system/cpu/cpu7/topology/core_id", 1188 .size = 2, 1189 .content = "3\n", 1190 }, 1191 { 1192 .path = "/sys/devices/system/cpu/cpu7/topology/core_siblings", 1193 .size = 3, 1194 .content = "f0\n", 1195 }, 1196 { 1197 .path = "/sys/devices/system/cpu/cpu7/topology/core_siblings_list", 1198 .size = 4, 1199 .content = "4-7\n", 1200 }, 1201 { 1202 .path = "/sys/devices/system/cpu/cpu7/topology/physical_package_id", 1203 .size = 2, 1204 .content = "1\n", 1205 }, 1206 { 1207 .path = "/sys/devices/system/cpu/cpu7/topology/thread_siblings", 1208 .size = 3, 1209 .content = "80\n", 1210 }, 1211 { 1212 .path = "/sys/devices/system/cpu/cpu7/topology/thread_siblings_list", 1213 .size = 2, 1214 .content = "7\n", 1215 }, 1216 { NULL }, 1217 }; 1218 #ifdef __ANDROID__ 1219 struct cpuinfo_mock_property properties[] = { 1220 { 1221 .key = "audio.high.resolution.enable", 1222 .value = "true", 1223 }, 1224 { 1225 .key = "bastet.service.enable", 1226 .value = "true", 1227 }, 1228 { 1229 .key = "bg_fsck.pgid", 1230 .value = "378", 1231 }, 1232 { 1233 .key = "bt.dpbap.enable", 1234 .value = "1", 1235 }, 1236 { 1237 .key = "bt.max.hfpclient.connections", 1238 .value = "2", 1239 }, 1240 { 1241 .key = "build.hisi_perf_opt", 1242 .value = "true", 1243 }, 1244 { 1245 .key = "camera.dis.flag", 1246 .value = "2", 1247 }, 1248 { 1249 .key = "camera.tnr.flag", 1250 .value = "1", 1251 }, 1252 { 1253 .key = "config.disable_consumerir", 1254 .value = "false", 1255 }, 1256 { 1257 .key = "dalvik.vm.appimageformat", 1258 .value = "lz4", 1259 }, 1260 { 1261 .key = "dalvik.vm.boot-dex2oat-threads", 1262 .value = "4", 1263 }, 1264 { 1265 .key = "dalvik.vm.checkjni", 1266 .value = "false", 1267 }, 1268 { 1269 .key = "dalvik.vm.dex2oat-Xms", 1270 .value = "64m", 1271 }, 1272 { 1273 .key = "dalvik.vm.dex2oat-Xmx", 1274 .value = "512m", 1275 }, 1276 { 1277 .key = "dalvik.vm.dex2oat-threads", 1278 .value = "4", 1279 }, 1280 { 1281 .key = "dalvik.vm.dexopt.secondary", 1282 .value = "true", 1283 }, 1284 { 1285 .key = "dalvik.vm.heapgrowthlimit", 1286 .value = "384m", 1287 }, 1288 { 1289 .key = "dalvik.vm.heapmaxfree", 1290 .value = "8m", 1291 }, 1292 { 1293 .key = "dalvik.vm.heapminfree", 1294 .value = "2m", 1295 }, 1296 { 1297 .key = "dalvik.vm.heapsize", 1298 .value = "512m", 1299 }, 1300 { 1301 .key = "dalvik.vm.heapstartsize", 1302 .value = "8m", 1303 }, 1304 { 1305 .key = "dalvik.vm.heaptargetutilization", 1306 .value = "0.75", 1307 }, 1308 { 1309 .key = "dalvik.vm.image-dex2oat-Xms", 1310 .value = "64m", 1311 }, 1312 { 1313 .key = "dalvik.vm.image-dex2oat-Xmx", 1314 .value = "64m", 1315 }, 1316 { 1317 .key = "dalvik.vm.image-dex2oat-threads", 1318 .value = "4", 1319 }, 1320 { 1321 .key = "dalvik.vm.isa.arm.features", 1322 .value = "default", 1323 }, 1324 { 1325 .key = "dalvik.vm.isa.arm.variant", 1326 .value = "cortex-a15", 1327 }, 1328 { 1329 .key = "dalvik.vm.isa.arm64.features", 1330 .value = "default", 1331 }, 1332 { 1333 .key = "dalvik.vm.isa.arm64.variant", 1334 .value = "generic", 1335 }, 1336 { 1337 .key = "dalvik.vm.stack-trace-file", 1338 .value = "/data/anr/traces.txt", 1339 }, 1340 { 1341 .key = "dalvik.vm.usejit", 1342 .value = "true", 1343 }, 1344 { 1345 .key = "dalvik.vm.usejitprofiles", 1346 .value = "true", 1347 }, 1348 { 1349 .key = "debug.aps.current_battery", 1350 .value = "4", 1351 }, 1352 { 1353 .key = "debug.aps.enable", 1354 .value = "0", 1355 }, 1356 { 1357 .key = "debug.aps.lcd_fps_scence", 1358 .value = "60", 1359 }, 1360 { 1361 .key = "debug.aps.process.name", 1362 .value = "", 1363 }, 1364 { 1365 .key = "debug.aps.scene_num", 1366 .value = "5", 1367 }, 1368 { 1369 .key = "debug.atrace.tags.enableflags", 1370 .value = "0", 1371 }, 1372 { 1373 .key = "debug.enable.rawnfds.flag", 1374 .value = "1", 1375 }, 1376 { 1377 .key = "debug.enable.yuvnfds.flag", 1378 .value = "1", 1379 }, 1380 { 1381 .key = "debug.enable.yuvnfds.offline.flag", 1382 .value = "1", 1383 }, 1384 { 1385 .key = "debug.force_rtl", 1386 .value = "0", 1387 }, 1388 { 1389 .key = "debug.hwui.render_dirty_regions", 1390 .value = "false", 1391 }, 1392 { 1393 .key = "debug.sf.latch_unsignaled", 1394 .value = "1", 1395 }, 1396 { 1397 .key = "dev.action_boot_completed", 1398 .value = "true", 1399 }, 1400 { 1401 .key = "dev.bootcomplete", 1402 .value = "1", 1403 }, 1404 { 1405 .key = "drm.service.enabled", 1406 .value = "true", 1407 }, 1408 { 1409 .key = "fw.max_users", 1410 .value = "4", 1411 }, 1412 { 1413 .key = "fw.show_multiuserui", 1414 .value = "1", 1415 }, 1416 { 1417 .key = "gsm.check_is_single_pdp_sub1", 1418 .value = "false", 1419 }, 1420 { 1421 .key = "gsm.check_is_single_pdp_sub2", 1422 .value = "false", 1423 }, 1424 { 1425 .key = "gsm.current.phone-type", 1426 .value = "1,1", 1427 }, 1428 { 1429 .key = "gsm.dualcards.switch", 1430 .value = "false", 1431 }, 1432 { 1433 .key = "gsm.fastdormancy.mode", 1434 .value = "1", 1435 }, 1436 { 1437 .key = "gsm.hw.fdn.activated1", 1438 .value = "false", 1439 }, 1440 { 1441 .key = "gsm.hw.fdn.activated2", 1442 .value = "false", 1443 }, 1444 { 1445 .key = "gsm.hw.operator.iso-country", 1446 .value = "", 1447 }, 1448 { 1449 .key = "gsm.hw.operator.isroaming", 1450 .value = "false", 1451 }, 1452 { 1453 .key = "gsm.hw.operator.numeric", 1454 .value = "", 1455 }, 1456 { 1457 .key = "gsm.network.type", 1458 .value = "UMTS,Unknown", 1459 }, 1460 { 1461 .key = "gsm.nvcfg.resetrild", 1462 .value = "0", 1463 }, 1464 { 1465 .key = "gsm.nvcfg.rildrestarting", 1466 .value = "0", 1467 }, 1468 { 1469 .key = "gsm.operator.alpha", 1470 .value = ",", 1471 }, 1472 { 1473 .key = "gsm.operator.iso-country", 1474 .value = ",", 1475 }, 1476 { 1477 .key = "gsm.operator.isroaming", 1478 .value = "false,false", 1479 }, 1480 { 1481 .key = "gsm.operator.numeric", 1482 .value = ",", 1483 }, 1484 { 1485 .key = "gsm.sigcust.configured", 1486 .value = "true", 1487 }, 1488 { 1489 .key = "gsm.sim.c_card.plmn", 1490 .value = "", 1491 }, 1492 { 1493 .key = "gsm.sim.hw_atr", 1494 .value = "null", 1495 }, 1496 { 1497 .key = "gsm.sim.hw_atr1", 1498 .value = "null", 1499 }, 1500 { 1501 .key = "gsm.sim.operator.alpha", 1502 .value = ",", 1503 }, 1504 { 1505 .key = "gsm.sim.operator.iso-country", 1506 .value = ",", 1507 }, 1508 { 1509 .key = "gsm.sim.operator.numeric", 1510 .value = ",", 1511 }, 1512 { 1513 .key = "gsm.sim.state", 1514 .value = "ABSENT,ABSENT", 1515 }, 1516 { 1517 .key = "gsm.sim1.type", 1518 .value = "-1", 1519 }, 1520 { 1521 .key = "gsm.sim2.type", 1522 .value = "-1", 1523 }, 1524 { 1525 .key = "gsm.version.baseband", 1526 .value = "21C10B551S000C000,21C10B551S000C000", 1527 }, 1528 { 1529 .key = "gsm.version.ril-impl", 1530 .value = "android infineon balong-ril 1.0", 1531 }, 1532 { 1533 .key = "hw.lcd.density", 1534 .value = "640", 1535 }, 1536 { 1537 .key = "hw.wifi.dns_stat", 1538 .value = "136,67,4288,1,16546", 1539 }, 1540 { 1541 .key = "hw.wifipro.dns_fail_count", 1542 .value = "8", 1543 }, 1544 { 1545 .key = "hwouc.hwpatch.version", 1546 .value = "", 1547 }, 1548 { 1549 .key = "hwservicemanager.ready", 1550 .value = "true", 1551 }, 1552 { 1553 .key = "init.svc.CameraDaemon", 1554 .value = "running", 1555 }, 1556 { 1557 .key = "init.svc.activityrecognition_1_0", 1558 .value = "running", 1559 }, 1560 { 1561 .key = "init.svc.adbd", 1562 .value = "running", 1563 }, 1564 { 1565 .key = "init.svc.applogcat", 1566 .value = "stopped", 1567 }, 1568 { 1569 .key = "init.svc.aptouch", 1570 .value = "running", 1571 }, 1572 { 1573 .key = "init.svc.audio-ext-hal-2-0", 1574 .value = "running", 1575 }, 1576 { 1577 .key = "init.svc.audioserver", 1578 .value = "running", 1579 }, 1580 { 1581 .key = "init.svc.bastetd", 1582 .value = "running", 1583 }, 1584 { 1585 .key = "init.svc.bluetooth-1-0", 1586 .value = "running", 1587 }, 1588 { 1589 .key = "init.svc.bootanim", 1590 .value = "stopped", 1591 }, 1592 { 1593 .key = "init.svc.cameraserver", 1594 .value = "running", 1595 }, 1596 { 1597 .key = "init.svc.chargelogcat", 1598 .value = "stopped", 1599 }, 1600 { 1601 .key = "init.svc.chargemonitor", 1602 .value = "running", 1603 }, 1604 { 1605 .key = "init.svc.check_root", 1606 .value = "stopped", 1607 }, 1608 { 1609 .key = "init.svc.configstore-hal-1-0", 1610 .value = "running", 1611 }, 1612 { 1613 .key = "init.svc.cust_from_init", 1614 .value = "stopped", 1615 }, 1616 { 1617 .key = "init.svc.display-hal-1-0", 1618 .value = "running", 1619 }, 1620 { 1621 .key = "init.svc.displayeffect-1-0", 1622 .value = "running", 1623 }, 1624 { 1625 .key = "init.svc.displayengine-hal-1-0", 1626 .value = "running", 1627 }, 1628 { 1629 .key = "init.svc.dpeservice", 1630 .value = "running", 1631 }, 1632 { 1633 .key = "init.svc.drm", 1634 .value = "running", 1635 }, 1636 { 1637 .key = "init.svc.drm-hal-1-0", 1638 .value = "running", 1639 }, 1640 { 1641 .key = "init.svc.drm-widevine-hal-1-0", 1642 .value = "running", 1643 }, 1644 { 1645 .key = "init.svc.dubaid", 1646 .value = "running", 1647 }, 1648 { 1649 .key = "init.svc.emcomd", 1650 .value = "running", 1651 }, 1652 { 1653 .key = "init.svc.eventslogcat", 1654 .value = "stopped", 1655 }, 1656 { 1657 .key = "init.svc.fm-1-0", 1658 .value = "running", 1659 }, 1660 { 1661 .key = "init.svc.fps_hal_ext", 1662 .value = "running", 1663 }, 1664 { 1665 .key = "init.svc.fusd", 1666 .value = "running", 1667 }, 1668 { 1669 .key = "init.svc.gatekeeper-1-0", 1670 .value = "running", 1671 }, 1672 { 1673 .key = "init.svc.gatekeeperd", 1674 .value = "running", 1675 }, 1676 { 1677 .key = "init.svc.gnss_service", 1678 .value = "running", 1679 }, 1680 { 1681 .key = "init.svc.gpsd_47531", 1682 .value = "running", 1683 }, 1684 { 1685 .key = "init.svc.gpsdaemon", 1686 .value = "stopped", 1687 }, 1688 { 1689 .key = "init.svc.gpuassistant", 1690 .value = "running", 1691 }, 1692 { 1693 .key = "init.svc.gralloc-2-0", 1694 .value = "running", 1695 }, 1696 { 1697 .key = "init.svc.hal_gnss_service_1", 1698 .value = "running", 1699 }, 1700 { 1701 .key = "init.svc.hdbd", 1702 .value = "stopped", 1703 }, 1704 { 1705 .key = "init.svc.health-hal-1-0", 1706 .value = "running", 1707 }, 1708 { 1709 .key = "init.svc.healthd", 1710 .value = "running", 1711 }, 1712 { 1713 .key = "init.svc.hiaiserver", 1714 .value = "running", 1715 }, 1716 { 1717 .key = "init.svc.hidl_memory", 1718 .value = "running", 1719 }, 1720 { 1721 .key = "init.svc.hilogcat", 1722 .value = "stopped", 1723 }, 1724 { 1725 .key = "init.svc.hinetmanager", 1726 .value = "running", 1727 }, 1728 { 1729 .key = "init.svc.hisupl_service", 1730 .value = "running", 1731 }, 1732 { 1733 .key = "init.svc.hiview", 1734 .value = "running", 1735 }, 1736 { 1737 .key = "init.svc.hivrar-hal-1-0", 1738 .value = "running", 1739 }, 1740 { 1741 .key = "init.svc.hivrarserver", 1742 .value = "running", 1743 }, 1744 { 1745 .key = "init.svc.hivwserver", 1746 .value = "running", 1747 }, 1748 { 1749 .key = "init.svc.hostapd", 1750 .value = "stopped", 1751 }, 1752 { 1753 .key = "init.svc.huaweiantitheft-hal-1-0", 1754 .value = "running", 1755 }, 1756 { 1757 .key = "init.svc.hw_ueventd", 1758 .value = "running", 1759 }, 1760 { 1761 .key = "init.svc.hwcomposer-2-1", 1762 .value = "running", 1763 }, 1764 { 1765 .key = "init.svc.hwemerffu", 1766 .value = "stopped", 1767 }, 1768 { 1769 .key = "init.svc.hwfactoryinterface-hal-1-0", 1770 .value = "running", 1771 }, 1772 { 1773 .key = "init.svc.hwfs-hal-1-0", 1774 .value = "running", 1775 }, 1776 { 1777 .key = "init.svc.hwhfd", 1778 .value = "stopped", 1779 }, 1780 { 1781 .key = "init.svc.hwnffserver", 1782 .value = "running", 1783 }, 1784 { 1785 .key = "init.svc.hwpged", 1786 .value = "running", 1787 }, 1788 { 1789 .key = "init.svc.hwservicemanager", 1790 .value = "running", 1791 }, 1792 { 1793 .key = "init.svc.iked", 1794 .value = "running", 1795 }, 1796 { 1797 .key = "init.svc.inputlogcat", 1798 .value = "stopped", 1799 }, 1800 { 1801 .key = "init.svc.installd", 1802 .value = "running", 1803 }, 1804 { 1805 .key = "init.svc.ir-hal-1-0", 1806 .value = "running", 1807 }, 1808 { 1809 .key = "init.svc.irqbalance", 1810 .value = "running", 1811 }, 1812 { 1813 .key = "init.svc.irsl-hal-1-0", 1814 .value = "running", 1815 }, 1816 { 1817 .key = "init.svc.isplogcat", 1818 .value = "stopped", 1819 }, 1820 { 1821 .key = "init.svc.jpegdec-1-0", 1822 .value = "running", 1823 }, 1824 { 1825 .key = "init.svc.keymaster-3-0", 1826 .value = "running", 1827 }, 1828 { 1829 .key = "init.svc.keystore", 1830 .value = "running", 1831 }, 1832 { 1833 .key = "init.svc.kmsglogcat", 1834 .value = "stopped", 1835 }, 1836 { 1837 .key = "init.svc.light-ext-hal-2-0", 1838 .value = "running", 1839 }, 1840 { 1841 .key = "init.svc.lmkd", 1842 .value = "running", 1843 }, 1844 { 1845 .key = "init.svc.logcat_service", 1846 .value = "stopped", 1847 }, 1848 { 1849 .key = "init.svc.logctl_service", 1850 .value = "stopped", 1851 }, 1852 { 1853 .key = "init.svc.logd", 1854 .value = "running", 1855 }, 1856 { 1857 .key = "init.svc.logd-reinit", 1858 .value = "stopped", 1859 }, 1860 { 1861 .key = "init.svc.macaddr", 1862 .value = "stopped", 1863 }, 1864 { 1865 .key = "init.svc.media", 1866 .value = "running", 1867 }, 1868 { 1869 .key = "init.svc.mediacodec", 1870 .value = "running", 1871 }, 1872 { 1873 .key = "init.svc.mediacomm@2.0-service", 1874 .value = "running", 1875 }, 1876 { 1877 .key = "init.svc.mediadrm", 1878 .value = "running", 1879 }, 1880 { 1881 .key = "init.svc.mediaextractor", 1882 .value = "running", 1883 }, 1884 { 1885 .key = "init.svc.mediametrics", 1886 .value = "running", 1887 }, 1888 { 1889 .key = "init.svc.memtrack-hal-1-0", 1890 .value = "running", 1891 }, 1892 { 1893 .key = "init.svc.netd", 1894 .value = "running", 1895 }, 1896 { 1897 .key = "init.svc.nfc_hal_ext_service", 1898 .value = "running", 1899 }, 1900 { 1901 .key = "init.svc.oeminfo_nvm", 1902 .value = "running", 1903 }, 1904 { 1905 .key = "init.svc.otherdevices-1-0", 1906 .value = "running", 1907 }, 1908 { 1909 .key = "init.svc.perfgenius-hal-1-0", 1910 .value = "running", 1911 }, 1912 { 1913 .key = "init.svc.pmom", 1914 .value = "running", 1915 }, 1916 { 1917 .key = "init.svc.power-hw-hal-1-0", 1918 .value = "running", 1919 }, 1920 { 1921 .key = "init.svc.powerlogd", 1922 .value = "running", 1923 }, 1924 { 1925 .key = "init.svc.ril-daemon", 1926 .value = "running", 1927 }, 1928 { 1929 .key = "init.svc.rillogcat", 1930 .value = "stopped", 1931 }, 1932 { 1933 .key = "init.svc.sensors-hal-1-0_hw", 1934 .value = "running", 1935 }, 1936 { 1937 .key = "init.svc.servicemanager", 1938 .value = "running", 1939 }, 1940 { 1941 .key = "init.svc.shex", 1942 .value = "stopped", 1943 }, 1944 { 1945 .key = "init.svc.shlogd", 1946 .value = "stopped", 1947 }, 1948 { 1949 .key = "init.svc.sleeplogcat", 1950 .value = "stopped", 1951 }, 1952 { 1953 .key = "init.svc.storage_info", 1954 .value = "running", 1955 }, 1956 { 1957 .key = "init.svc.storaged", 1958 .value = "running", 1959 }, 1960 { 1961 .key = "init.svc.surfaceflinger", 1962 .value = "running", 1963 }, 1964 { 1965 .key = "init.svc.system_teecd", 1966 .value = "running", 1967 }, 1968 { 1969 .key = "init.svc.teecd", 1970 .value = "running", 1971 }, 1972 { 1973 .key = "init.svc.teelogcat", 1974 .value = "stopped", 1975 }, 1976 { 1977 .key = "init.svc.thermal-daemon", 1978 .value = "running", 1979 }, 1980 { 1981 .key = "init.svc.thermal-hal-1-0", 1982 .value = "running", 1983 }, 1984 { 1985 .key = "init.svc.tombstoned", 1986 .value = "running", 1987 }, 1988 { 1989 .key = "init.svc.tp-hal-1-0", 1990 .value = "running", 1991 }, 1992 { 1993 .key = "init.svc.ueventd", 1994 .value = "running", 1995 }, 1996 { 1997 .key = "init.svc.uniperf-hal-1-0", 1998 .value = "running", 1999 }, 2000 { 2001 .key = "init.svc.unrmd", 2002 .value = "running", 2003 }, 2004 { 2005 .key = "init.svc.usb-hal-1-0", 2006 .value = "running", 2007 }, 2008 { 2009 .key = "init.svc.vibrator-HW-1-0", 2010 .value = "running", 2011 }, 2012 { 2013 .key = "init.svc.vndservicemanager", 2014 .value = "running", 2015 }, 2016 { 2017 .key = "init.svc.vold", 2018 .value = "running", 2019 }, 2020 { 2021 .key = "init.svc.vr-1-0", 2022 .value = "running", 2023 }, 2024 { 2025 .key = "init.svc.webview_zygote32", 2026 .value = "running", 2027 }, 2028 { 2029 .key = "init.svc.wifi_ext", 2030 .value = "running", 2031 }, 2032 { 2033 .key = "init.svc.wificond", 2034 .value = "running", 2035 }, 2036 { 2037 .key = "init.svc.wifidrvload", 2038 .value = "stopped", 2039 }, 2040 { 2041 .key = "init.svc.wpa_supplicant", 2042 .value = "running", 2043 }, 2044 { 2045 .key = "init.svc.zygote", 2046 .value = "running", 2047 }, 2048 { 2049 .key = "init.svc.zygote_secondary", 2050 .value = "running", 2051 }, 2052 { 2053 .key = "keyguard.no_require_sim", 2054 .value = "true", 2055 }, 2056 { 2057 .key = "net.bt.name", 2058 .value = "Android", 2059 }, 2060 { 2061 .key = "net.hostname", 2062 .value = "HUAWEI_Mate_10-b3a9822a10", 2063 }, 2064 { 2065 .key = "net.lte.ims.data.enabled", 2066 .value = "true", 2067 }, 2068 { 2069 .key = "net.ntp.time", 2070 .value = "1524186340063", 2071 }, 2072 { 2073 .key = "net.ntp.timereference", 2074 .value = "17335", 2075 }, 2076 { 2077 .key = "net.portal.background", 2078 .value = "false", 2079 }, 2080 { 2081 .key = "net.qtaguid_enabled", 2082 .value = "1", 2083 }, 2084 { 2085 .key = "net.tcp.default_init_rwnd", 2086 .value = "60", 2087 }, 2088 { 2089 .key = "partition.cust.verified", 2090 .value = "2", 2091 }, 2092 { 2093 .key = "partition.odm.verified", 2094 .value = "2", 2095 }, 2096 { 2097 .key = "partition.product.verified", 2098 .value = "2", 2099 }, 2100 { 2101 .key = "partition.system.verified", 2102 .value = "2", 2103 }, 2104 { 2105 .key = "partition.vendor.verified", 2106 .value = "2", 2107 }, 2108 { 2109 .key = "partition.version.verified", 2110 .value = "2", 2111 }, 2112 { 2113 .key = "persist.alloc_buffer_sync", 2114 .value = "true", 2115 }, 2116 { 2117 .key = "persist.bt.max.a2dp.connections", 2118 .value = "2", 2119 }, 2120 { 2121 .key = "persist.dsds.enabled", 2122 .value = "true", 2123 }, 2124 { 2125 .key = "persist.egl.support_vr", 2126 .value = "1", 2127 }, 2128 { 2129 .key = "persist.fw.force_adoptable", 2130 .value = "true", 2131 }, 2132 { 2133 .key = "persist.irqbalance.enable", 2134 .value = "true", 2135 }, 2136 { 2137 .key = "persist.jank.gameskip", 2138 .value = "true", 2139 }, 2140 { 2141 .key = "persist.media.lowlatency.enable", 2142 .value = "false", 2143 }, 2144 { 2145 .key = "persist.media.offload.enable", 2146 .value = "true", 2147 }, 2148 { 2149 .key = "persist.media.usbvoice.enable", 2150 .value = "true", 2151 }, 2152 { 2153 .key = "persist.media.usbvoice.name", 2154 .value = "USB-Audio - HUAWEI GLASS", 2155 }, 2156 { 2157 .key = "persist.partial_update_support", 2158 .value = "1", 2159 }, 2160 { 2161 .key = "persist.radio.activemodem", 2162 .value = "1", 2163 }, 2164 { 2165 .key = "persist.radio.airmode_sim0", 2166 .value = "false", 2167 }, 2168 { 2169 .key = "persist.radio.airmode_sim1", 2170 .value = "true", 2171 }, 2172 { 2173 .key = "persist.radio.apm_sim_not_pwdn", 2174 .value = "1", 2175 }, 2176 { 2177 .key = "persist.radio.commril_mode", 2178 .value = "HISI_CGUL_MODE", 2179 }, 2180 { 2181 .key = "persist.radio.fast_switch_step", 2182 .value = "0,0", 2183 }, 2184 { 2185 .key = "persist.radio.findmyphone", 2186 .value = "0", 2187 }, 2188 { 2189 .key = "persist.radio.last_phone_type", 2190 .value = "GSM", 2191 }, 2192 { 2193 .key = "persist.radio.m0_ps_allow", 2194 .value = "1", 2195 }, 2196 { 2197 .key = "persist.radio.modem.cap", 2198 .value = "09B9D50", 2199 }, 2200 { 2201 .key = "persist.radio.modem_cdma_roam", 2202 .value = "true", 2203 }, 2204 { 2205 .key = "persist.radio.multisim.config", 2206 .value = "dsds", 2207 }, 2208 { 2209 .key = "persist.radio.nv_bin_loaded_m0", 2210 .value = "false", 2211 }, 2212 { 2213 .key = "persist.radio.nv_bin_loaded_m1", 2214 .value = "false", 2215 }, 2216 { 2217 .key = "persist.radio.nv_match_by_card", 2218 .value = "2", 2219 }, 2220 { 2221 .key = "persist.radio.overseas_mode", 2222 .value = "true", 2223 }, 2224 { 2225 .key = "persist.radio.prefer_nw", 2226 .value = "0704030201", 2227 }, 2228 { 2229 .key = "persist.radio.prefer_nw_modem1", 2230 .value = "0201", 2231 }, 2232 { 2233 .key = "persist.radio.standby_mode", 2234 .value = "mode_ulu", 2235 }, 2236 { 2237 .key = "persist.radio.sub_state_cfg", 2238 .value = "1,1,1", 2239 }, 2240 { 2241 .key = "persist.rog_feature", 2242 .value = "1", 2243 }, 2244 { 2245 .key = "persist.service.hdb.enable", 2246 .value = "true", 2247 }, 2248 { 2249 .key = "persist.service.tm2.tofile", 2250 .value = "false", 2251 }, 2252 { 2253 .key = "persist.smart_pool", 2254 .value = "1", 2255 }, 2256 { 2257 .key = "persist.support_lte_modem1", 2258 .value = "true", 2259 }, 2260 { 2261 .key = "persist.sys.appstart.enable", 2262 .value = "true", 2263 }, 2264 { 2265 .key = "persist.sys.appstart.sync", 2266 .value = "false", 2267 }, 2268 { 2269 .key = "persist.sys.aps.defaultWidth", 2270 .value = "1440", 2271 }, 2272 { 2273 .key = "persist.sys.aps.firstboot", 2274 .value = "0", 2275 }, 2276 { 2277 .key = "persist.sys.boost.byeachfling", 2278 .value = "true", 2279 }, 2280 { 2281 .key = "persist.sys.boost.durationms", 2282 .value = "1000", 2283 }, 2284 { 2285 .key = "persist.sys.boost.skipframe", 2286 .value = "3", 2287 }, 2288 { 2289 .key = "persist.sys.cpuset.enable", 2290 .value = "1", 2291 }, 2292 { 2293 .key = "persist.sys.cpuset.subswitch", 2294 .value = "11792", 2295 }, 2296 { 2297 .key = "persist.sys.dalvik.vm.lib.2", 2298 .value = "libart.so", 2299 }, 2300 { 2301 .key = "persist.sys.default.res.xres", 2302 .value = "1440", 2303 }, 2304 { 2305 .key = "persist.sys.devsched.subswitch", 2306 .value = "4", 2307 }, 2308 { 2309 .key = "persist.sys.dpi", 2310 .value = "640", 2311 }, 2312 { 2313 .key = "persist.sys.dualcards", 2314 .value = "true", 2315 }, 2316 { 2317 .key = "persist.sys.enable_iaware", 2318 .value = "true", 2319 }, 2320 { 2321 .key = "persist.sys.fast_h_duration", 2322 .value = "2000", 2323 }, 2324 { 2325 .key = "persist.sys.fast_h_max", 2326 .value = "50", 2327 }, 2328 { 2329 .key = "persist.sys.fingerpressnavi", 2330 .value = "0", 2331 }, 2332 { 2333 .key = "persist.sys.fingersense", 2334 .value = "1", 2335 }, 2336 { 2337 .key = "persist.sys.hiview.onekeycaptur", 2338 .value = "0", 2339 }, 2340 { 2341 .key = "persist.sys.huawei.debug.on", 2342 .value = "0", 2343 }, 2344 { 2345 .key = "persist.sys.hwGpsTimestamp", 2346 .value = "1515720322477", 2347 }, 2348 { 2349 .key = "persist.sys.hwLastSystemTime", 2350 .value = "1515720322567", 2351 }, 2352 { 2353 .key = "persist.sys.hwairplanestate", 2354 .value = "error", 2355 }, 2356 { 2357 .key = "persist.sys.iaware.cpuenable", 2358 .value = "true", 2359 }, 2360 { 2361 .key = "persist.sys.iaware.vsyncfirst", 2362 .value = "true", 2363 }, 2364 { 2365 .key = "persist.sys.iaware_config_ver", 2366 .value = "ALP-L29_US_iaware_config_1.0_rev.xml", 2367 }, 2368 { 2369 .key = "persist.sys.jankdb", 2370 .value = "<10><400><400><400><400><400>", 2371 }, 2372 { 2373 .key = "persist.sys.jankenable", 2374 .value = "true", 2375 }, 2376 { 2377 .key = "persist.sys.kmemleak.debug", 2378 .value = "0", 2379 }, 2380 { 2381 .key = "persist.sys.locale", 2382 .value = "en-US", 2383 }, 2384 { 2385 .key = "persist.sys.logsystem.coredump", 2386 .value = "off", 2387 }, 2388 { 2389 .key = "persist.sys.logsystem.dataflow", 2390 .value = "0", 2391 }, 2392 { 2393 .key = "persist.sys.logsystem.modem", 2394 .value = "0", 2395 }, 2396 { 2397 .key = "persist.sys.logsystem.protohint", 2398 .value = "0", 2399 }, 2400 { 2401 .key = "persist.sys.max_rdh_delay", 2402 .value = "0", 2403 }, 2404 { 2405 .key = "persist.sys.mcc_match_fyrom", 2406 .value = "", 2407 }, 2408 { 2409 .key = "persist.sys.performance", 2410 .value = "true", 2411 }, 2412 { 2413 .key = "persist.sys.powerup_reason", 2414 .value = "NORMAL", 2415 }, 2416 { 2417 .key = "persist.sys.preloads.file_cache_expired", 2418 .value = "1", 2419 }, 2420 { 2421 .key = "persist.sys.profiler_ms", 2422 .value = "0", 2423 }, 2424 { 2425 .key = "persist.sys.realdpi", 2426 .value = "480", 2427 }, 2428 { 2429 .key = "persist.sys.rog.configmode", 2430 .value = "1", 2431 }, 2432 { 2433 .key = "persist.sys.rog.height", 2434 .value = "1920", 2435 }, 2436 { 2437 .key = "persist.sys.rog.width", 2438 .value = "1080", 2439 }, 2440 { 2441 .key = "persist.sys.root.status", 2442 .value = "0", 2443 }, 2444 { 2445 .key = "persist.sys.sdcardfs.emulated", 2446 .value = "1", 2447 }, 2448 { 2449 .key = "persist.sys.sdcardfs.public", 2450 .value = "1", 2451 }, 2452 { 2453 .key = "persist.sys.sdencryption.enable", 2454 .value = "true", 2455 }, 2456 { 2457 .key = "persist.sys.shut_alarm", 2458 .value = "none", 2459 }, 2460 { 2461 .key = "persist.sys.srms.enable", 2462 .value = "true", 2463 }, 2464 { 2465 .key = "persist.sys.timezone", 2466 .value = "Asia/Singapore", 2467 }, 2468 { 2469 .key = "persist.sys.usb.config", 2470 .value = "hisuite,mtp,mass_storage,adb", 2471 }, 2472 { 2473 .key = "persist.sys.webview.vmsize", 2474 .value = "113140720", 2475 }, 2476 { 2477 .key = "persist.texture_cache_opt", 2478 .value = "1", 2479 }, 2480 { 2481 .key = "persist.touch_move_opt", 2482 .value = "1", 2483 }, 2484 { 2485 .key = "persist.touch_vsync_opt", 2486 .value = "1", 2487 }, 2488 { 2489 .key = "pm.dexopt.ab-ota", 2490 .value = "speed-profile", 2491 }, 2492 { 2493 .key = "pm.dexopt.bg-dexopt", 2494 .value = "speed-profile", 2495 }, 2496 { 2497 .key = "pm.dexopt.boot", 2498 .value = "verify", 2499 }, 2500 { 2501 .key = "pm.dexopt.first-boot", 2502 .value = "quicken", 2503 }, 2504 { 2505 .key = "pm.dexopt.install", 2506 .value = "quicken", 2507 }, 2508 { 2509 .key = "qemu.hw.mainkeys", 2510 .value = "0", 2511 }, 2512 { 2513 .key = "ril.balong_cid", 2514 .value = "0", 2515 }, 2516 { 2517 .key = "ril.ecclist", 2518 .value = "112,911,000,08,110,118,119,999,120,122,112,911", 2519 }, 2520 { 2521 .key = "ril.ecclist1", 2522 .value = "112,911,000,08,110,118,119,999,112,911", 2523 }, 2524 { 2525 .key = "ril.force_to_set_ecc", 2526 .value = "invalid", 2527 }, 2528 { 2529 .key = "ril.hw_modem0.rssi", 2530 .value = "-1", 2531 }, 2532 { 2533 .key = "ril.hw_modem1.rssi", 2534 .value = "-1", 2535 }, 2536 { 2537 .key = "ril.hw_modem2.rssi", 2538 .value = "-1", 2539 }, 2540 { 2541 .key = "ril.modem.balong_nvm_server", 2542 .value = "true", 2543 }, 2544 { 2545 .key = "ril.operator.numeric", 2546 .value = "310410", 2547 }, 2548 { 2549 .key = "rild.libargs", 2550 .value = "-m modem0", 2551 }, 2552 { 2553 .key = "rild.libargs1", 2554 .value = "-m modem1", 2555 }, 2556 { 2557 .key = "rild.libargs2", 2558 .value = "-m modem2", 2559 }, 2560 { 2561 .key = "rild.libpath", 2562 .value = "/vendor/lib64/libbalong-ril.so", 2563 }, 2564 { 2565 .key = "rild.libpath1", 2566 .value = "/vendor/lib64/libbalong-ril-1.so", 2567 }, 2568 { 2569 .key = "rild.libpath2", 2570 .value = "/vendor/lib64/libbalong-ril-2.so", 2571 }, 2572 { 2573 .key = "rild.rild1_ready_to_start", 2574 .value = "false", 2575 }, 2576 { 2577 .key = "ro.adb.btstatus", 2578 .value = "valid", 2579 }, 2580 { 2581 .key = "ro.adb.secure", 2582 .value = "1", 2583 }, 2584 { 2585 .key = "ro.allow.mock.location", 2586 .value = "0", 2587 }, 2588 { 2589 .key = "ro.audio.gamescene_volume", 2590 .value = "0.4", 2591 }, 2592 { 2593 .key = "ro.audio.offload_wakelock", 2594 .value = "false", 2595 }, 2596 { 2597 .key = "ro.baseband", 2598 .value = "unknown", 2599 }, 2600 { 2601 .key = "ro.blight.exempt_app_type", 2602 .value = "-1,1,16,24", 2603 }, 2604 { 2605 .key = "ro.board.boardid", 2606 .value = "6421", 2607 }, 2608 { 2609 .key = "ro.board.boardname", 2610 .value = "ALPS_LX9_VN1_CS_G_WIFI_PMIC", 2611 }, 2612 { 2613 .key = "ro.board.modemid", 2614 .value = "39004800", 2615 }, 2616 { 2617 .key = "ro.board.platform", 2618 .value = "kirin970", 2619 }, 2620 { 2621 .key = "ro.booking.channel.path", 2622 .value = "/cust_spec/xml/.booking.data.aid", 2623 }, 2624 { 2625 .key = "ro.boot.avb_version", 2626 .value = "0.0", 2627 }, 2628 { 2629 .key = "ro.boot.ddrsize", 2630 .value = "4", 2631 }, 2632 { 2633 .key = "ro.boot.flash.locked", 2634 .value = "1", 2635 }, 2636 { 2637 .key = "ro.boot.hardware", 2638 .value = "kirin970", 2639 }, 2640 { 2641 .key = "ro.boot.mode", 2642 .value = "normal", 2643 }, 2644 { 2645 .key = "ro.boot.oemmode", 2646 .value = "user", 2647 }, 2648 { 2649 .key = "ro.boot.selinux", 2650 .value = "enforcing", 2651 }, 2652 { 2653 .key = "ro.boot.serialno", 2654 .value = "QMU7N17A21017472", 2655 }, 2656 { 2657 .key = "ro.boot.slot_suffix", 2658 .value = "_a", 2659 }, 2660 { 2661 .key = "ro.boot.vbmeta.avb_version", 2662 .value = "0.0", 2663 }, 2664 { 2665 .key = "ro.boot.vbmeta.device_state", 2666 .value = "locked", 2667 }, 2668 { 2669 .key = "ro.boot.vbmeta.digest", 2670 .value = "a1f549dae3e376fd8d34fda6f91407f457e99c49365c54881f73451fa3794dee", 2671 }, 2672 { 2673 .key = "ro.boot.vbmeta.hash_alg", 2674 .value = "sha256", 2675 }, 2676 { 2677 .key = "ro.boot.vbmeta.size", 2678 .value = "16832", 2679 }, 2680 { 2681 .key = "ro.boot.verifiedbootstate", 2682 .value = "GREEN", 2683 }, 2684 { 2685 .key = "ro.boot.veritymode", 2686 .value = "enforcing", 2687 }, 2688 { 2689 .key = "ro.bootimage.build.date", 2690 .value = "Fri Nov 3 02:12:03 CST 2017", 2691 }, 2692 { 2693 .key = "ro.bootimage.build.date.utc", 2694 .value = "1509646323", 2695 }, 2696 { 2697 .key = "ro.bootimage.build.fingerprint", 2698 .value = "Huawei/generic_a15/generic_a15:8.0.0/OPR6.170623.010/jslave11030210:user/test-keys", 2699 }, 2700 { 2701 .key = "ro.bootloader", 2702 .value = "unknown", 2703 }, 2704 { 2705 .key = "ro.bootmode", 2706 .value = "normal", 2707 }, 2708 { 2709 .key = "ro.build.characteristics", 2710 .value = "default", 2711 }, 2712 { 2713 .key = "ro.build.date", 2714 .value = "Fri Nov 3 02:10:41 CST 2017", 2715 }, 2716 { 2717 .key = "ro.build.date.utc", 2718 .value = "1509646241", 2719 }, 2720 { 2721 .key = "ro.build.description", 2722 .value = "ALP-L29-user 8.0.0 HUAWEIALP-L29 119(C636) release-keys", 2723 }, 2724 { 2725 .key = "ro.build.display.id", 2726 .value = "ALP-L29 8.0.0.119(C636)", 2727 }, 2728 { 2729 .key = "ro.build.fingerprint", 2730 .value = "HUAWEI/ALP-L29/HWALP:8.0.0/HUAWEIALP-L29/119(C636):user/release-keys", 2731 }, 2732 { 2733 .key = "ro.build.flavor", 2734 .value = "kirin970-user", 2735 }, 2736 { 2737 .key = "ro.build.hide", 2738 .value = "false", 2739 }, 2740 { 2741 .key = "ro.build.hide.matchers", 2742 .value = "ALP;HW;HWALP;kirin970;HUAWEI;Heimdall-MP12;8.0.0", 2743 }, 2744 { 2745 .key = "ro.build.hide.replacements", 2746 .value = "HIM;unknown;unknown;unknown;unknown;unknown;5.0.1", 2747 }, 2748 { 2749 .key = "ro.build.hide.settings", 2750 .value = "8;1.8 GHz;2.0GB;11.00 GB;16.00 GB;1920 x 1080;5.1;3.10.30;3.1", 2751 }, 2752 { 2753 .key = "ro.build.host", 2754 .value = "shajk0209cna", 2755 }, 2756 { 2757 .key = "ro.build.hw_emui_api_level", 2758 .value = "14", 2759 }, 2760 { 2761 .key = "ro.build.id", 2762 .value = "HUAWEIALP-L29", 2763 }, 2764 { 2765 .key = "ro.build.product", 2766 .value = "ALP", 2767 }, 2768 { 2769 .key = "ro.build.tags", 2770 .value = "release-keys", 2771 }, 2772 { 2773 .key = "ro.build.type", 2774 .value = "user", 2775 }, 2776 { 2777 .key = "ro.build.update_version", 2778 .value = "V1_2", 2779 }, 2780 { 2781 .key = "ro.build.user", 2782 .value = "test", 2783 }, 2784 { 2785 .key = "ro.build.version.all_codenames", 2786 .value = "REL", 2787 }, 2788 { 2789 .key = "ro.build.version.base_os", 2790 .value = "", 2791 }, 2792 { 2793 .key = "ro.build.version.codename", 2794 .value = "REL", 2795 }, 2796 { 2797 .key = "ro.build.version.emui", 2798 .value = "EmotionUI_8.0.0", 2799 }, 2800 { 2801 .key = "ro.build.version.incremental", 2802 .value = "119(C636)", 2803 }, 2804 { 2805 .key = "ro.build.version.preview_sdk", 2806 .value = "0", 2807 }, 2808 { 2809 .key = "ro.build.version.release", 2810 .value = "8.0.0", 2811 }, 2812 { 2813 .key = "ro.build.version.sdk", 2814 .value = "26", 2815 }, 2816 { 2817 .key = "ro.build.version.security_patch", 2818 .value = "2017-11-06", 2819 }, 2820 { 2821 .key = "ro.carrier", 2822 .value = "unknown", 2823 }, 2824 { 2825 .key = "ro.cdma.home.operator.numeric", 2826 .value = "46003", 2827 }, 2828 { 2829 .key = "ro.cellbroadcast.emergencyids", 2830 .value = "0-65534", 2831 }, 2832 { 2833 .key = "ro.check.modem_network", 2834 .value = "true", 2835 }, 2836 { 2837 .key = "ro.cofig.onlinemusic.enabled", 2838 .value = "false", 2839 }, 2840 { 2841 .key = "ro.cofig.onlinevideo.enabled", 2842 .value = "false", 2843 }, 2844 { 2845 .key = "ro.com.google.clientidbase", 2846 .value = "android-huawei", 2847 }, 2848 { 2849 .key = "ro.com.google.clientidbase.am", 2850 .value = "android-huawei", 2851 }, 2852 { 2853 .key = "ro.com.google.clientidbase.ms", 2854 .value = "android-huawei", 2855 }, 2856 { 2857 .key = "ro.com.google.clientidbase.wal", 2858 .value = "android-huawei", 2859 }, 2860 { 2861 .key = "ro.com.google.gmsversion", 2862 .value = "8.0_r2", 2863 }, 2864 { 2865 .key = "ro.com.google.rlz_ap_whitelist", 2866 .value = "y0,y5,y6,y7", 2867 }, 2868 { 2869 .key = "ro.com.google.rlzbrandcode", 2870 .value = "HWDA", 2871 }, 2872 { 2873 .key = "ro.comp.chipset_version", 2874 .value = "Chipset-boston 8.0.0.38(00J4)", 2875 }, 2876 { 2877 .key = "ro.comp.cust_version", 2878 .value = "Cust-636000 8.0.0.1(0000)", 2879 }, 2880 { 2881 .key = "ro.comp.product_version", 2882 .value = "Product-ALP 8.0.0.5(0001)", 2883 }, 2884 { 2885 .key = "ro.comp.sys_support_vndk", 2886 .value = "", 2887 }, 2888 { 2889 .key = "ro.comp.system_version", 2890 .value = "System 8.0.0.38(018L)", 2891 }, 2892 { 2893 .key = "ro.comp.version_version", 2894 .value = "Version-ALP-L29-636000 8.0.0.1(001E)", 2895 }, 2896 { 2897 .key = "ro.confg.hw_bootversion", 2898 .value = "System 8.0.0.38(018L)_BOOT", 2899 }, 2900 { 2901 .key = "ro.confg.hw_fastbootversion", 2902 .value = "Chipset-boston8.0.0.38(00J4)_FASTBOOT", 2903 }, 2904 { 2905 .key = "ro.confg.hw_odmversion", 2906 .value = "Chipset-boston 8.0.0.38(00J4)_ODM_ALPS", 2907 }, 2908 { 2909 .key = "ro.confg.hw_systemversion", 2910 .value = "System 8.0.0.38(018L)", 2911 }, 2912 { 2913 .key = "ro.confg.hw_userdataversion", 2914 .value = "ALP-L29 8.0.0.119(C636)_DATA_ALP-L29_hw_spcseas", 2915 }, 2916 { 2917 .key = "ro.config.CphsOnsEnabled", 2918 .value = "false", 2919 }, 2920 { 2921 .key = "ro.config.alarm_alert", 2922 .value = "Aegean_Sea.ogg", 2923 }, 2924 { 2925 .key = "ro.config.app_big_icon_size", 2926 .value = "224", 2927 }, 2928 { 2929 .key = "ro.config.attach_apn_enabled", 2930 .value = "true", 2931 }, 2932 { 2933 .key = "ro.config.attach_ip_type", 2934 .value = "IPV4V6", 2935 }, 2936 { 2937 .key = "ro.config.auto_display_mode", 2938 .value = "true", 2939 }, 2940 { 2941 .key = "ro.config.backcolor", 2942 .value = "black", 2943 }, 2944 { 2945 .key = "ro.config.beta_sec_ctrl", 2946 .value = "false", 2947 }, 2948 { 2949 .key = "ro.config.blight_power_curve", 2950 .value = "50,0.8;100,0.7;150,0.6;450,0.6;460,0.7;470,0.8;480,0.9;490,1", 2951 }, 2952 { 2953 .key = "ro.config.ca_withoutcat", 2954 .value = "true", 2955 }, 2956 { 2957 .key = "ro.config.calendar_event_order", 2958 .value = "true", 2959 }, 2960 { 2961 .key = "ro.config.callinwifi", 2962 .value = "200,6", 2963 }, 2964 { 2965 .key = "ro.config.camera.region", 2966 .value = "ntdny", 2967 }, 2968 { 2969 .key = "ro.config.carkitmodenotif", 2970 .value = "true", 2971 }, 2972 { 2973 .key = "ro.config.cdma_quiet", 2974 .value = "true", 2975 }, 2976 { 2977 .key = "ro.config.client_number", 2978 .value = "5", 2979 }, 2980 { 2981 .key = "ro.config.colorTemperature_3d", 2982 .value = "true", 2983 }, 2984 { 2985 .key = "ro.config.colorTemperature_K3", 2986 .value = "true", 2987 }, 2988 { 2989 .key = "ro.config.data_preinstalled", 2990 .value = "true", 2991 }, 2992 { 2993 .key = "ro.config.default_commril_mode", 2994 .value = "HISI_CGUL_MODE", 2995 }, 2996 { 2997 .key = "ro.config.devicecolor", 2998 .value = "black", 2999 }, 3000 { 3001 .key = "ro.config.dist_nosim_airplane", 3002 .value = "true", 3003 }, 3004 { 3005 .key = "ro.config.dsds_mode", 3006 .value = "cdma_gsm", 3007 }, 3008 { 3009 .key = "ro.config.emergencycall_show", 3010 .value = "true", 3011 }, 3012 { 3013 .key = "ro.config.enable_iaware", 3014 .value = "true", 3015 }, 3016 { 3017 .key = "ro.config.enable_perfhub_fling", 3018 .value = "true", 3019 }, 3020 { 3021 .key = "ro.config.enable_rcc", 3022 .value = "true", 3023 }, 3024 { 3025 .key = "ro.config.enable_thermal_bdata", 3026 .value = "true", 3027 }, 3028 { 3029 .key = "ro.config.fast_switch_simslot", 3030 .value = "true", 3031 }, 3032 { 3033 .key = "ro.config.finger_joint", 3034 .value = "true", 3035 }, 3036 { 3037 .key = "ro.config.fix_commril_mode", 3038 .value = "false", 3039 }, 3040 { 3041 .key = "ro.config.fp_navigation", 3042 .value = "true", 3043 }, 3044 { 3045 .key = "ro.config.full_network_support", 3046 .value = "true", 3047 }, 3048 { 3049 .key = "ro.config.gallery_story_disable", 3050 .value = "false", 3051 }, 3052 { 3053 .key = "ro.config.helix_enable", 3054 .value = "true", 3055 }, 3056 { 3057 .key = "ro.config.hideContactWithoutNum", 3058 .value = "true", 3059 }, 3060 { 3061 .key = "ro.config.hisi_cdma_supported", 3062 .value = "true", 3063 }, 3064 { 3065 .key = "ro.config.hspap_hsdpa_open", 3066 .value = "1", 3067 }, 3068 { 3069 .key = "ro.config.huawei_smallwindow", 3070 .value = "931,0,1440,2560", 3071 }, 3072 { 3073 .key = "ro.config.hw.imeisv", 3074 .value = "true", 3075 }, 3076 { 3077 .key = "ro.config.hw.security_volume", 3078 .value = "7", 3079 }, 3080 { 3081 .key = "ro.config.hw_OptiDBConfig", 3082 .value = "true", 3083 }, 3084 { 3085 .key = "ro.config.hw_ReduceSAR", 3086 .value = "false", 3087 }, 3088 { 3089 .key = "ro.config.hw_RemindWifiToPdp", 3090 .value = "true", 3091 }, 3092 { 3093 .key = "ro.config.hw_TW_emergencyNum", 3094 .value = "true", 3095 }, 3096 { 3097 .key = "ro.config.hw_allow_rs_mms", 3098 .value = "true", 3099 }, 3100 { 3101 .key = "ro.config.hw_always_allow_mms", 3102 .value = "0", 3103 }, 3104 { 3105 .key = "ro.config.hw_board_ipa", 3106 .value = "true", 3107 }, 3108 { 3109 .key = "ro.config.hw_camera_nfc_switch", 3110 .value = "true", 3111 }, 3112 { 3113 .key = "ro.config.hw_ch_alg", 3114 .value = "2", 3115 }, 3116 { 3117 .key = "ro.config.hw_change_volte_icon", 3118 .value = "false", 3119 }, 3120 { 3121 .key = "ro.config.hw_charge_frz", 3122 .value = "true", 3123 }, 3124 { 3125 .key = "ro.config.hw_dsda", 3126 .value = "false", 3127 }, 3128 { 3129 .key = "ro.config.hw_dsdspowerup", 3130 .value = "true", 3131 }, 3132 { 3133 .key = "ro.config.hw_dts_settings", 3134 .value = "true", 3135 }, 3136 { 3137 .key = "ro.config.hw_eapsim", 3138 .value = "true", 3139 }, 3140 { 3141 .key = "ro.config.hw_eccNumUseRplmn", 3142 .value = "true", 3143 }, 3144 { 3145 .key = "ro.config.hw_ecc_with_sim_card", 3146 .value = "true", 3147 }, 3148 { 3149 .key = "ro.config.hw_em_solution_ver", 3150 .value = "B117", 3151 }, 3152 { 3153 .key = "ro.config.hw_emcom", 3154 .value = "true", 3155 }, 3156 { 3157 .key = "ro.config.hw_emui_desktop_mode", 3158 .value = "true", 3159 }, 3160 { 3161 .key = "ro.config.hw_enable_merge", 3162 .value = "true", 3163 }, 3164 { 3165 .key = "ro.config.hw_front_fp_navi", 3166 .value = "true", 3167 }, 3168 { 3169 .key = "ro.config.hw_front_fp_trikey", 3170 .value = "0", 3171 }, 3172 { 3173 .key = "ro.config.hw_globalEcc", 3174 .value = "true", 3175 }, 3176 { 3177 .key = "ro.config.hw_glovemode_enabled", 3178 .value = "1", 3179 }, 3180 { 3181 .key = "ro.config.hw_hideSimIcon", 3182 .value = "false", 3183 }, 3184 { 3185 .key = "ro.config.hw_hidecallforward", 3186 .value = "false", 3187 }, 3188 { 3189 .key = "ro.config.hw_higeo_fusion_ver", 3190 .value = "1.5", 3191 }, 3192 { 3193 .key = "ro.config.hw_higeo_map_matching", 3194 .value = "1", 3195 }, 3196 { 3197 .key = "ro.config.hw_higeo_nw_pos_db", 3198 .value = "HERE", 3199 }, 3200 { 3201 .key = "ro.config.hw_higeo_pdrsupport", 3202 .value = "true", 3203 }, 3204 { 3205 .key = "ro.config.hw_hotswap_on", 3206 .value = "true", 3207 }, 3208 { 3209 .key = "ro.config.hw_hungtasklist", 3210 .value = "whitelist,system_server,SurfaceFlinger", 3211 }, 3212 { 3213 .key = "ro.config.hw_icon_supprot_cut", 3214 .value = "false", 3215 }, 3216 { 3217 .key = "ro.config.hw_imei_sv_enable", 3218 .value = "true", 3219 }, 3220 { 3221 .key = "ro.config.hw_imei_sv_show_two", 3222 .value = "true", 3223 }, 3224 { 3225 .key = "ro.config.hw_ims_as_normal", 3226 .value = "true", 3227 }, 3228 { 3229 .key = "ro.config.hw_ipv6_support", 3230 .value = "true", 3231 }, 3232 { 3233 .key = "ro.config.hw_low_ram", 3234 .value = "false", 3235 }, 3236 { 3237 .key = "ro.config.hw_lte_release", 3238 .value = "true", 3239 }, 3240 { 3241 .key = "ro.config.hw_lte_support", 3242 .value = "true", 3243 }, 3244 { 3245 .key = "ro.config.hw_media_flags", 3246 .value = "1", 3247 }, 3248 { 3249 .key = "ro.config.hw_multiscreen", 3250 .value = "false", 3251 }, 3252 { 3253 .key = "ro.config.hw_music_lp", 3254 .value = "true", 3255 }, 3256 { 3257 .key = "ro.config.hw_navigationbar", 3258 .value = "true", 3259 }, 3260 { 3261 .key = "ro.config.hw_nfc_def_route", 3262 .value = "2", 3263 }, 3264 { 3265 .key = "ro.config.hw_nfc_on", 3266 .value = "true", 3267 }, 3268 { 3269 .key = "ro.config.hw_not_modify_wifi", 3270 .value = "Singtel WIFI", 3271 }, 3272 { 3273 .key = "ro.config.hw_omacp", 3274 .value = "1", 3275 }, 3276 { 3277 .key = "ro.config.hw_opta", 3278 .value = "636", 3279 }, 3280 { 3281 .key = "ro.config.hw_optb", 3282 .value = "999", 3283 }, 3284 { 3285 .key = "ro.config.hw_perfgenius", 3286 .value = "true", 3287 }, 3288 { 3289 .key = "ro.config.hw_power_saving", 3290 .value = "true", 3291 }, 3292 { 3293 .key = "ro.config.hw_rcm_cert", 3294 .value = "true", 3295 }, 3296 { 3297 .key = "ro.config.hw_rcs_product", 3298 .value = "false", 3299 }, 3300 { 3301 .key = "ro.config.hw_save_pin", 3302 .value = "true", 3303 }, 3304 { 3305 .key = "ro.config.hw_sensorhub", 3306 .value = "true", 3307 }, 3308 { 3309 .key = "ro.config.hw_showSimName", 3310 .value = "true", 3311 }, 3312 { 3313 .key = "ro.config.hw_show_4G_Plus_icon", 3314 .value = "false", 3315 }, 3316 { 3317 .key = "ro.config.hw_show_mmiError", 3318 .value = "true", 3319 }, 3320 { 3321 .key = "ro.config.hw_show_network_icon", 3322 .value = "true", 3323 }, 3324 { 3325 .key = "ro.config.hw_sim2airplane", 3326 .value = "true", 3327 }, 3328 { 3329 .key = "ro.config.hw_simcard_pre_city", 3330 .value = "true", 3331 }, 3332 { 3333 .key = "ro.config.hw_simlock_retries", 3334 .value = "true", 3335 }, 3336 { 3337 .key = "ro.config.hw_simpleui_enable", 3338 .value = "1", 3339 }, 3340 { 3341 .key = "ro.config.hw_singlehand", 3342 .value = "1", 3343 }, 3344 { 3345 .key = "ro.config.hw_southeast_asia", 3346 .value = "true", 3347 }, 3348 { 3349 .key = "ro.config.hw_srlte", 3350 .value = "true", 3351 }, 3352 { 3353 .key = "ro.config.hw_support_clone_app", 3354 .value = "true", 3355 }, 3356 { 3357 .key = "ro.config.hw_support_geofence", 3358 .value = "true", 3359 }, 3360 { 3361 .key = "ro.config.hw_support_vm_ecc", 3362 .value = "true", 3363 }, 3364 { 3365 .key = "ro.config.hw_switchdata_4G", 3366 .value = "true", 3367 }, 3368 { 3369 .key = "ro.config.hw_sws", 3370 .value = "true", 3371 }, 3372 { 3373 .key = "ro.config.hw_ukey_version", 3374 .value = "2", 3375 }, 3376 { 3377 .key = "ro.config.hw_useCtrlSocket", 3378 .value = "true", 3379 }, 3380 { 3381 .key = "ro.config.hw_use_browser_ua", 3382 .value = "http://wap1.huawei.com/uaprof/HUAWEI_%s_UAProfile.xml", 3383 }, 3384 { 3385 .key = "ro.config.hw_vcardBase64", 3386 .value = "true", 3387 }, 3388 { 3389 .key = "ro.config.hw_voicemail_sim", 3390 .value = "true", 3391 }, 3392 { 3393 .key = "ro.config.hw_volte_dyn", 3394 .value = "true", 3395 }, 3396 { 3397 .key = "ro.config.hw_volte_icon_rule", 3398 .value = "2", 3399 }, 3400 { 3401 .key = "ro.config.hw_volte_on", 3402 .value = "true", 3403 }, 3404 { 3405 .key = "ro.config.hw_vowifi", 3406 .value = "true", 3407 }, 3408 { 3409 .key = "ro.config.hw_vowifi_mmsut", 3410 .value = "true", 3411 }, 3412 { 3413 .key = "ro.config.hw_watermark", 3414 .value = "false", 3415 }, 3416 { 3417 .key = "ro.config.hw_wifibridge", 3418 .value = "true", 3419 }, 3420 { 3421 .key = "ro.config.hw_wifipro_enable", 3422 .value = "true", 3423 }, 3424 { 3425 .key = "ro.config.hwtheme", 3426 .value = "1", 3427 }, 3428 { 3429 .key = "ro.config.is_start_commril", 3430 .value = "true", 3431 }, 3432 { 3433 .key = "ro.config.keyguard_unusedata", 3434 .value = "false", 3435 }, 3436 { 3437 .key = "ro.config.keypasstouser", 3438 .value = "true", 3439 }, 3440 { 3441 .key = "ro.config.light_ratio_max", 3442 .value = "230", 3443 }, 3444 { 3445 .key = "ro.config.limit_lcd_manual", 3446 .value = "true", 3447 }, 3448 { 3449 .key = "ro.config.linkplus.liveupdate", 3450 .value = "true", 3451 }, 3452 { 3453 .key = "ro.config.m1csimlteflwims", 3454 .value = "true", 3455 }, 3456 { 3457 .key = "ro.config.marketing_name", 3458 .value = "HUAWEI Mate 10", 3459 }, 3460 { 3461 .key = "ro.config.mmu_en", 3462 .value = "1", 3463 }, 3464 { 3465 .key = "ro.config.modem_number", 3466 .value = "3", 3467 }, 3468 { 3469 .key = "ro.config.music_lp_vol", 3470 .value = "true", 3471 }, 3472 { 3473 .key = "ro.config.music_region", 3474 .value = "normal", 3475 }, 3476 { 3477 .key = "ro.config.myloc_show_first", 3478 .value = "true", 3479 }, 3480 { 3481 .key = "ro.config.nfc_ce_transevt", 3482 .value = "true", 3483 }, 3484 { 3485 .key = "ro.config.notification_sound", 3486 .value = "Bongo.ogg", 3487 }, 3488 { 3489 .key = "ro.config.pg_camera_cabc", 3490 .value = "true", 3491 }, 3492 { 3493 .key = "ro.config.plmn_to_settings", 3494 .value = "true", 3495 }, 3496 { 3497 .key = "ro.config.report_cell_info_list", 3498 .value = "true", 3499 }, 3500 { 3501 .key = "ro.config.ringtone", 3502 .value = "Huawei_Tune_Living.ogg", 3503 }, 3504 { 3505 .key = "ro.config.ringtone2", 3506 .value = "Huawei_Tune_Clean.ogg", 3507 }, 3508 { 3509 .key = "ro.config.safety_certification", 3510 .value = "FCC,CE", 3511 }, 3512 { 3513 .key = "ro.config.scr_timeout_10sec", 3514 .value = "true", 3515 }, 3516 { 3517 .key = "ro.config.show_always_mms_ui", 3518 .value = "true", 3519 }, 3520 { 3521 .key = "ro.config.show_epg_menu", 3522 .value = "false", 3523 }, 3524 { 3525 .key = "ro.config.show_full_month", 3526 .value = "true", 3527 }, 3528 { 3529 .key = "ro.config.show_vmail_number", 3530 .value = "true", 3531 }, 3532 { 3533 .key = "ro.config.small.previewpos", 3534 .value = "right", 3535 }, 3536 { 3537 .key = "ro.config.small_cover_size", 3538 .value = "_500x2560", 3539 }, 3540 { 3541 .key = "ro.config.spare_ntp_server", 3542 .value = "ntp.sjtu.edu.cn,time.windows.com,time.nist.gov,1.cn.pool.ntp.org", 3543 }, 3544 { 3545 .key = "ro.config.sup_lte_high_speed", 3546 .value = "true", 3547 }, 3548 { 3549 .key = "ro.config.sup_six_at_chan", 3550 .value = "true", 3551 }, 3552 { 3553 .key = "ro.config.support_aod", 3554 .value = "0", 3555 }, 3556 { 3557 .key = "ro.config.support_ca", 3558 .value = "true", 3559 }, 3560 { 3561 .key = "ro.config.support_crrconn", 3562 .value = "true", 3563 }, 3564 { 3565 .key = "ro.config.support_one_time_hota", 3566 .value = "true", 3567 }, 3568 { 3569 .key = "ro.config.support_wcdma_modem1", 3570 .value = "true", 3571 }, 3572 { 3573 .key = "ro.config.switchPrimaryVolume", 3574 .value = "true", 3575 }, 3576 { 3577 .key = "ro.config.swsAlwaysActiveForSPK", 3578 .value = "true", 3579 }, 3580 { 3581 .key = "ro.config.sws_apk_hptype", 3582 .value = "1", 3583 }, 3584 { 3585 .key = "ro.config.sws_version", 3586 .value = "0400", 3587 }, 3588 { 3589 .key = "ro.config.theme_display_tw", 3590 .value = "true", 3591 }, 3592 { 3593 .key = "ro.config.third_key_provider", 3594 .value = "kukong", 3595 }, 3596 { 3597 .key = "ro.config.toolorder", 3598 .value = "0,2,1,3,4", 3599 }, 3600 { 3601 .key = "ro.config.updatelocation", 3602 .value = "true", 3603 }, 3604 { 3605 .key = "ro.config.utkShowIcon", 3606 .value = "true", 3607 }, 3608 { 3609 .key = "ro.config.vm_prioritymode", 3610 .value = "2", 3611 }, 3612 { 3613 .key = "ro.config.vol_steps", 3614 .value = "15", 3615 }, 3616 { 3617 .key = "ro.config.widevine_level3", 3618 .value = "true", 3619 }, 3620 { 3621 .key = "ro.config.wifi_country_code", 3622 .value = "true", 3623 }, 3624 { 3625 .key = "ro.config.wifi_fast_bss_enable", 3626 .value = "true", 3627 }, 3628 { 3629 .key = "ro.connectivity.chiptype", 3630 .value = "bcm43xx", 3631 }, 3632 { 3633 .key = "ro.connectivity.sub_chiptype", 3634 .value = "bcm4359", 3635 }, 3636 { 3637 .key = "ro.control.sleeplog", 3638 .value = "true", 3639 }, 3640 { 3641 .key = "ro.control_privapp_permissions", 3642 .value = "log", 3643 }, 3644 { 3645 .key = "ro.crypto.fuse_sdcard", 3646 .value = "true", 3647 }, 3648 { 3649 .key = "ro.crypto.state", 3650 .value = "encrypted", 3651 }, 3652 { 3653 .key = "ro.crypto.type", 3654 .value = "file", 3655 }, 3656 { 3657 .key = "ro.cust.cdrom", 3658 .value = "/data/hw_init/version/region_comm/oversea/cdrom/autorun.iso", 3659 }, 3660 { 3661 .key = "ro.dalvik.vm.native.bridge", 3662 .value = "0", 3663 }, 3664 { 3665 .key = "ro.debuggable", 3666 .value = "0", 3667 }, 3668 { 3669 .key = "ro.device_owner", 3670 .value = "false", 3671 }, 3672 { 3673 .key = "ro.dual.sim.phone", 3674 .value = "true", 3675 }, 3676 { 3677 .key = "ro.email.inline_as_att", 3678 .value = "true", 3679 }, 3680 { 3681 .key = "ro.expect.recovery_id", 3682 .value = "0x0dbe4526dd792a437d42b9fff954cf354a0f1c7c000000000000000000000000", 3683 }, 3684 { 3685 .key = "ro.facebook.partnerid", 3686 .value = "huawei:3ed03d0-8ce2-42fa-a449-b9443817d7b4", 3687 }, 3688 { 3689 .key = "ro.frp.pst", 3690 .value = "/dev/block/bootdevice/by-name/frp", 3691 }, 3692 { 3693 .key = "ro.game.low_audio_effect", 3694 .value = "false", 3695 }, 3696 { 3697 .key = "ro.hardware", 3698 .value = "kirin970", 3699 }, 3700 { 3701 .key = "ro.hardware.alter", 3702 .value = "HiSilicon Kirin 970", 3703 }, 3704 { 3705 .key = "ro.hardware.audio.primary", 3706 .value = "hisi", 3707 }, 3708 { 3709 .key = "ro.hdmi.service", 3710 .value = "false", 3711 }, 3712 { 3713 .key = "ro.huawei.cust.oma", 3714 .value = "false", 3715 }, 3716 { 3717 .key = "ro.huawei.cust.oma_drm", 3718 .value = "false", 3719 }, 3720 { 3721 .key = "ro.hw.country", 3722 .value = "spcseas", 3723 }, 3724 { 3725 .key = "ro.hw.custPath", 3726 .value = "/cust/hw/spcseas", 3727 }, 3728 { 3729 .key = "ro.hw.mirrorlink.enable", 3730 .value = "true", 3731 }, 3732 { 3733 .key = "ro.hw.oemName", 3734 .value = "ALP-L29", 3735 }, 3736 { 3737 .key = "ro.hw.specialCustPath", 3738 .value = "/cust_spec", 3739 }, 3740 { 3741 .key = "ro.hw.vendor", 3742 .value = "hw", 3743 }, 3744 { 3745 .key = "ro.hwaft.tpfp.filter_area", 3746 .value = "720,200", 3747 }, 3748 { 3749 .key = "ro.hwcamera.portrait_mode", 3750 .value = "off", 3751 }, 3752 { 3753 .key = "ro.hwcamera.use.videosize.1080p", 3754 .value = "true", 3755 }, 3756 { 3757 .key = "ro.hwui.drop_shadow_cache_size", 3758 .value = "6", 3759 }, 3760 { 3761 .key = "ro.hwui.gradient_cache_size", 3762 .value = "1", 3763 }, 3764 { 3765 .key = "ro.hwui.layer_cache_size", 3766 .value = "48", 3767 }, 3768 { 3769 .key = "ro.hwui.path_cache_size", 3770 .value = "32", 3771 }, 3772 { 3773 .key = "ro.hwui.r_buffer_cache_size", 3774 .value = "8", 3775 }, 3776 { 3777 .key = "ro.hwui.shape_cache_size", 3778 .value = "2", 3779 }, 3780 { 3781 .key = "ro.hwui.text_large_cache_height", 3782 .value = "1024", 3783 }, 3784 { 3785 .key = "ro.hwui.text_large_cache_width", 3786 .value = "2048", 3787 }, 3788 { 3789 .key = "ro.hwui.text_small_cache_height", 3790 .value = "1024", 3791 }, 3792 { 3793 .key = "ro.hwui.text_small_cache_width", 3794 .value = "1024", 3795 }, 3796 { 3797 .key = "ro.hwui.texture_cache_flushrate", 3798 .value = "0.4", 3799 }, 3800 { 3801 .key = "ro.hwui.texture_cache_size", 3802 .value = "72", 3803 }, 3804 { 3805 .key = "ro.image", 3806 .value = "bootimage", 3807 }, 3808 { 3809 .key = "ro.logsystem.usertype", 3810 .value = "6", 3811 }, 3812 { 3813 .key = "ro.magic.api.version", 3814 .value = "0.1", 3815 }, 3816 { 3817 .key = "ro.multi.rild", 3818 .value = "false", 3819 }, 3820 { 3821 .key = "ro.oba.version", 3822 .value = "20171106195642_OBA_VERSION", 3823 }, 3824 { 3825 .key = "ro.oem_unlock_supported", 3826 .value = "1", 3827 }, 3828 { 3829 .key = "ro.opa.eligible_device", 3830 .value = "true", 3831 }, 3832 { 3833 .key = "ro.opengles.version", 3834 .value = "196610", 3835 }, 3836 { 3837 .key = "ro.patch.baseline.version", 3838 .value = "2.0", 3839 }, 3840 { 3841 .key = "ro.product.CustCVersion", 3842 .value = "C636", 3843 }, 3844 { 3845 .key = "ro.product.board", 3846 .value = "ALP", 3847 }, 3848 { 3849 .key = "ro.product.brand", 3850 .value = "HUAWEI", 3851 }, 3852 { 3853 .key = "ro.product.cpu.abi", 3854 .value = "arm64-v8a", 3855 }, 3856 { 3857 .key = "ro.product.cpu.abilist", 3858 .value = "arm64-v8a,armeabi-v7a,armeabi", 3859 }, 3860 { 3861 .key = "ro.product.cpu.abilist32", 3862 .value = "armeabi-v7a,armeabi", 3863 }, 3864 { 3865 .key = "ro.product.cpu.abilist64", 3866 .value = "arm64-v8a", 3867 }, 3868 { 3869 .key = "ro.product.device", 3870 .value = "HWALP", 3871 }, 3872 { 3873 .key = "ro.product.fingerprintName", 3874 .value = "HUAWEI-Z105", 3875 }, 3876 { 3877 .key = "ro.product.hardwareversion", 3878 .value = "HL1AALPSM", 3879 }, 3880 { 3881 .key = "ro.product.locale", 3882 .value = "en-GB", 3883 }, 3884 { 3885 .key = "ro.product.locale.language", 3886 .value = "en", 3887 }, 3888 { 3889 .key = "ro.product.locale.region", 3890 .value = "US", 3891 }, 3892 { 3893 .key = "ro.product.manufacturer", 3894 .value = "HUAWEI", 3895 }, 3896 { 3897 .key = "ro.product.model", 3898 .value = "ALP-L29", 3899 }, 3900 { 3901 .key = "ro.product.name", 3902 .value = "ALP-L29", 3903 }, 3904 { 3905 .key = "ro.product.platform", 3906 .value = "kirin970", 3907 }, 3908 { 3909 .key = "ro.product.platform.pseudonym", 3910 .value = "1ARB9CV", 3911 }, 3912 { 3913 .key = "ro.property_service.version", 3914 .value = "2", 3915 }, 3916 { 3917 .key = "ro.pwroff_card_if_tray_out", 3918 .value = "true", 3919 }, 3920 { 3921 .key = "ro.quick_broadcast_cardstatus", 3922 .value = "false", 3923 }, 3924 { 3925 .key = "ro.readfastboot", 3926 .value = "0", 3927 }, 3928 { 3929 .key = "ro.revision", 3930 .value = "0", 3931 }, 3932 { 3933 .key = "ro.ril.ecclist", 3934 .value = "112,911,#911,*911", 3935 }, 3936 { 3937 .key = "ro.runmode", 3938 .value = "normal", 3939 }, 3940 { 3941 .key = "ro.secure", 3942 .value = "1", 3943 }, 3944 { 3945 .key = "ro.serialno", 3946 .value = "QMU7N17A21017472", 3947 }, 3948 { 3949 .key = "ro.setupwizard.mode", 3950 .value = "OPTIONAL", 3951 }, 3952 { 3953 .key = "ro.setupwizard.require_network", 3954 .value = "ro.setupwizard.mode=OPTIONAL", 3955 }, 3956 { 3957 .key = "ro.setupwizard.wifi_on_exit", 3958 .value = "false", 3959 }, 3960 { 3961 .key = "ro.sf.lcd_density", 3962 .value = "480", 3963 }, 3964 { 3965 .key = "ro.sf.real_lcd_density", 3966 .value = "640", 3967 }, 3968 { 3969 .key = "ro.sys.powerup_reason", 3970 .value = "NORMAL", 3971 }, 3972 { 3973 .key = "ro.sys.sdcardfs", 3974 .value = "1", 3975 }, 3976 { 3977 .key = "ro.sys.umsdirtyratio", 3978 .value = "2", 3979 }, 3980 { 3981 .key = "ro.sys.wp", 3982 .value = "true", 3983 }, 3984 { 3985 .key = "ro.sysui.show.normal.layout", 3986 .value = "true", 3987 }, 3988 { 3989 .key = "ro.telephony.default_network", 3990 .value = "9", 3991 }, 3992 { 3993 .key = "ro.treble.enabled", 3994 .value = "true", 3995 }, 3996 { 3997 .key = "ro.tui.service", 3998 .value = "true", 3999 }, 4000 { 4001 .key = "ro.userlock", 4002 .value = "locked", 4003 }, 4004 { 4005 .key = "ro.vendor.build.date", 4006 .value = "Mon Nov 6 19:57:14 CST 2017", 4007 }, 4008 { 4009 .key = "ro.vendor.build.date.utc", 4010 .value = "1509969434", 4011 }, 4012 { 4013 .key = "ro.vendor.build.fingerprint", 4014 .value = "HUAWEI/ALP-L29/HWALP:8.0.0/HUAWEIALP-L29/119(C636):user/release-keys", 4015 }, 4016 { 4017 .key = "ro.vendor.vndk.version", 4018 .value = "26.0.0", 4019 }, 4020 { 4021 .key = "ro.wifi.channels", 4022 .value = "", 4023 }, 4024 { 4025 .key = "ro.zygote", 4026 .value = "zygote64_32", 4027 }, 4028 { 4029 .key = "security.perf_harden", 4030 .value = "1", 4031 }, 4032 { 4033 .key = "service.bootanim.exit", 4034 .value = "1", 4035 }, 4036 { 4037 .key = "service.sf.present_timestamp", 4038 .value = "1", 4039 }, 4040 { 4041 .key = "sys.2dsdr.pkgname", 4042 .value = "*", 4043 }, 4044 { 4045 .key = "sys.2dsdr.startratio", 4046 .value = "1", 4047 }, 4048 { 4049 .key = "sys.aps.2kenablesdrdefault", 4050 .value = "true", 4051 }, 4052 { 4053 .key = "sys.aps.browserProcessName", 4054 .value = "", 4055 }, 4056 { 4057 .key = "sys.aps.gameProcessName", 4058 .value = "", 4059 }, 4060 { 4061 .key = "sys.aps.support", 4062 .value = "1032427", 4063 }, 4064 { 4065 .key = "sys.aps.version", 4066 .value = "5.0.4-5.0.15", 4067 }, 4068 { 4069 .key = "sys.boot_completed", 4070 .value = "1", 4071 }, 4072 { 4073 .key = "sys.defaultapn.enabled", 4074 .value = "false", 4075 }, 4076 { 4077 .key = "sys.fingerprint.deviceId", 4078 .value = "0", 4079 }, 4080 { 4081 .key = "sys.hisi.pmom.service.enable", 4082 .value = "false", 4083 }, 4084 { 4085 .key = "sys.huawei.thermal.enable", 4086 .value = "true", 4087 }, 4088 { 4089 .key = "sys.hw_boot_success", 4090 .value = "1", 4091 }, 4092 { 4093 .key = "sys.hwsholder.count", 4094 .value = "0", 4095 }, 4096 { 4097 .key = "sys.iaware.cpuset.screenoff.bg", 4098 .value = "0-3", 4099 }, 4100 { 4101 .key = "sys.iaware.cpuset.screenoff.boost", 4102 .value = "0-7", 4103 }, 4104 { 4105 .key = "sys.iaware.cpuset.screenoff.fg", 4106 .value = "0-7", 4107 }, 4108 { 4109 .key = "sys.iaware.cpuset.screenoff.kbg", 4110 .value = "0-3", 4111 }, 4112 { 4113 .key = "sys.iaware.cpuset.screenoff.sysbg", 4114 .value = "0-3", 4115 }, 4116 { 4117 .key = "sys.iaware.cpuset.screenoff.taboost", 4118 .value = "", 4119 }, 4120 { 4121 .key = "sys.iaware.cpuset.screenoff.topapp", 4122 .value = "0-7", 4123 }, 4124 { 4125 .key = "sys.iaware.cpuset.screenon.bg", 4126 .value = "2-3", 4127 }, 4128 { 4129 .key = "sys.iaware.cpuset.screenon.boost", 4130 .value = "4-7", 4131 }, 4132 { 4133 .key = "sys.iaware.cpuset.screenon.fg", 4134 .value = "0-7", 4135 }, 4136 { 4137 .key = "sys.iaware.cpuset.screenon.kbg", 4138 .value = "2-3,7", 4139 }, 4140 { 4141 .key = "sys.iaware.cpuset.screenon.sysbg", 4142 .value = "0-3", 4143 }, 4144 { 4145 .key = "sys.iaware.cpuset.screenon.taboost", 4146 .value = "4-7", 4147 }, 4148 { 4149 .key = "sys.iaware.cpuset.screenon.topapp", 4150 .value = "0-7", 4151 }, 4152 { 4153 .key = "sys.iaware.cpuset.vron.bg", 4154 .value = "0-2", 4155 }, 4156 { 4157 .key = "sys.iaware.cpuset.vron.boost", 4158 .value = "4-7", 4159 }, 4160 { 4161 .key = "sys.iaware.cpuset.vron.fg", 4162 .value = "0-2,4-7", 4163 }, 4164 { 4165 .key = "sys.iaware.cpuset.vron.kbg", 4166 .value = "0-2", 4167 }, 4168 { 4169 .key = "sys.iaware.cpuset.vron.sysbg", 4170 .value = "0-2", 4171 }, 4172 { 4173 .key = "sys.iaware.cpuset.vron.taboost", 4174 .value = "", 4175 }, 4176 { 4177 .key = "sys.iaware.cpuset.vron.topapp", 4178 .value = "0-7", 4179 }, 4180 { 4181 .key = "sys.iaware.eas.on", 4182 .value = "true", 4183 }, 4184 { 4185 .key = "sys.iaware.empty_app_percent", 4186 .value = "67", 4187 }, 4188 { 4189 .key = "sys.iaware.nosave.h.freq", 4190 .value = "1364000", 4191 }, 4192 { 4193 .key = "sys.iaware.nosave.h.load", 4194 .value = "90", 4195 }, 4196 { 4197 .key = "sys.iaware.nosave.h.tload", 4198 .value = "80:1364000:75:1498000:85:1652000:95", 4199 }, 4200 { 4201 .key = "sys.iaware.nosave.l.freq", 4202 .value = "1402000", 4203 }, 4204 { 4205 .key = "sys.iaware.nosave.l.load", 4206 .value = "95", 4207 }, 4208 { 4209 .key = "sys.iaware.nosave.l.tload", 4210 .value = "75:1018000:85:1402000:75:1556000:83", 4211 }, 4212 { 4213 .key = "sys.iaware.save.h.freq", 4214 .value = "1364000", 4215 }, 4216 { 4217 .key = "sys.iaware.save.h.load", 4218 .value = "90", 4219 }, 4220 { 4221 .key = "sys.iaware.save.h.tload", 4222 .value = "80:1364000:75:1498000:85:1652000:95", 4223 }, 4224 { 4225 .key = "sys.iaware.save.l.freq", 4226 .value = "1402000", 4227 }, 4228 { 4229 .key = "sys.iaware.save.l.load", 4230 .value = "95", 4231 }, 4232 { 4233 .key = "sys.iaware.save.l.tload", 4234 .value = "75:1018000:85:1402000:75:1556000:83", 4235 }, 4236 { 4237 .key = "sys.iaware.set.h.freq", 4238 .value = "1364000", 4239 }, 4240 { 4241 .key = "sys.iaware.set.h.load", 4242 .value = "90", 4243 }, 4244 { 4245 .key = "sys.iaware.set.h.tload", 4246 .value = "80:1364000:75:1498000:85:1652000:95", 4247 }, 4248 { 4249 .key = "sys.iaware.set.l.freq", 4250 .value = "1402000", 4251 }, 4252 { 4253 .key = "sys.iaware.set.l.load", 4254 .value = "95", 4255 }, 4256 { 4257 .key = "sys.iaware.set.l.tload", 4258 .value = "75:1018000:85:1402000:75:1556000:83", 4259 }, 4260 { 4261 .key = "sys.iaware.supersave.h.freq", 4262 .value = "1364000", 4263 }, 4264 { 4265 .key = "sys.iaware.supersave.h.load", 4266 .value = "90", 4267 }, 4268 { 4269 .key = "sys.iaware.supersave.h.tload", 4270 .value = "80:1364000:75:1498000:85:1652000:95", 4271 }, 4272 { 4273 .key = "sys.iaware.supersave.l.freq", 4274 .value = "1402000", 4275 }, 4276 { 4277 .key = "sys.iaware.supersave.l.load", 4278 .value = "95", 4279 }, 4280 { 4281 .key = "sys.iaware.supersave.l.tload", 4282 .value = "75:1018000:85:1402000:75:1556000:83", 4283 }, 4284 { 4285 .key = "sys.iswifihotspoton", 4286 .value = "false", 4287 }, 4288 { 4289 .key = "sys.logbootcomplete", 4290 .value = "1", 4291 }, 4292 { 4293 .key = "sys.logbuffer.disable", 4294 .value = "false", 4295 }, 4296 { 4297 .key = "sys.oem_unlock_allowed", 4298 .value = "0", 4299 }, 4300 { 4301 .key = "sys.pg.pre_rescue_boot_count", 4302 .value = "1", 4303 }, 4304 { 4305 .key = "sys.refresh.dirty", 4306 .value = "1", 4307 }, 4308 { 4309 .key = "sys.rescue_boot_count", 4310 .value = "1", 4311 }, 4312 { 4313 .key = "sys.resettype", 4314 .value = "normal:press1s", 4315 }, 4316 { 4317 .key = "sys.rog.density", 4318 .value = "480", 4319 }, 4320 { 4321 .key = "sys.rog.height", 4322 .value = "1920", 4323 }, 4324 { 4325 .key = "sys.rog.width", 4326 .value = "1080", 4327 }, 4328 { 4329 .key = "sys.show_google_nlp", 4330 .value = "true", 4331 }, 4332 { 4333 .key = "sys.super_power_save", 4334 .value = "false", 4335 }, 4336 { 4337 .key = "sys.sysctl.extra_free_kbytes", 4338 .value = "24300", 4339 }, 4340 { 4341 .key = "sys.sysctl.tcp_def_init_rwnd", 4342 .value = "60", 4343 }, 4344 { 4345 .key = "sys.usb.config", 4346 .value = "hisuite,mtp,mass_storage,adb", 4347 }, 4348 { 4349 .key = "sys.usb.configfs", 4350 .value = "1", 4351 }, 4352 { 4353 .key = "sys.usb.controller", 4354 .value = "ff100000.dwc3", 4355 }, 4356 { 4357 .key = "sys.usb.ffs.ready", 4358 .value = "1", 4359 }, 4360 { 4361 .key = "sys.usb.ffs_hdb.ready", 4362 .value = "0", 4363 }, 4364 { 4365 .key = "sys.usb.state", 4366 .value = "hisuite,mtp,mass_storage,adb", 4367 }, 4368 { 4369 .key = "sys.userdata_is_ready", 4370 .value = "1", 4371 }, 4372 { 4373 .key = "sys.wifitracing.started", 4374 .value = "1", 4375 }, 4376 { 4377 .key = "system_init.hwextdeviceservice", 4378 .value = "1", 4379 }, 4380 { 4381 .key = "trustedcore_sfs_property", 4382 .value = "1", 4383 }, 4384 { 4385 .key = "use_sensorhub_labc", 4386 .value = "false", 4387 }, 4388 { 4389 .key = "viatel.device.at", 4390 .value = "spi.10.ttySPI", 4391 }, 4392 { 4393 .key = "viatel.device.data", 4394 .value = "spi.0.ttySPI", 4395 }, 4396 { 4397 .key = "viatel.device.fls", 4398 .value = "spi.2.ttySPI", 4399 }, 4400 { 4401 .key = "viatel.device.gps", 4402 .value = "spi.5.ttySPI", 4403 }, 4404 { 4405 .key = "viatel.device.pcv", 4406 .value = "spi.4.ttySPI", 4407 }, 4408 { 4409 .key = "vold.crypto_unencrypt_updatedir", 4410 .value = "/data/update", 4411 }, 4412 { 4413 .key = "vold.cryptsd.keystate", 4414 .value = "unlock", 4415 }, 4416 { 4417 .key = "vold.has_adoptable", 4418 .value = "0", 4419 }, 4420 { 4421 .key = "vold.post_fs_data_done", 4422 .value = "1", 4423 }, 4424 { 4425 .key = "wifi.interface", 4426 .value = "wlan0", 4427 }, 4428 { NULL }, 4429 }; 4430 #endif /* __ANDROID__ */ 4431