1 struct cpuinfo_mock_file filesystem[] = { 2 #if CPUINFO_ARCH_ARM64 3 { 4 .path = "/proc/cpuinfo", 5 .size = 1616, 6 .content = 7 "processor\t: 0\n" 8 "BogoMIPS\t: 52.00\n" 9 "Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\n" 10 "CPU implementer\t: 0x41\n" 11 "CPU architecture: 8\n" 12 "CPU variant\t: 0x0\n" 13 "CPU part\t: 0xd05\n" 14 "CPU revision\t: 1\n" 15 "\n" 16 "processor\t: 1\n" 17 "BogoMIPS\t: 52.00\n" 18 "Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\n" 19 "CPU implementer\t: 0x41\n" 20 "CPU architecture: 8\n" 21 "CPU variant\t: 0x0\n" 22 "CPU part\t: 0xd05\n" 23 "CPU revision\t: 1\n" 24 "\n" 25 "processor\t: 2\n" 26 "BogoMIPS\t: 52.00\n" 27 "Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\n" 28 "CPU implementer\t: 0x41\n" 29 "CPU architecture: 8\n" 30 "CPU variant\t: 0x0\n" 31 "CPU part\t: 0xd05\n" 32 "CPU revision\t: 1\n" 33 "\n" 34 "processor\t: 3\n" 35 "BogoMIPS\t: 52.00\n" 36 "Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\n" 37 "CPU implementer\t: 0x41\n" 38 "CPU architecture: 8\n" 39 "CPU variant\t: 0x0\n" 40 "CPU part\t: 0xd05\n" 41 "CPU revision\t: 1\n" 42 "\n" 43 "processor\t: 4\n" 44 "BogoMIPS\t: 52.00\n" 45 "Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\n" 46 "CPU implementer\t: 0x53\n" 47 "CPU architecture: 8\n" 48 "CPU variant\t: 0x1\n" 49 "CPU part\t: 0x002\n" 50 "CPU revision\t: 0\n" 51 "\n" 52 "processor\t: 5\n" 53 "BogoMIPS\t: 52.00\n" 54 "Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\n" 55 "CPU implementer\t: 0x53\n" 56 "CPU architecture: 8\n" 57 "CPU variant\t: 0x1\n" 58 "CPU part\t: 0x002\n" 59 "CPU revision\t: 0\n" 60 "\n" 61 "processor\t: 6\n" 62 "BogoMIPS\t: 52.00\n" 63 "Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\n" 64 "CPU implementer\t: 0x53\n" 65 "CPU architecture: 8\n" 66 "CPU variant\t: 0x1\n" 67 "CPU part\t: 0x002\n" 68 "CPU revision\t: 0\n" 69 "\n" 70 "processor\t: 7\n" 71 "BogoMIPS\t: 52.00\n" 72 "Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\n" 73 "CPU implementer\t: 0x53\n" 74 "CPU architecture: 8\n" 75 "CPU variant\t: 0x1\n" 76 "CPU part\t: 0x002\n" 77 "CPU revision\t: 0\n" 78 "\n", 79 }, 80 #elif CPUINFO_ARCH_ARM 81 { 82 .path = "/proc/cpuinfo", 83 .size = 2240, 84 .content = 85 "processor\t: 0\n" 86 "model name\t: ARMv8 Processor rev 1 (v8l)\n" 87 "BogoMIPS\t: 52.00\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: 0xd05\n" 93 "CPU revision\t: 1\n" 94 "\n" 95 "processor\t: 1\n" 96 "model name\t: ARMv8 Processor rev 1 (v8l)\n" 97 "BogoMIPS\t: 52.00\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: 0xd05\n" 103 "CPU revision\t: 1\n" 104 "\n" 105 "processor\t: 2\n" 106 "model name\t: ARMv8 Processor rev 1 (v8l)\n" 107 "BogoMIPS\t: 52.00\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: 0xd05\n" 113 "CPU revision\t: 1\n" 114 "\n" 115 "processor\t: 3\n" 116 "model name\t: ARMv8 Processor rev 1 (v8l)\n" 117 "BogoMIPS\t: 52.00\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: 0xd05\n" 123 "CPU revision\t: 1\n" 124 "\n" 125 "processor\t: 4\n" 126 "model name\t: ARMv8 Processor rev 0 (v8l)\n" 127 "BogoMIPS\t: 52.00\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: 0x53\n" 130 "CPU architecture: 8\n" 131 "CPU variant\t: 0x1\n" 132 "CPU part\t: 0x002\n" 133 "CPU revision\t: 0\n" 134 "\n" 135 "processor\t: 5\n" 136 "model name\t: ARMv8 Processor rev 0 (v8l)\n" 137 "BogoMIPS\t: 52.00\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: 0x53\n" 140 "CPU architecture: 8\n" 141 "CPU variant\t: 0x1\n" 142 "CPU part\t: 0x002\n" 143 "CPU revision\t: 0\n" 144 "\n" 145 "processor\t: 6\n" 146 "model name\t: ARMv8 Processor rev 0 (v8l)\n" 147 "BogoMIPS\t: 52.00\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: 0x53\n" 150 "CPU architecture: 8\n" 151 "CPU variant\t: 0x1\n" 152 "CPU part\t: 0x002\n" 153 "CPU revision\t: 0\n" 154 "\n" 155 "processor\t: 7\n" 156 "model name\t: ARMv8 Processor rev 0 (v8l)\n" 157 "BogoMIPS\t: 52.00\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: 0x53\n" 160 "CPU architecture: 8\n" 161 "CPU variant\t: 0x1\n" 162 "CPU part\t: 0x002\n" 163 "CPU revision\t: 0\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 = 81, 180 .content = "cpu:type:aarch64:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000A\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 = 12, 205 .content = "exynos_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 = 12, 215 .content = "exynos_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 = "1794000\n", 226 }, 227 { 228 .path = "/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_min_freq", 229 .size = 7, 230 .content = "455000\n", 231 }, 232 { 233 .path = "/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_transition_latency", 234 .size = 7, 235 .content = "100000\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 = 76, 245 .content = "1794000 1690000 1456000 1248000 1053000 949000 832000 715000 598000 455000 \n", 246 }, 247 { 248 .path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors", 249 .size = 11, 250 .content = "schedutil \n", 251 }, 252 { 253 .path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq", 254 .size = 8, 255 .content = "1248000\n", 256 }, 257 { 258 .path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_driver", 259 .size = 15, 260 .content = "exynos_cpufreq\n", 261 }, 262 { 263 .path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor", 264 .size = 10, 265 .content = "schedutil\n", 266 }, 267 { 268 .path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq", 269 .size = 8, 270 .content = "1794000\n", 271 }, 272 { 273 .path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq", 274 .size = 7, 275 .content = "455000\n", 276 }, 277 { 278 .path = "/sys/devices/system/cpu/cpu0/cpufreq/stats/time_in_state", 279 .size = 131, 280 .content = 281 "1794000 28706\n" 282 "1690000 2524\n" 283 "1456000 6223\n" 284 "1248000 3526\n" 285 "1053000 41990\n" 286 "949000 3768\n" 287 "832000 8121\n" 288 "715000 12524\n" 289 "598000 23493\n" 290 "455000 607015\n", 291 }, 292 { 293 .path = "/sys/devices/system/cpu/cpu0/cpufreq/stats/total_trans", 294 .size = 6, 295 .content = "46410\n", 296 }, 297 { 298 .path = "/sys/devices/system/cpu/cpu0/regs/identification/midr_el1", 299 .size = 19, 300 .content = "0x00000000410fd051\n", 301 }, 302 { 303 .path = "/sys/devices/system/cpu/cpu0/regs/identification/revidr_el1", 304 .size = 19, 305 .content = "0x0000000000000000\n", 306 }, 307 { 308 .path = "/sys/devices/system/cpu/cpu0/topology/core_id", 309 .size = 2, 310 .content = "0\n", 311 }, 312 { 313 .path = "/sys/devices/system/cpu/cpu0/topology/core_siblings", 314 .size = 3, 315 .content = "0f\n", 316 }, 317 { 318 .path = "/sys/devices/system/cpu/cpu0/topology/core_siblings_list", 319 .size = 4, 320 .content = "0-3\n", 321 }, 322 { 323 .path = "/sys/devices/system/cpu/cpu0/topology/physical_package_id", 324 .size = 2, 325 .content = "0\n", 326 }, 327 { 328 .path = "/sys/devices/system/cpu/cpu0/topology/thread_siblings", 329 .size = 3, 330 .content = "01\n", 331 }, 332 { 333 .path = "/sys/devices/system/cpu/cpu0/topology/thread_siblings_list", 334 .size = 2, 335 .content = "0\n", 336 }, 337 { 338 .path = "/sys/devices/system/cpu/cpu1/cpuidle/driver/name", 339 .size = 12, 340 .content = "exynos_idle\n", 341 }, 342 { 343 .path = "/sys/devices/system/cpu/cpu1/cpufreq/affected_cpus", 344 .size = 8, 345 .content = "0 1 2 3\n", 346 }, 347 { 348 .path = "/sys/devices/system/cpu/cpu1/cpufreq/cpuinfo_max_freq", 349 .size = 8, 350 .content = "1794000\n", 351 }, 352 { 353 .path = "/sys/devices/system/cpu/cpu1/cpufreq/cpuinfo_min_freq", 354 .size = 7, 355 .content = "455000\n", 356 }, 357 { 358 .path = "/sys/devices/system/cpu/cpu1/cpufreq/cpuinfo_transition_latency", 359 .size = 7, 360 .content = "100000\n", 361 }, 362 { 363 .path = "/sys/devices/system/cpu/cpu1/cpufreq/related_cpus", 364 .size = 8, 365 .content = "0 1 2 3\n", 366 }, 367 { 368 .path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_available_frequencies", 369 .size = 76, 370 .content = "1794000 1690000 1456000 1248000 1053000 949000 832000 715000 598000 455000 \n", 371 }, 372 { 373 .path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_available_governors", 374 .size = 11, 375 .content = "schedutil \n", 376 }, 377 { 378 .path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_cur_freq", 379 .size = 8, 380 .content = "1248000\n", 381 }, 382 { 383 .path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_driver", 384 .size = 15, 385 .content = "exynos_cpufreq\n", 386 }, 387 { 388 .path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_governor", 389 .size = 10, 390 .content = "schedutil\n", 391 }, 392 { 393 .path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_max_freq", 394 .size = 8, 395 .content = "1794000\n", 396 }, 397 { 398 .path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_min_freq", 399 .size = 7, 400 .content = "455000\n", 401 }, 402 { 403 .path = "/sys/devices/system/cpu/cpu1/cpufreq/stats/time_in_state", 404 .size = 131, 405 .content = 406 "1794000 28706\n" 407 "1690000 2524\n" 408 "1456000 6255\n" 409 "1248000 3570\n" 410 "1053000 41990\n" 411 "949000 3768\n" 412 "832000 8121\n" 413 "715000 12525\n" 414 "598000 23510\n" 415 "455000 607190\n", 416 }, 417 { 418 .path = "/sys/devices/system/cpu/cpu1/cpufreq/stats/total_trans", 419 .size = 6, 420 .content = "46636\n", 421 }, 422 { 423 .path = "/sys/devices/system/cpu/cpu1/regs/identification/midr_el1", 424 .size = 19, 425 .content = "0x00000000410fd051\n", 426 }, 427 { 428 .path = "/sys/devices/system/cpu/cpu1/regs/identification/revidr_el1", 429 .size = 19, 430 .content = "0x0000000000000000\n", 431 }, 432 { 433 .path = "/sys/devices/system/cpu/cpu1/topology/core_id", 434 .size = 2, 435 .content = "1\n", 436 }, 437 { 438 .path = "/sys/devices/system/cpu/cpu1/topology/core_siblings", 439 .size = 3, 440 .content = "0f\n", 441 }, 442 { 443 .path = "/sys/devices/system/cpu/cpu1/topology/core_siblings_list", 444 .size = 4, 445 .content = "0-3\n", 446 }, 447 { 448 .path = "/sys/devices/system/cpu/cpu1/topology/physical_package_id", 449 .size = 2, 450 .content = "0\n", 451 }, 452 { 453 .path = "/sys/devices/system/cpu/cpu1/topology/thread_siblings", 454 .size = 3, 455 .content = "02\n", 456 }, 457 { 458 .path = "/sys/devices/system/cpu/cpu1/topology/thread_siblings_list", 459 .size = 2, 460 .content = "1\n", 461 }, 462 { 463 .path = "/sys/devices/system/cpu/cpu2/cpuidle/driver/name", 464 .size = 12, 465 .content = "exynos_idle\n", 466 }, 467 { 468 .path = "/sys/devices/system/cpu/cpu2/cpufreq/affected_cpus", 469 .size = 8, 470 .content = "0 1 2 3\n", 471 }, 472 { 473 .path = "/sys/devices/system/cpu/cpu2/cpufreq/cpuinfo_max_freq", 474 .size = 8, 475 .content = "1794000\n", 476 }, 477 { 478 .path = "/sys/devices/system/cpu/cpu2/cpufreq/cpuinfo_min_freq", 479 .size = 7, 480 .content = "455000\n", 481 }, 482 { 483 .path = "/sys/devices/system/cpu/cpu2/cpufreq/cpuinfo_transition_latency", 484 .size = 7, 485 .content = "100000\n", 486 }, 487 { 488 .path = "/sys/devices/system/cpu/cpu2/cpufreq/related_cpus", 489 .size = 8, 490 .content = "0 1 2 3\n", 491 }, 492 { 493 .path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_available_frequencies", 494 .size = 76, 495 .content = "1794000 1690000 1456000 1248000 1053000 949000 832000 715000 598000 455000 \n", 496 }, 497 { 498 .path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_available_governors", 499 .size = 11, 500 .content = "schedutil \n", 501 }, 502 { 503 .path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_cur_freq", 504 .size = 7, 505 .content = "598000\n", 506 }, 507 { 508 .path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_driver", 509 .size = 15, 510 .content = "exynos_cpufreq\n", 511 }, 512 { 513 .path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_governor", 514 .size = 10, 515 .content = "schedutil\n", 516 }, 517 { 518 .path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_max_freq", 519 .size = 8, 520 .content = "1794000\n", 521 }, 522 { 523 .path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_min_freq", 524 .size = 7, 525 .content = "455000\n", 526 }, 527 { 528 .path = "/sys/devices/system/cpu/cpu2/cpufreq/stats/time_in_state", 529 .size = 131, 530 .content = 531 "1794000 28706\n" 532 "1690000 2526\n" 533 "1456000 6285\n" 534 "1248000 3619\n" 535 "1053000 41997\n" 536 "949000 3770\n" 537 "832000 8122\n" 538 "715000 12529\n" 539 "598000 23533\n" 540 "455000 607355\n", 541 }, 542 { 543 .path = "/sys/devices/system/cpu/cpu2/cpufreq/stats/total_trans", 544 .size = 6, 545 .content = "46873\n", 546 }, 547 { 548 .path = "/sys/devices/system/cpu/cpu2/regs/identification/midr_el1", 549 .size = 19, 550 .content = "0x00000000410fd051\n", 551 }, 552 { 553 .path = "/sys/devices/system/cpu/cpu2/regs/identification/revidr_el1", 554 .size = 19, 555 .content = "0x0000000000000000\n", 556 }, 557 { 558 .path = "/sys/devices/system/cpu/cpu2/topology/core_id", 559 .size = 2, 560 .content = "2\n", 561 }, 562 { 563 .path = "/sys/devices/system/cpu/cpu2/topology/core_siblings", 564 .size = 3, 565 .content = "0f\n", 566 }, 567 { 568 .path = "/sys/devices/system/cpu/cpu2/topology/core_siblings_list", 569 .size = 4, 570 .content = "0-3\n", 571 }, 572 { 573 .path = "/sys/devices/system/cpu/cpu2/topology/physical_package_id", 574 .size = 2, 575 .content = "0\n", 576 }, 577 { 578 .path = "/sys/devices/system/cpu/cpu2/topology/thread_siblings", 579 .size = 3, 580 .content = "04\n", 581 }, 582 { 583 .path = "/sys/devices/system/cpu/cpu2/topology/thread_siblings_list", 584 .size = 2, 585 .content = "2\n", 586 }, 587 { 588 .path = "/sys/devices/system/cpu/cpu3/cpuidle/driver/name", 589 .size = 12, 590 .content = "exynos_idle\n", 591 }, 592 { 593 .path = "/sys/devices/system/cpu/cpu3/cpufreq/affected_cpus", 594 .size = 8, 595 .content = "0 1 2 3\n", 596 }, 597 { 598 .path = "/sys/devices/system/cpu/cpu3/cpufreq/cpuinfo_max_freq", 599 .size = 8, 600 .content = "1794000\n", 601 }, 602 { 603 .path = "/sys/devices/system/cpu/cpu3/cpufreq/cpuinfo_min_freq", 604 .size = 7, 605 .content = "455000\n", 606 }, 607 { 608 .path = "/sys/devices/system/cpu/cpu3/cpufreq/cpuinfo_transition_latency", 609 .size = 7, 610 .content = "100000\n", 611 }, 612 { 613 .path = "/sys/devices/system/cpu/cpu3/cpufreq/related_cpus", 614 .size = 8, 615 .content = "0 1 2 3\n", 616 }, 617 { 618 .path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_available_frequencies", 619 .size = 76, 620 .content = "1794000 1690000 1456000 1248000 1053000 949000 832000 715000 598000 455000 \n", 621 }, 622 { 623 .path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_available_governors", 624 .size = 11, 625 .content = "schedutil \n", 626 }, 627 { 628 .path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_cur_freq", 629 .size = 8, 630 .content = "1248000\n", 631 }, 632 { 633 .path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_driver", 634 .size = 15, 635 .content = "exynos_cpufreq\n", 636 }, 637 { 638 .path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_governor", 639 .size = 10, 640 .content = "schedutil\n", 641 }, 642 { 643 .path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_max_freq", 644 .size = 8, 645 .content = "1794000\n", 646 }, 647 { 648 .path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_min_freq", 649 .size = 7, 650 .content = "455000\n", 651 }, 652 { 653 .path = "/sys/devices/system/cpu/cpu3/cpufreq/stats/time_in_state", 654 .size = 131, 655 .content = 656 "1794000 28706\n" 657 "1690000 2529\n" 658 "1456000 6307\n" 659 "1248000 3668\n" 660 "1053000 41998\n" 661 "949000 3770\n" 662 "832000 8122\n" 663 "715000 12534\n" 664 "598000 23559\n" 665 "455000 607541\n", 666 }, 667 { 668 .path = "/sys/devices/system/cpu/cpu3/cpufreq/stats/total_trans", 669 .size = 6, 670 .content = "47107\n", 671 }, 672 { 673 .path = "/sys/devices/system/cpu/cpu3/regs/identification/midr_el1", 674 .size = 19, 675 .content = "0x00000000410fd051\n", 676 }, 677 { 678 .path = "/sys/devices/system/cpu/cpu3/regs/identification/revidr_el1", 679 .size = 19, 680 .content = "0x0000000000000000\n", 681 }, 682 { 683 .path = "/sys/devices/system/cpu/cpu3/topology/core_id", 684 .size = 2, 685 .content = "3\n", 686 }, 687 { 688 .path = "/sys/devices/system/cpu/cpu3/topology/core_siblings", 689 .size = 3, 690 .content = "0f\n", 691 }, 692 { 693 .path = "/sys/devices/system/cpu/cpu3/topology/core_siblings_list", 694 .size = 4, 695 .content = "0-3\n", 696 }, 697 { 698 .path = "/sys/devices/system/cpu/cpu3/topology/physical_package_id", 699 .size = 2, 700 .content = "0\n", 701 }, 702 { 703 .path = "/sys/devices/system/cpu/cpu3/topology/thread_siblings", 704 .size = 3, 705 .content = "08\n", 706 }, 707 { 708 .path = "/sys/devices/system/cpu/cpu3/topology/thread_siblings_list", 709 .size = 2, 710 .content = "3\n", 711 }, 712 { 713 .path = "/sys/devices/system/cpu/cpu4/cpuidle/driver/name", 714 .size = 12, 715 .content = "exynos_idle\n", 716 }, 717 { 718 .path = "/sys/devices/system/cpu/cpu4/cpufreq/affected_cpus", 719 .size = 8, 720 .content = "4 5 6 7\n", 721 }, 722 { 723 .path = "/sys/devices/system/cpu/cpu4/cpufreq/cpuinfo_max_freq", 724 .size = 8, 725 .content = "2704000\n", 726 }, 727 { 728 .path = "/sys/devices/system/cpu/cpu4/cpufreq/cpuinfo_min_freq", 729 .size = 7, 730 .content = "650000\n", 731 }, 732 { 733 .path = "/sys/devices/system/cpu/cpu4/cpufreq/cpuinfo_transition_latency", 734 .size = 7, 735 .content = "100000\n", 736 }, 737 { 738 .path = "/sys/devices/system/cpu/cpu4/cpufreq/related_cpus", 739 .size = 8, 740 .content = "4 5 6 7\n", 741 }, 742 { 743 .path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_available_frequencies", 744 .size = 141, 745 .content = "2704000 2652000 2496000 2314000 2106000 2002000 1924000 1794000 1690000 1586000 1469000 1261000 1170000 1066000 962000 858000 741000 650000 \n", 746 }, 747 { 748 .path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_available_governors", 749 .size = 11, 750 .content = "schedutil \n", 751 }, 752 { 753 .path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_cur_freq", 754 .size = 7, 755 .content = "650000\n", 756 }, 757 { 758 .path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_driver", 759 .size = 15, 760 .content = "exynos_cpufreq\n", 761 }, 762 { 763 .path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_governor", 764 .size = 10, 765 .content = "schedutil\n", 766 }, 767 { 768 .path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_max_freq", 769 .size = 8, 770 .content = "1794000\n", 771 }, 772 { 773 .path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_min_freq", 774 .size = 7, 775 .content = "650000\n", 776 }, 777 { 778 .path = "/sys/devices/system/cpu/cpu4/cpufreq/stats/time_in_state", 779 .size = 224, 780 .content = 781 "2704000 8469\n" 782 "2652000 44\n" 783 "2496000 4623\n" 784 "2314000 1315\n" 785 "2106000 620\n" 786 "2002000 16\n" 787 "1924000 13\n" 788 "1794000 10070\n" 789 "1690000 465\n" 790 "1586000 1211\n" 791 "1469000 2430\n" 792 "1261000 676\n" 793 "1170000 677\n" 794 "1066000 1472\n" 795 "962000 1353\n" 796 "858000 3174\n" 797 "741000 41680\n" 798 "650000 660716\n", 799 }, 800 { 801 .path = "/sys/devices/system/cpu/cpu4/cpufreq/stats/total_trans", 802 .size = 6, 803 .content = "11731\n", 804 }, 805 { 806 .path = "/sys/devices/system/cpu/cpu4/regs/identification/midr_el1", 807 .size = 19, 808 .content = "0x00000000531f0020\n", 809 }, 810 { 811 .path = "/sys/devices/system/cpu/cpu4/regs/identification/revidr_el1", 812 .size = 19, 813 .content = "0x0000000000000000\n", 814 }, 815 { 816 .path = "/sys/devices/system/cpu/cpu4/topology/core_id", 817 .size = 2, 818 .content = "0\n", 819 }, 820 { 821 .path = "/sys/devices/system/cpu/cpu4/topology/core_siblings", 822 .size = 3, 823 .content = "f0\n", 824 }, 825 { 826 .path = "/sys/devices/system/cpu/cpu4/topology/core_siblings_list", 827 .size = 4, 828 .content = "4-7\n", 829 }, 830 { 831 .path = "/sys/devices/system/cpu/cpu4/topology/physical_package_id", 832 .size = 2, 833 .content = "1\n", 834 }, 835 { 836 .path = "/sys/devices/system/cpu/cpu4/topology/thread_siblings", 837 .size = 3, 838 .content = "10\n", 839 }, 840 { 841 .path = "/sys/devices/system/cpu/cpu4/topology/thread_siblings_list", 842 .size = 2, 843 .content = "4\n", 844 }, 845 { 846 .path = "/sys/devices/system/cpu/cpu5/cpuidle/driver/name", 847 .size = 12, 848 .content = "exynos_idle\n", 849 }, 850 { 851 .path = "/sys/devices/system/cpu/cpu5/cpufreq/affected_cpus", 852 .size = 8, 853 .content = "4 5 6 7\n", 854 }, 855 { 856 .path = "/sys/devices/system/cpu/cpu5/cpufreq/cpuinfo_max_freq", 857 .size = 8, 858 .content = "2704000\n", 859 }, 860 { 861 .path = "/sys/devices/system/cpu/cpu5/cpufreq/cpuinfo_min_freq", 862 .size = 7, 863 .content = "650000\n", 864 }, 865 { 866 .path = "/sys/devices/system/cpu/cpu5/cpufreq/cpuinfo_transition_latency", 867 .size = 7, 868 .content = "100000\n", 869 }, 870 { 871 .path = "/sys/devices/system/cpu/cpu5/cpufreq/related_cpus", 872 .size = 8, 873 .content = "4 5 6 7\n", 874 }, 875 { 876 .path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_available_frequencies", 877 .size = 141, 878 .content = "2704000 2652000 2496000 2314000 2106000 2002000 1924000 1794000 1690000 1586000 1469000 1261000 1170000 1066000 962000 858000 741000 650000 \n", 879 }, 880 { 881 .path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_available_governors", 882 .size = 11, 883 .content = "schedutil \n", 884 }, 885 { 886 .path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_cur_freq", 887 .size = 7, 888 .content = "650000\n", 889 }, 890 { 891 .path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_driver", 892 .size = 15, 893 .content = "exynos_cpufreq\n", 894 }, 895 { 896 .path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_governor", 897 .size = 10, 898 .content = "schedutil\n", 899 }, 900 { 901 .path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_max_freq", 902 .size = 8, 903 .content = "1794000\n", 904 }, 905 { 906 .path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_min_freq", 907 .size = 7, 908 .content = "650000\n", 909 }, 910 { 911 .path = "/sys/devices/system/cpu/cpu5/cpufreq/stats/time_in_state", 912 .size = 224, 913 .content = 914 "2704000 8469\n" 915 "2652000 44\n" 916 "2496000 4623\n" 917 "2314000 1315\n" 918 "2106000 620\n" 919 "2002000 16\n" 920 "1924000 13\n" 921 "1794000 10070\n" 922 "1690000 465\n" 923 "1586000 1211\n" 924 "1469000 2430\n" 925 "1261000 676\n" 926 "1170000 677\n" 927 "1066000 1472\n" 928 "962000 1353\n" 929 "858000 3174\n" 930 "741000 41680\n" 931 "650000 660975\n", 932 }, 933 { 934 .path = "/sys/devices/system/cpu/cpu5/cpufreq/stats/total_trans", 935 .size = 6, 936 .content = "11731\n", 937 }, 938 { 939 .path = "/sys/devices/system/cpu/cpu5/regs/identification/midr_el1", 940 .size = 19, 941 .content = "0x00000000531f0020\n", 942 }, 943 { 944 .path = "/sys/devices/system/cpu/cpu5/regs/identification/revidr_el1", 945 .size = 19, 946 .content = "0x0000000000000000\n", 947 }, 948 { 949 .path = "/sys/devices/system/cpu/cpu5/topology/core_id", 950 .size = 2, 951 .content = "1\n", 952 }, 953 { 954 .path = "/sys/devices/system/cpu/cpu5/topology/core_siblings", 955 .size = 3, 956 .content = "f0\n", 957 }, 958 { 959 .path = "/sys/devices/system/cpu/cpu5/topology/core_siblings_list", 960 .size = 4, 961 .content = "4-7\n", 962 }, 963 { 964 .path = "/sys/devices/system/cpu/cpu5/topology/physical_package_id", 965 .size = 2, 966 .content = "1\n", 967 }, 968 { 969 .path = "/sys/devices/system/cpu/cpu5/topology/thread_siblings", 970 .size = 3, 971 .content = "20\n", 972 }, 973 { 974 .path = "/sys/devices/system/cpu/cpu5/topology/thread_siblings_list", 975 .size = 2, 976 .content = "5\n", 977 }, 978 { 979 .path = "/sys/devices/system/cpu/cpu6/cpuidle/driver/name", 980 .size = 12, 981 .content = "exynos_idle\n", 982 }, 983 { 984 .path = "/sys/devices/system/cpu/cpu6/cpufreq/affected_cpus", 985 .size = 8, 986 .content = "4 5 6 7\n", 987 }, 988 { 989 .path = "/sys/devices/system/cpu/cpu6/cpufreq/cpuinfo_max_freq", 990 .size = 8, 991 .content = "2704000\n", 992 }, 993 { 994 .path = "/sys/devices/system/cpu/cpu6/cpufreq/cpuinfo_min_freq", 995 .size = 7, 996 .content = "650000\n", 997 }, 998 { 999 .path = "/sys/devices/system/cpu/cpu6/cpufreq/cpuinfo_transition_latency", 1000 .size = 7, 1001 .content = "100000\n", 1002 }, 1003 { 1004 .path = "/sys/devices/system/cpu/cpu6/cpufreq/related_cpus", 1005 .size = 8, 1006 .content = "4 5 6 7\n", 1007 }, 1008 { 1009 .path = "/sys/devices/system/cpu/cpu6/cpufreq/scaling_available_frequencies", 1010 .size = 141, 1011 .content = "2704000 2652000 2496000 2314000 2106000 2002000 1924000 1794000 1690000 1586000 1469000 1261000 1170000 1066000 962000 858000 741000 650000 \n", 1012 }, 1013 { 1014 .path = "/sys/devices/system/cpu/cpu6/cpufreq/scaling_available_governors", 1015 .size = 11, 1016 .content = "schedutil \n", 1017 }, 1018 { 1019 .path = "/sys/devices/system/cpu/cpu6/cpufreq/scaling_cur_freq", 1020 .size = 7, 1021 .content = "650000\n", 1022 }, 1023 { 1024 .path = "/sys/devices/system/cpu/cpu6/cpufreq/scaling_driver", 1025 .size = 15, 1026 .content = "exynos_cpufreq\n", 1027 }, 1028 { 1029 .path = "/sys/devices/system/cpu/cpu6/cpufreq/scaling_governor", 1030 .size = 10, 1031 .content = "schedutil\n", 1032 }, 1033 { 1034 .path = "/sys/devices/system/cpu/cpu6/cpufreq/scaling_max_freq", 1035 .size = 8, 1036 .content = "1794000\n", 1037 }, 1038 { 1039 .path = "/sys/devices/system/cpu/cpu6/cpufreq/scaling_min_freq", 1040 .size = 7, 1041 .content = "650000\n", 1042 }, 1043 { 1044 .path = "/sys/devices/system/cpu/cpu6/cpufreq/stats/time_in_state", 1045 .size = 224, 1046 .content = 1047 "2704000 8469\n" 1048 "2652000 44\n" 1049 "2496000 4623\n" 1050 "2314000 1315\n" 1051 "2106000 620\n" 1052 "2002000 16\n" 1053 "1924000 13\n" 1054 "1794000 10070\n" 1055 "1690000 465\n" 1056 "1586000 1211\n" 1057 "1469000 2430\n" 1058 "1261000 676\n" 1059 "1170000 677\n" 1060 "1066000 1472\n" 1061 "962000 1353\n" 1062 "858000 3174\n" 1063 "741000 41680\n" 1064 "650000 661245\n", 1065 }, 1066 { 1067 .path = "/sys/devices/system/cpu/cpu6/cpufreq/stats/total_trans", 1068 .size = 6, 1069 .content = "11731\n", 1070 }, 1071 { 1072 .path = "/sys/devices/system/cpu/cpu6/regs/identification/midr_el1", 1073 .size = 19, 1074 .content = "0x00000000531f0020\n", 1075 }, 1076 { 1077 .path = "/sys/devices/system/cpu/cpu6/regs/identification/revidr_el1", 1078 .size = 19, 1079 .content = "0x0000000000000000\n", 1080 }, 1081 { 1082 .path = "/sys/devices/system/cpu/cpu6/topology/core_id", 1083 .size = 2, 1084 .content = "2\n", 1085 }, 1086 { 1087 .path = "/sys/devices/system/cpu/cpu6/topology/core_siblings", 1088 .size = 3, 1089 .content = "f0\n", 1090 }, 1091 { 1092 .path = "/sys/devices/system/cpu/cpu6/topology/core_siblings_list", 1093 .size = 4, 1094 .content = "4-7\n", 1095 }, 1096 { 1097 .path = "/sys/devices/system/cpu/cpu6/topology/physical_package_id", 1098 .size = 2, 1099 .content = "1\n", 1100 }, 1101 { 1102 .path = "/sys/devices/system/cpu/cpu6/topology/thread_siblings", 1103 .size = 3, 1104 .content = "40\n", 1105 }, 1106 { 1107 .path = "/sys/devices/system/cpu/cpu6/topology/thread_siblings_list", 1108 .size = 2, 1109 .content = "6\n", 1110 }, 1111 { 1112 .path = "/sys/devices/system/cpu/cpu7/cpuidle/driver/name", 1113 .size = 12, 1114 .content = "exynos_idle\n", 1115 }, 1116 { 1117 .path = "/sys/devices/system/cpu/cpu7/cpufreq/affected_cpus", 1118 .size = 8, 1119 .content = "4 5 6 7\n", 1120 }, 1121 { 1122 .path = "/sys/devices/system/cpu/cpu7/cpufreq/cpuinfo_max_freq", 1123 .size = 8, 1124 .content = "2704000\n", 1125 }, 1126 { 1127 .path = "/sys/devices/system/cpu/cpu7/cpufreq/cpuinfo_min_freq", 1128 .size = 7, 1129 .content = "650000\n", 1130 }, 1131 { 1132 .path = "/sys/devices/system/cpu/cpu7/cpufreq/cpuinfo_transition_latency", 1133 .size = 7, 1134 .content = "100000\n", 1135 }, 1136 { 1137 .path = "/sys/devices/system/cpu/cpu7/cpufreq/related_cpus", 1138 .size = 8, 1139 .content = "4 5 6 7\n", 1140 }, 1141 { 1142 .path = "/sys/devices/system/cpu/cpu7/cpufreq/scaling_available_frequencies", 1143 .size = 141, 1144 .content = "2704000 2652000 2496000 2314000 2106000 2002000 1924000 1794000 1690000 1586000 1469000 1261000 1170000 1066000 962000 858000 741000 650000 \n", 1145 }, 1146 { 1147 .path = "/sys/devices/system/cpu/cpu7/cpufreq/scaling_available_governors", 1148 .size = 11, 1149 .content = "schedutil \n", 1150 }, 1151 { 1152 .path = "/sys/devices/system/cpu/cpu7/cpufreq/scaling_cur_freq", 1153 .size = 7, 1154 .content = "650000\n", 1155 }, 1156 { 1157 .path = "/sys/devices/system/cpu/cpu7/cpufreq/scaling_driver", 1158 .size = 15, 1159 .content = "exynos_cpufreq\n", 1160 }, 1161 { 1162 .path = "/sys/devices/system/cpu/cpu7/cpufreq/scaling_governor", 1163 .size = 10, 1164 .content = "schedutil\n", 1165 }, 1166 { 1167 .path = "/sys/devices/system/cpu/cpu7/cpufreq/scaling_max_freq", 1168 .size = 8, 1169 .content = "1794000\n", 1170 }, 1171 { 1172 .path = "/sys/devices/system/cpu/cpu7/cpufreq/scaling_min_freq", 1173 .size = 7, 1174 .content = "650000\n", 1175 }, 1176 { 1177 .path = "/sys/devices/system/cpu/cpu7/cpufreq/stats/time_in_state", 1178 .size = 224, 1179 .content = 1180 "2704000 8469\n" 1181 "2652000 44\n" 1182 "2496000 4623\n" 1183 "2314000 1315\n" 1184 "2106000 620\n" 1185 "2002000 16\n" 1186 "1924000 13\n" 1187 "1794000 10070\n" 1188 "1690000 465\n" 1189 "1586000 1211\n" 1190 "1469000 2430\n" 1191 "1261000 676\n" 1192 "1170000 677\n" 1193 "1066000 1472\n" 1194 "962000 1353\n" 1195 "858000 3174\n" 1196 "741000 41681\n" 1197 "650000 661544\n", 1198 }, 1199 { 1200 .path = "/sys/devices/system/cpu/cpu7/cpufreq/stats/total_trans", 1201 .size = 6, 1202 .content = "11733\n", 1203 }, 1204 { 1205 .path = "/sys/devices/system/cpu/cpu7/regs/identification/midr_el1", 1206 .size = 19, 1207 .content = "0x00000000531f0020\n", 1208 }, 1209 { 1210 .path = "/sys/devices/system/cpu/cpu7/regs/identification/revidr_el1", 1211 .size = 19, 1212 .content = "0x0000000000000000\n", 1213 }, 1214 { 1215 .path = "/sys/devices/system/cpu/cpu7/topology/core_id", 1216 .size = 2, 1217 .content = "3\n", 1218 }, 1219 { 1220 .path = "/sys/devices/system/cpu/cpu7/topology/core_siblings", 1221 .size = 3, 1222 .content = "f0\n", 1223 }, 1224 { 1225 .path = "/sys/devices/system/cpu/cpu7/topology/core_siblings_list", 1226 .size = 4, 1227 .content = "4-7\n", 1228 }, 1229 { 1230 .path = "/sys/devices/system/cpu/cpu7/topology/physical_package_id", 1231 .size = 2, 1232 .content = "1\n", 1233 }, 1234 { 1235 .path = "/sys/devices/system/cpu/cpu7/topology/thread_siblings", 1236 .size = 3, 1237 .content = "80\n", 1238 }, 1239 { 1240 .path = "/sys/devices/system/cpu/cpu7/topology/thread_siblings_list", 1241 .size = 2, 1242 .content = "7\n", 1243 }, 1244 { NULL }, 1245 }; 1246 #ifdef __ANDROID__ 1247 struct cpuinfo_mock_property properties[] = { 1248 { 1249 .key = "af.fast_period_size", 1250 .value = "192", 1251 }, 1252 { 1253 .key = "af.fast_track_multiplier", 1254 .value = "1", 1255 }, 1256 { 1257 .key = "audioflinger.bootsnd", 1258 .value = "0", 1259 }, 1260 { 1261 .key = "camera.disable_treble", 1262 .value = "1", 1263 }, 1264 { 1265 .key = "config.disable_consumerir", 1266 .value = "true", 1267 }, 1268 { 1269 .key = "dalvik.vm.appimageformat", 1270 .value = "lz4", 1271 }, 1272 { 1273 .key = "dalvik.vm.dex2oat-Xms", 1274 .value = "64m", 1275 }, 1276 { 1277 .key = "dalvik.vm.dex2oat-Xmx", 1278 .value = "512m", 1279 }, 1280 { 1281 .key = "dalvik.vm.dexopt.secondary", 1282 .value = "true", 1283 }, 1284 { 1285 .key = "dalvik.vm.heapgrowthlimit", 1286 .value = "256m", 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.isa.arm.features", 1318 .value = "default", 1319 }, 1320 { 1321 .key = "dalvik.vm.isa.arm.variant", 1322 .value = "cortex-a15", 1323 }, 1324 { 1325 .key = "dalvik.vm.isa.arm64.features", 1326 .value = "default", 1327 }, 1328 { 1329 .key = "dalvik.vm.isa.arm64.variant", 1330 .value = "exynos-m3", 1331 }, 1332 { 1333 .key = "dalvik.vm.stack-trace-file", 1334 .value = "/data/anr/traces.txt", 1335 }, 1336 { 1337 .key = "dalvik.vm.usejit", 1338 .value = "true", 1339 }, 1340 { 1341 .key = "dalvik.vm.usejitprofiles", 1342 .value = "true", 1343 }, 1344 { 1345 .key = "ddk.set.afbc", 1346 .value = "1", 1347 }, 1348 { 1349 .key = "debug.atrace.tags.enableflags", 1350 .value = "0", 1351 }, 1352 { 1353 .key = "debug.force_rtl", 1354 .value = "0", 1355 }, 1356 { 1357 .key = "debug.gpuwatch.api", 1358 .value = "1", 1359 }, 1360 { 1361 .key = "debug.hwc.winupdate", 1362 .value = "1", 1363 }, 1364 { 1365 .key = "debug.sf.disable_backpressure", 1366 .value = "1", 1367 }, 1368 { 1369 .key = "debug.sf.layerdump", 1370 .value = "0", 1371 }, 1372 { 1373 .key = "debug.slsi_platform", 1374 .value = "1", 1375 }, 1376 { 1377 .key = "dev.bootcomplete", 1378 .value = "1", 1379 }, 1380 { 1381 .key = "dev.mtp.opensession", 1382 .value = "1", 1383 }, 1384 { 1385 .key = "dev.ssrm.app.install.standby", 1386 .value = "-1", 1387 }, 1388 { 1389 .key = "dev.ssrm.appsync3p", 1390 .value = "true", 1391 }, 1392 { 1393 .key = "dev.ssrm.gamelevel", 1394 .value = "-10,6,-2,3", 1395 }, 1396 { 1397 .key = "dev.ssrm.init", 1398 .value = "1", 1399 }, 1400 { 1401 .key = "dev.ssrm.mode", 1402 .value = "dm;", 1403 }, 1404 { 1405 .key = "dev.ssrm.pst", 1406 .value = "256", 1407 }, 1408 { 1409 .key = "dev.ssrm.smart_switch", 1410 .value = "true", 1411 }, 1412 { 1413 .key = "dev.usbsetting.embedded", 1414 .value = "on", 1415 }, 1416 { 1417 .key = "gsm.current.phone-type", 1418 .value = "1,1", 1419 }, 1420 { 1421 .key = "gsm.network.type", 1422 .value = "Unknown,Unknown", 1423 }, 1424 { 1425 .key = "gsm.operator.alpha", 1426 .value = ",", 1427 }, 1428 { 1429 .key = "gsm.operator.iso-country", 1430 .value = ",", 1431 }, 1432 { 1433 .key = "gsm.operator.ispsroaming", 1434 .value = "false,false", 1435 }, 1436 { 1437 .key = "gsm.operator.isroaming", 1438 .value = "false,false", 1439 }, 1440 { 1441 .key = "gsm.operator.numeric", 1442 .value = ",", 1443 }, 1444 { 1445 .key = "gsm.sim.operator.alpha", 1446 .value = ",", 1447 }, 1448 { 1449 .key = "gsm.sim.operator.iso-country", 1450 .value = ",", 1451 }, 1452 { 1453 .key = "gsm.sim.operator.numeric", 1454 .value = ",", 1455 }, 1456 { 1457 .key = "gsm.sim.state", 1458 .value = "ABSENT,ABSENT", 1459 }, 1460 { 1461 .key = "gsm.version.baseband", 1462 .value = "G960FXXU1ARCC", 1463 }, 1464 { 1465 .key = "gsm.version.baseband1", 1466 .value = "G960FXXU1ARCC", 1467 }, 1468 { 1469 .key = "gsm.version.ril-impl", 1470 .value = "Samsung RIL v4.0", 1471 }, 1472 { 1473 .key = "hwservicemanager.ready", 1474 .value = "true", 1475 }, 1476 { 1477 .key = "init.svc.BCS-daemon", 1478 .value = "running", 1479 }, 1480 { 1481 .key = "init.svc.DIAG-daemon", 1482 .value = "running", 1483 }, 1484 { 1485 .key = "init.svc.DR-daemon", 1486 .value = "running", 1487 }, 1488 { 1489 .key = "init.svc.ExynosHWCServiceTW", 1490 .value = "running", 1491 }, 1492 { 1493 .key = "init.svc.SMD-daemon", 1494 .value = "running", 1495 }, 1496 { 1497 .key = "init.svc.adbd", 1498 .value = "running", 1499 }, 1500 { 1501 .key = "init.svc.apaservice", 1502 .value = "running", 1503 }, 1504 { 1505 .key = "init.svc.argos-daemon", 1506 .value = "running", 1507 }, 1508 { 1509 .key = "init.svc.at_distributor", 1510 .value = "running", 1511 }, 1512 { 1513 .key = "init.svc.audio-hal-2-0", 1514 .value = "running", 1515 }, 1516 { 1517 .key = "init.svc.audioserver", 1518 .value = "running", 1519 }, 1520 { 1521 .key = "init.svc.auditd", 1522 .value = "running", 1523 }, 1524 { 1525 .key = "init.svc.bluetooth-1-0", 1526 .value = "running", 1527 }, 1528 { 1529 .key = "init.svc.bootanim", 1530 .value = "stopped", 1531 }, 1532 { 1533 .key = "init.svc.bootchecker", 1534 .value = "stopped", 1535 }, 1536 { 1537 .key = "init.svc.bsd", 1538 .value = "running", 1539 }, 1540 { 1541 .key = "init.svc.cameraserver", 1542 .value = "running", 1543 }, 1544 { 1545 .key = "init.svc.configstore-hal-1-0", 1546 .value = "running", 1547 }, 1548 { 1549 .key = "init.svc.cpboot-daemon", 1550 .value = "running", 1551 }, 1552 { 1553 .key = "init.svc.drm", 1554 .value = "running", 1555 }, 1556 { 1557 .key = "init.svc.drm-hal-1-0", 1558 .value = "running", 1559 }, 1560 { 1561 .key = "init.svc.drm-widevine-hal-1-0", 1562 .value = "running", 1563 }, 1564 { 1565 .key = "init.svc.epmlogd", 1566 .value = "stopped", 1567 }, 1568 { 1569 .key = "init.svc.esecomm", 1570 .value = "running", 1571 }, 1572 { 1573 .key = "init.svc.faced", 1574 .value = "running", 1575 }, 1576 { 1577 .key = "init.svc.flash_recovery", 1578 .value = "stopped", 1579 }, 1580 { 1581 .key = "init.svc.gatekeeper-1-0", 1582 .value = "running", 1583 }, 1584 { 1585 .key = "init.svc.gatekeeperd", 1586 .value = "running", 1587 }, 1588 { 1589 .key = "init.svc.gnss_service", 1590 .value = "running", 1591 }, 1592 { 1593 .key = "init.svc.gpsd", 1594 .value = "running", 1595 }, 1596 { 1597 .key = "init.svc.gralloc-2-0", 1598 .value = "running", 1599 }, 1600 { 1601 .key = "init.svc.health-hal-1-0", 1602 .value = "running", 1603 }, 1604 { 1605 .key = "init.svc.healthd", 1606 .value = "running", 1607 }, 1608 { 1609 .key = "init.svc.hidl_memory", 1610 .value = "running", 1611 }, 1612 { 1613 .key = "init.svc.hostapd", 1614 .value = "stopped", 1615 }, 1616 { 1617 .key = "init.svc.hwcomposer-2-1", 1618 .value = "running", 1619 }, 1620 { 1621 .key = "init.svc.hwservicemanager", 1622 .value = "running", 1623 }, 1624 { 1625 .key = "init.svc.icd", 1626 .value = "stopped", 1627 }, 1628 { 1629 .key = "init.svc.imsd", 1630 .value = "running", 1631 }, 1632 { 1633 .key = "init.svc.installd", 1634 .value = "running", 1635 }, 1636 { 1637 .key = "init.svc.iod", 1638 .value = "running", 1639 }, 1640 { 1641 .key = "init.svc.irisd", 1642 .value = "running", 1643 }, 1644 { 1645 .key = "init.svc.jackservice", 1646 .value = "running", 1647 }, 1648 { 1649 .key = "init.svc.keymaster-3-0", 1650 .value = "running", 1651 }, 1652 { 1653 .key = "init.svc.keystore", 1654 .value = "running", 1655 }, 1656 { 1657 .key = "init.svc.lhd", 1658 .value = "running", 1659 }, 1660 { 1661 .key = "init.svc.light-hal-2-0", 1662 .value = "running", 1663 }, 1664 { 1665 .key = "init.svc.lmkd", 1666 .value = "running", 1667 }, 1668 { 1669 .key = "init.svc.logd", 1670 .value = "running", 1671 }, 1672 { 1673 .key = "init.svc.logd-reinit", 1674 .value = "stopped", 1675 }, 1676 { 1677 .key = "init.svc.macloader", 1678 .value = "stopped", 1679 }, 1680 { 1681 .key = "init.svc.media", 1682 .value = "running", 1683 }, 1684 { 1685 .key = "init.svc.mediacodec", 1686 .value = "running", 1687 }, 1688 { 1689 .key = "init.svc.mediadrm", 1690 .value = "running", 1691 }, 1692 { 1693 .key = "init.svc.mediaextractor", 1694 .value = "running", 1695 }, 1696 { 1697 .key = "init.svc.mediametrics", 1698 .value = "running", 1699 }, 1700 { 1701 .key = "init.svc.memtrack-hal-1-0", 1702 .value = "running", 1703 }, 1704 { 1705 .key = "init.svc.mobicore", 1706 .value = "running", 1707 }, 1708 { 1709 .key = "init.svc.netd", 1710 .value = "running", 1711 }, 1712 { 1713 .key = "init.svc.power-hal-1-0", 1714 .value = "running", 1715 }, 1716 { 1717 .key = "init.svc.powersnd", 1718 .value = "stopped", 1719 }, 1720 { 1721 .key = "init.svc.prepare_param", 1722 .value = "stopped", 1723 }, 1724 { 1725 .key = "init.svc.proca", 1726 .value = "running", 1727 }, 1728 { 1729 .key = "init.svc.remotedisplay", 1730 .value = "running", 1731 }, 1732 { 1733 .key = "init.svc.resetreason", 1734 .value = "stopped", 1735 }, 1736 { 1737 .key = "init.svc.ril-daemon", 1738 .value = "running", 1739 }, 1740 { 1741 .key = "init.svc.ril-daemon1", 1742 .value = "running", 1743 }, 1744 { 1745 .key = "init.svc.scs", 1746 .value = "stopped", 1747 }, 1748 { 1749 .key = "init.svc.sdp_cryptod", 1750 .value = "running", 1751 }, 1752 { 1753 .key = "init.svc.sec-camera-provider-2-4", 1754 .value = "running", 1755 }, 1756 { 1757 .key = "init.svc.sec-miscpower-1-0", 1758 .value = "running", 1759 }, 1760 { 1761 .key = "init.svc.sec-sh", 1762 .value = "stopped", 1763 }, 1764 { 1765 .key = "init.svc.sec-vibrator-1-0", 1766 .value = "running", 1767 }, 1768 { 1769 .key = "init.svc.sec_fps_hal", 1770 .value = "running", 1771 }, 1772 { 1773 .key = "init.svc.sec_gnss_service", 1774 .value = "running", 1775 }, 1776 { 1777 .key = "init.svc.sec_nfc_service", 1778 .value = "running", 1779 }, 1780 { 1781 .key = "init.svc.secure_storage", 1782 .value = "running", 1783 }, 1784 { 1785 .key = "init.svc.sem_daemon", 1786 .value = "stopped", 1787 }, 1788 { 1789 .key = "init.svc.sensors-hal-1-0", 1790 .value = "running", 1791 }, 1792 { 1793 .key = "init.svc.servicemanager", 1794 .value = "running", 1795 }, 1796 { 1797 .key = "init.svc.storaged", 1798 .value = "running", 1799 }, 1800 { 1801 .key = "init.svc.surfaceflinger", 1802 .value = "running", 1803 }, 1804 { 1805 .key = "init.svc.swapon", 1806 .value = "stopped", 1807 }, 1808 { 1809 .key = "init.svc.thermal-hal-1-0", 1810 .value = "running", 1811 }, 1812 { 1813 .key = "init.svc.tombstoned", 1814 .value = "running", 1815 }, 1816 { 1817 .key = "init.svc.ueventd", 1818 .value = "running", 1819 }, 1820 { 1821 .key = "init.svc.vaultkeeperd", 1822 .value = "running", 1823 }, 1824 { 1825 .key = "init.svc.vndservicemanager", 1826 .value = "running", 1827 }, 1828 { 1829 .key = "init.svc.vold", 1830 .value = "running", 1831 }, 1832 { 1833 .key = "init.svc.vr-1-0", 1834 .value = "running", 1835 }, 1836 { 1837 .key = "init.svc.watchdogd", 1838 .value = "running", 1839 }, 1840 { 1841 .key = "init.svc.webview_zygote32", 1842 .value = "running", 1843 }, 1844 { 1845 .key = "init.svc.wifi_hal_legacy", 1846 .value = "running", 1847 }, 1848 { 1849 .key = "init.svc.wificond", 1850 .value = "running", 1851 }, 1852 { 1853 .key = "init.svc.wlandutservice", 1854 .value = "running", 1855 }, 1856 { 1857 .key = "init.svc.wpa_supplicant", 1858 .value = "running", 1859 }, 1860 { 1861 .key = "init.svc.wsmd", 1862 .value = "running", 1863 }, 1864 { 1865 .key = "init.svc.zygote", 1866 .value = "running", 1867 }, 1868 { 1869 .key = "init.svc.zygote_secondary", 1870 .value = "running", 1871 }, 1872 { 1873 .key = "keyguard.no_require_sim", 1874 .value = "true", 1875 }, 1876 { 1877 .key = "net.bt.name", 1878 .value = "Android", 1879 }, 1880 { 1881 .key = "net.iptype", 1882 .value = "504:v4v6v6", 1883 }, 1884 { 1885 .key = "net.knoxscep.version", 1886 .value = "2.2.0", 1887 }, 1888 { 1889 .key = "net.knoxvpn.version", 1890 .value = "2.2.0", 1891 }, 1892 { 1893 .key = "net.qtaguid_enabled", 1894 .value = "1", 1895 }, 1896 { 1897 .key = "net.smart_switch.disabled", 1898 .value = "1", 1899 }, 1900 { 1901 .key = "net.tcp.default_init_rwnd", 1902 .value = "60", 1903 }, 1904 { 1905 .key = "nfc.boot.reason", 1906 .value = "1", 1907 }, 1908 { 1909 .key = "nfc.cover.state", 1910 .value = "0", 1911 }, 1912 { 1913 .key = "nfc.fw.dfl_areacode", 1914 .value = "DEF", 1915 }, 1916 { 1917 .key = "nfc.fw.downloadmode_force", 1918 .value = "0", 1919 }, 1920 { 1921 .key = "nfc.fw.rfreg_display_ver", 1922 .value = "2", 1923 }, 1924 { 1925 .key = "nfc.fw.rfreg_ver", 1926 .value = "17/12/21/17.5.59", 1927 }, 1928 { 1929 .key = "nfc.fw.ver", 1930 .value = "S.LSI 4.5.7", 1931 }, 1932 { 1933 .key = "nfc.product.support.ese", 1934 .value = "1", 1935 }, 1936 { 1937 .key = "nfc.product.support.uicc", 1938 .value = "1", 1939 }, 1940 { 1941 .key = "persist.audio.a2dp_avc", 1942 .value = "1", 1943 }, 1944 { 1945 .key = "persist.audio.allsoundmute", 1946 .value = "0", 1947 }, 1948 { 1949 .key = "persist.audio.corefx", 1950 .value = "1", 1951 }, 1952 { 1953 .key = "persist.audio.effectcpufreq", 1954 .value = "350000", 1955 }, 1956 { 1957 .key = "persist.audio.finemediavolume", 1958 .value = "1", 1959 }, 1960 { 1961 .key = "persist.audio.globaleffect", 1962 .value = "1", 1963 }, 1964 { 1965 .key = "persist.audio.headsetsysvolume", 1966 .value = "9", 1967 }, 1968 { 1969 .key = "persist.audio.hphonesysvolume", 1970 .value = "9", 1971 }, 1972 { 1973 .key = "persist.audio.k2hd", 1974 .value = "1", 1975 }, 1976 { 1977 .key = "persist.audio.mpseek", 1978 .value = "0", 1979 }, 1980 { 1981 .key = "persist.audio.mysound", 1982 .value = "1", 1983 }, 1984 { 1985 .key = "persist.audio.nxp_lvvil", 1986 .value = "0", 1987 }, 1988 { 1989 .key = "persist.audio.pcmdump", 1990 .value = "0", 1991 }, 1992 { 1993 .key = "persist.audio.ringermode", 1994 .value = "1", 1995 }, 1996 { 1997 .key = "persist.audio.sales_code", 1998 .value = "MM1", 1999 }, 2000 { 2001 .key = "persist.audio.soundalivefxsec", 2002 .value = "1", 2003 }, 2004 { 2005 .key = "persist.audio.stereospeaker", 2006 .value = "1", 2007 }, 2008 { 2009 .key = "persist.audio.sysvolume", 2010 .value = "9", 2011 }, 2012 { 2013 .key = "persist.audio.uhqa", 2014 .value = "1", 2015 }, 2016 { 2017 .key = "persist.audio.voipcpufreq", 2018 .value = "0", 2019 }, 2020 { 2021 .key = "persist.demo.hdmirotationlock", 2022 .value = "false", 2023 }, 2024 { 2025 .key = "persist.nfc.log.index", 2026 .value = "5", 2027 }, 2028 { 2029 .key = "persist.radio.embms.support", 2030 .value = "false", 2031 }, 2032 { 2033 .key = "persist.radio.latest-modeltype", 2034 .value = "2,2", 2035 }, 2036 { 2037 .key = "persist.radio.multisim.config", 2038 .value = "dsds", 2039 }, 2040 { 2041 .key = "persist.radio.sib16_support", 2042 .value = "1", 2043 }, 2044 { 2045 .key = "persist.radio.ss.voiceclass_1", 2046 .value = "false", 2047 }, 2048 { 2049 .key = "persist.ril.ims.eutranParam", 2050 .value = "3", 2051 }, 2052 { 2053 .key = "persist.ril.ims.org.eutranParam", 2054 .value = "3", 2055 }, 2056 { 2057 .key = "persist.ril.ims.org.utranParam", 2058 .value = "0", 2059 }, 2060 { 2061 .key = "persist.ril.ims.utranParam", 2062 .value = "0", 2063 }, 2064 { 2065 .key = "persist.ril.modem.board", 2066 .value = "SHANNON360", 2067 }, 2068 { 2069 .key = "persist.ril.modem.board2", 2070 .value = "SHANNON360", 2071 }, 2072 { 2073 .key = "persist.sys.ccm.date", 2074 .value = "Thu Mar 22 20:54:22 KST 2018", 2075 }, 2076 { 2077 .key = "persist.sys.clssprld1", 2078 .value = "920", 2079 }, 2080 { 2081 .key = "persist.sys.clssprld2", 2082 .value = "308", 2083 }, 2084 { 2085 .key = "persist.sys.cpboot", 2086 .value = "unknown", 2087 }, 2088 { 2089 .key = "persist.sys.csc_status", 2090 .value = "normal", 2091 }, 2092 { 2093 .key = "persist.sys.dalvik.vm.lib.2", 2094 .value = "libart.so", 2095 }, 2096 { 2097 .key = "persist.sys.display_density", 2098 .value = "480", 2099 }, 2100 { 2101 .key = "persist.sys.dualapp.prop", 2102 .value = "1", 2103 }, 2104 { 2105 .key = "persist.sys.enablehomekey", 2106 .value = "false", 2107 }, 2108 { 2109 .key = "persist.sys.gps.lpp", 2110 .value = "", 2111 }, 2112 { 2113 .key = "persist.sys.ims.supportmmtel1", 2114 .value = "0", 2115 }, 2116 { 2117 .key = "persist.sys.ims.supportmmtel2", 2118 .value = "0", 2119 }, 2120 { 2121 .key = "persist.sys.knox.device_owner", 2122 .value = "false", 2123 }, 2124 { 2125 .key = "persist.sys.knox.userinfo", 2126 .value = "", 2127 }, 2128 { 2129 .key = "persist.sys.locale", 2130 .value = "en-GB", 2131 }, 2132 { 2133 .key = "persist.sys.localedefault", 2134 .value = "en-GB", 2135 }, 2136 { 2137 .key = "persist.sys.members.cp_support", 2138 .value = "on", 2139 }, 2140 { 2141 .key = "persist.sys.omc_etcpath", 2142 .value = "/odm/omc/single/MM1/etc", 2143 }, 2144 { 2145 .key = "persist.sys.omc_path", 2146 .value = "/odm/omc/single/MM1/conf", 2147 }, 2148 { 2149 .key = "persist.sys.omc_respath", 2150 .value = "/omr/res", 2151 }, 2152 { 2153 .key = "persist.sys.omc_support", 2154 .value = "true", 2155 }, 2156 { 2157 .key = "persist.sys.omcnw_path", 2158 .value = "/odm/omc/single/MM1/conf", 2159 }, 2160 { 2161 .key = "persist.sys.omcnw_path2", 2162 .value = "/odm/omc/single/MM1/conf", 2163 }, 2164 { 2165 .key = "persist.sys.ppr", 2166 .value = "true", 2167 }, 2168 { 2169 .key = "persist.sys.preloads.file_cache_expired", 2170 .value = "1", 2171 }, 2172 { 2173 .key = "persist.sys.prev_omcnwcode", 2174 .value = "MM1", 2175 }, 2176 { 2177 .key = "persist.sys.prev_omcnwcode2", 2178 .value = "MM1", 2179 }, 2180 { 2181 .key = "persist.sys.prev_salescode", 2182 .value = "MM1", 2183 }, 2184 { 2185 .key = "persist.sys.profiler_ms", 2186 .value = "0", 2187 }, 2188 { 2189 .key = "persist.sys.sb.setting.enabled", 2190 .value = "false", 2191 }, 2192 { 2193 .key = "persist.sys.setupwizard", 2194 .value = "FINISH", 2195 }, 2196 { 2197 .key = "persist.sys.silent", 2198 .value = "1", 2199 }, 2200 { 2201 .key = "persist.sys.storage_preload", 2202 .value = "2", 2203 }, 2204 { 2205 .key = "persist.sys.tcpOptimizer.on", 2206 .value = "1", 2207 }, 2208 { 2209 .key = "persist.sys.timezone", 2210 .value = "Asia/Singapore", 2211 }, 2212 { 2213 .key = "persist.sys.usb.config", 2214 .value = "mtp,adb", 2215 }, 2216 { 2217 .key = "persist.sys.usb.dualrole", 2218 .value = "true", 2219 }, 2220 { 2221 .key = "persist.sys.vold.firstboot", 2222 .value = "1", 2223 }, 2224 { 2225 .key = "persist.sys.vzw_wifi_running", 2226 .value = "false", 2227 }, 2228 { 2229 .key = "persist.sys.webview.vmsize", 2230 .value = "114925168", 2231 }, 2232 { 2233 .key = "pm.dexopt.ab-ota", 2234 .value = "speed-profile", 2235 }, 2236 { 2237 .key = "pm.dexopt.bg-dexopt", 2238 .value = "speed-profile", 2239 }, 2240 { 2241 .key = "pm.dexopt.boot", 2242 .value = "verify", 2243 }, 2244 { 2245 .key = "pm.dexopt.first-boot", 2246 .value = "quicken", 2247 }, 2248 { 2249 .key = "pm.dexopt.install", 2250 .value = "quicken", 2251 }, 2252 { 2253 .key = "ril.CompleteMsg", 2254 .value = "OK", 2255 }, 2256 { 2257 .key = "ril.ICC_TYPE", 2258 .value = "0,0", 2259 }, 2260 { 2261 .key = "ril.ICC_TYPE0", 2262 .value = "0", 2263 }, 2264 { 2265 .key = "ril.ICC_TYPE1", 2266 .value = "0", 2267 }, 2268 { 2269 .key = "ril.NwNmId", 2270 .value = "", 2271 }, 2272 { 2273 .key = "ril.RildInit", 2274 .value = "1,1", 2275 }, 2276 { 2277 .key = "ril.airplane.mode", 2278 .value = "1", 2279 }, 2280 { 2281 .key = "ril.approved_codever", 2282 .value = "none", 2283 }, 2284 { 2285 .key = "ril.approved_cscver", 2286 .value = "none", 2287 }, 2288 { 2289 .key = "ril.approved_modemver", 2290 .value = "none", 2291 }, 2292 { 2293 .key = "ril.atd_status", 2294 .value = "1_1_0", 2295 }, 2296 { 2297 .key = "ril.backoffstate", 2298 .value = "1024", 2299 }, 2300 { 2301 .key = "ril.callcount", 2302 .value = "0", 2303 }, 2304 { 2305 .key = "ril.cbd.boot_done", 2306 .value = "1", 2307 }, 2308 { 2309 .key = "ril.cbd.dt_revision", 2310 .value = "026", 2311 }, 2312 { 2313 .key = "ril.cbd.first_xmit_done", 2314 .value = "1", 2315 }, 2316 { 2317 .key = "ril.cbd.rfs_check_done", 2318 .value = "1", 2319 }, 2320 { 2321 .key = "ril.cdma.esn", 2322 .value = "", 2323 }, 2324 { 2325 .key = "ril.cs_svc", 2326 .value = "1", 2327 }, 2328 { 2329 .key = "ril.data.intfprefix", 2330 .value = "rmnet", 2331 }, 2332 { 2333 .key = "ril.debug.modemfactory", 2334 .value = "CSC Feature State: IMS ON, EPDG ON", 2335 }, 2336 { 2337 .key = "ril.debug.ntc", 2338 .value = "M:EUR, S:EUR, T:GSM, C:EUR", 2339 }, 2340 { 2341 .key = "ril.ecclist00", 2342 .value = "112,911,999,000,08,110,118,119", 2343 }, 2344 { 2345 .key = "ril.ecclist10", 2346 .value = "112,911,999,000,08,110,118,119", 2347 }, 2348 { 2349 .key = "ril.hasisim", 2350 .value = "0,0", 2351 }, 2352 { 2353 .key = "ril.hw_ver", 2354 .value = "MP 0.900", 2355 }, 2356 { 2357 .key = "ril.hw_ver2", 2358 .value = "MP 0.900", 2359 }, 2360 { 2361 .key = "ril.ims.ecsupport", 2362 .value = "2,2", 2363 }, 2364 { 2365 .key = "ril.ims.ltevoicesupport", 2366 .value = "2,2", 2367 }, 2368 { 2369 .key = "ril.initPB", 2370 .value = "0", 2371 }, 2372 { 2373 .key = "ril.initPB2", 2374 .value = "0", 2375 }, 2376 { 2377 .key = "ril.lte_ps_only", 2378 .value = "0,0", 2379 }, 2380 { 2381 .key = "ril.model_id", 2382 .value = "QB9270665", 2383 }, 2384 { 2385 .key = "ril.model_id2", 2386 .value = "QB9270665", 2387 }, 2388 { 2389 .key = "ril.modem.board", 2390 .value = "SHANNON360", 2391 }, 2392 { 2393 .key = "ril.modem.board2", 2394 .value = "SHANNON360", 2395 }, 2396 { 2397 .key = "ril.official_cscver", 2398 .value = "G960FOXM1ARCA", 2399 }, 2400 { 2401 .key = "ril.product_code", 2402 .value = "SM-G960FZKDMM1", 2403 }, 2404 { 2405 .key = "ril.product_code2", 2406 .value = "SM-G960FZKDMM1", 2407 }, 2408 { 2409 .key = "ril.radiostate", 2410 .value = "0", 2411 }, 2412 { 2413 .key = "ril.region_props", 2414 .value = "MM1.SINGAPORE.SG.MM1", 2415 }, 2416 { 2417 .key = "ril.rfcal_date", 2418 .value = "20180223", 2419 }, 2420 { 2421 .key = "ril.rfcal_date2", 2422 .value = "20180223", 2423 }, 2424 { 2425 .key = "ril.serialnumber", 2426 .value = "R58K235S8VT", 2427 }, 2428 { 2429 .key = "ril.servicestate", 2430 .value = "3,3", 2431 }, 2432 { 2433 .key = "ril.simoperator", 2434 .value = ",", 2435 }, 2436 { 2437 .key = "ril.ss.routing", 2438 .value = "0,0", 2439 }, 2440 { 2441 .key = "ril.subinfo", 2442 .value = "0:-2,1:-3", 2443 }, 2444 { 2445 .key = "ril.sw_ver", 2446 .value = "G960FXXU1ARCC", 2447 }, 2448 { 2449 .key = "ril.sw_ver2", 2450 .value = "G960FXXU1ARCC", 2451 }, 2452 { 2453 .key = "ril.twwan911Timer", 2454 .value = "0", 2455 }, 2456 { 2457 .key = "rild.libargs", 2458 .value = "-d /dev/umts_ipc0", 2459 }, 2460 { 2461 .key = "rild.libpath", 2462 .value = "/system/lib64/libsec-ril.so", 2463 }, 2464 { 2465 .key = "ro.adb.qemud", 2466 .value = "1", 2467 }, 2468 { 2469 .key = "ro.adb.secure", 2470 .value = "1", 2471 }, 2472 { 2473 .key = "ro.allow.mock.location", 2474 .value = "0", 2475 }, 2476 { 2477 .key = "ro.arch", 2478 .value = "exynos9810", 2479 }, 2480 { 2481 .key = "ro.astcenc.hwencoder", 2482 .value = "1", 2483 }, 2484 { 2485 .key = "ro.baseband", 2486 .value = "unknown", 2487 }, 2488 { 2489 .key = "ro.board.platform", 2490 .value = "exynos5", 2491 }, 2492 { 2493 .key = "ro.boot.ap_serial", 2494 .value = "0x030D8C948B32", 2495 }, 2496 { 2497 .key = "ro.boot.bootloader", 2498 .value = "G960FXXU1ARCC", 2499 }, 2500 { 2501 .key = "ro.boot.carrierid", 2502 .value = "XSP", 2503 }, 2504 { 2505 .key = "ro.boot.carrierid_offset", 2506 .value = "7340608", 2507 }, 2508 { 2509 .key = "ro.boot.debug_level", 2510 .value = "0x4f4c", 2511 }, 2512 { 2513 .key = "ro.boot.dram_info", 2514 .value = "01,06,01,4G", 2515 }, 2516 { 2517 .key = "ro.boot.em.did", 2518 .value = "20030d8c948b3211", 2519 }, 2520 { 2521 .key = "ro.boot.em.model", 2522 .value = "SM-G960F", 2523 }, 2524 { 2525 .key = "ro.boot.em.status", 2526 .value = "0x0", 2527 }, 2528 { 2529 .key = "ro.boot.emmc_checksum", 2530 .value = "3", 2531 }, 2532 { 2533 .key = "ro.boot.flash.locked", 2534 .value = "1", 2535 }, 2536 { 2537 .key = "ro.boot.fmp_config", 2538 .value = "1", 2539 }, 2540 { 2541 .key = "ro.boot.hardware", 2542 .value = "samsungexynos9810", 2543 }, 2544 { 2545 .key = "ro.boot.hmac_mismatch", 2546 .value = "0", 2547 }, 2548 { 2549 .key = "ro.boot.hw_rev", 2550 .value = "26", 2551 }, 2552 { 2553 .key = "ro.boot.odin_download", 2554 .value = "1", 2555 }, 2556 { 2557 .key = "ro.boot.prototype.param.offset", 2558 .value = "7351040", 2559 }, 2560 { 2561 .key = "ro.boot.recovery_offset", 2562 .value = "7355136", 2563 }, 2564 { 2565 .key = "ro.boot.sales.param.offset", 2566 .value = "7340572", 2567 }, 2568 { 2569 .key = "ro.boot.sec_atd.tty", 2570 .value = "/dev/ttySAC0", 2571 }, 2572 { 2573 .key = "ro.boot.security_mode", 2574 .value = "1526595585", 2575 }, 2576 { 2577 .key = "ro.boot.selinux", 2578 .value = "enforcing", 2579 }, 2580 { 2581 .key = "ro.boot.serialno", 2582 .value = "1cb2240629047ece", 2583 }, 2584 { 2585 .key = "ro.boot.smsn_offset", 2586 .value = "7351040", 2587 }, 2588 { 2589 .key = "ro.boot.ucs_mode", 2590 .value = "0", 2591 }, 2592 { 2593 .key = "ro.boot.verifiedbootstate", 2594 .value = "green", 2595 }, 2596 { 2597 .key = "ro.boot.warranty_bit", 2598 .value = "0", 2599 }, 2600 { 2601 .key = "ro.boot_recovery", 2602 .value = "unknown", 2603 }, 2604 { 2605 .key = "ro.bootimage.build.date", 2606 .value = "Thu Mar 22 20:54:22 KST 2018", 2607 }, 2608 { 2609 .key = "ro.bootimage.build.date.utc", 2610 .value = "1521719662", 2611 }, 2612 { 2613 .key = "ro.bootimage.build.fingerprint", 2614 .value = "samsung/starltexx/starlte:8.0.0/R16NW/G960FXXU1ARCC:user/release-keys", 2615 }, 2616 { 2617 .key = "ro.bootloader", 2618 .value = "G960FXXU1ARCC", 2619 }, 2620 { 2621 .key = "ro.bootmode", 2622 .value = "unknown", 2623 }, 2624 { 2625 .key = "ro.build.PDA", 2626 .value = "G960FXXU1ARCC", 2627 }, 2628 { 2629 .key = "ro.build.changelist", 2630 .value = "13138374", 2631 }, 2632 { 2633 .key = "ro.build.characteristics", 2634 .value = "phone,emulator", 2635 }, 2636 { 2637 .key = "ro.build.date", 2638 .value = "Thu Mar 22 20:54:22 KST 2018", 2639 }, 2640 { 2641 .key = "ro.build.date.utc", 2642 .value = "1521719662", 2643 }, 2644 { 2645 .key = "ro.build.description", 2646 .value = "starltexx-user 8.0.0 R16NW G960FXXU1ARCC release-keys", 2647 }, 2648 { 2649 .key = "ro.build.display.id", 2650 .value = "R16NW.G960FXXU1ARCC", 2651 }, 2652 { 2653 .key = "ro.build.fingerprint", 2654 .value = "samsung/starltexx/starlte:8.0.0/R16NW/G960FXXU1ARCC:user/release-keys", 2655 }, 2656 { 2657 .key = "ro.build.flavor", 2658 .value = "starltexx-user", 2659 }, 2660 { 2661 .key = "ro.build.host", 2662 .value = "SWDD6507", 2663 }, 2664 { 2665 .key = "ro.build.id", 2666 .value = "R16NW", 2667 }, 2668 { 2669 .key = "ro.build.official.release", 2670 .value = "true", 2671 }, 2672 { 2673 .key = "ro.build.product", 2674 .value = "starlte", 2675 }, 2676 { 2677 .key = "ro.build.scafe.version", 2678 .value = "2018A", 2679 }, 2680 { 2681 .key = "ro.build.selinux", 2682 .value = "1", 2683 }, 2684 { 2685 .key = "ro.build.selinux.enforce", 2686 .value = "1", 2687 }, 2688 { 2689 .key = "ro.build.tags", 2690 .value = "release-keys", 2691 }, 2692 { 2693 .key = "ro.build.type", 2694 .value = "user", 2695 }, 2696 { 2697 .key = "ro.build.user", 2698 .value = "dpi", 2699 }, 2700 { 2701 .key = "ro.build.version.all_codenames", 2702 .value = "REL", 2703 }, 2704 { 2705 .key = "ro.build.version.base_os", 2706 .value = "", 2707 }, 2708 { 2709 .key = "ro.build.version.codename", 2710 .value = "REL", 2711 }, 2712 { 2713 .key = "ro.build.version.incremental", 2714 .value = "G960FXXU1ARCC", 2715 }, 2716 { 2717 .key = "ro.build.version.preview_sdk", 2718 .value = "0", 2719 }, 2720 { 2721 .key = "ro.build.version.release", 2722 .value = "8.0.0", 2723 }, 2724 { 2725 .key = "ro.build.version.sdk", 2726 .value = "26", 2727 }, 2728 { 2729 .key = "ro.build.version.security_index", 2730 .value = "1", 2731 }, 2732 { 2733 .key = "ro.build.version.security_patch", 2734 .value = "2018-03-01", 2735 }, 2736 { 2737 .key = "ro.build.version.sem", 2738 .value = "2601", 2739 }, 2740 { 2741 .key = "ro.build.version.sep", 2742 .value = "90000", 2743 }, 2744 { 2745 .key = "ro.carrier", 2746 .value = "unknown", 2747 }, 2748 { 2749 .key = "ro.carrierid", 2750 .value = "XSP", 2751 }, 2752 { 2753 .key = "ro.carrierid.param.offset", 2754 .value = "7340608", 2755 }, 2756 { 2757 .key = "ro.cfg.dha_cached_max", 2758 .value = "24", 2759 }, 2760 { 2761 .key = "ro.chipname", 2762 .value = "exynos9810", 2763 }, 2764 { 2765 .key = "ro.com.google.clientidbase", 2766 .value = "android-samsung-ss", 2767 }, 2768 { 2769 .key = "ro.com.google.clientidbase.ms", 2770 .value = "android-samsung-gs-rev1", 2771 }, 2772 { 2773 .key = "ro.com.google.gmsversion", 2774 .value = "8.0_r6", 2775 }, 2776 { 2777 .key = "ro.config.alarm_alert", 2778 .value = "Morning_Glory.ogg", 2779 }, 2780 { 2781 .key = "ro.config.dha_cached_max", 2782 .value = "19", 2783 }, 2784 { 2785 .key = "ro.config.dha_cached_min", 2786 .value = "6", 2787 }, 2788 { 2789 .key = "ro.config.dha_empty_init", 2790 .value = "24", 2791 }, 2792 { 2793 .key = "ro.config.dha_empty_max", 2794 .value = "24", 2795 }, 2796 { 2797 .key = "ro.config.dha_empty_min", 2798 .value = "8", 2799 }, 2800 { 2801 .key = "ro.config.dha_lmk_scale", 2802 .value = "1.0", 2803 }, 2804 { 2805 .key = "ro.config.dha_pwhitelist_enable", 2806 .value = "1", 2807 }, 2808 { 2809 .key = "ro.config.dha_pwhl_key", 2810 .value = "512", 2811 }, 2812 { 2813 .key = "ro.config.dha_th_rate", 2814 .value = "2.0", 2815 }, 2816 { 2817 .key = "ro.config.dmverity", 2818 .value = "true", 2819 }, 2820 { 2821 .key = "ro.config.fall_prevent_enable", 2822 .value = "true", 2823 }, 2824 { 2825 .key = "ro.config.iccc_version", 2826 .value = "3.0", 2827 }, 2828 { 2829 .key = "ro.config.kap", 2830 .value = "true", 2831 }, 2832 { 2833 .key = "ro.config.kap_default_on", 2834 .value = "true", 2835 }, 2836 { 2837 .key = "ro.config.knox", 2838 .value = "v30", 2839 }, 2840 { 2841 .key = "ro.config.media_sound", 2842 .value = "Media_preview_Touch_the_light.ogg", 2843 }, 2844 { 2845 .key = "ro.config.notification_sound", 2846 .value = "Skyline.ogg", 2847 }, 2848 { 2849 .key = "ro.config.notification_sound_2", 2850 .value = "S_Charming_Bell.ogg", 2851 }, 2852 { 2853 .key = "ro.config.ringtone", 2854 .value = "Over_the_Horizon.ogg", 2855 }, 2856 { 2857 .key = "ro.config.ringtone_2", 2858 .value = "Basic_Bell.ogg", 2859 }, 2860 { 2861 .key = "ro.config.rm_preload_enabled", 2862 .value = "1", 2863 }, 2864 { 2865 .key = "ro.config.systemaudiodebug", 2866 .value = "abox&codecdsp", 2867 }, 2868 { 2869 .key = "ro.config.tima", 2870 .value = "1", 2871 }, 2872 { 2873 .key = "ro.config.timaversion", 2874 .value = "3.0", 2875 }, 2876 { 2877 .key = "ro.config.vc_call_vol_steps", 2878 .value = "5", 2879 }, 2880 { 2881 .key = "ro.control_privapp_permissions", 2882 .value = "log", 2883 }, 2884 { 2885 .key = "ro.cp_debug_level", 2886 .value = "unknown", 2887 }, 2888 { 2889 .key = "ro.crypto.fs_crypto_blkdev", 2890 .value = "/dev/block/dm-3", 2891 }, 2892 { 2893 .key = "ro.crypto.fuse_sdcard", 2894 .value = "true", 2895 }, 2896 { 2897 .key = "ro.crypto.state", 2898 .value = "encrypted", 2899 }, 2900 { 2901 .key = "ro.crypto.type", 2902 .value = "block", 2903 }, 2904 { 2905 .key = "ro.csc.country_code", 2906 .value = "SINGAPORE", 2907 }, 2908 { 2909 .key = "ro.csc.countryiso_code", 2910 .value = "SG", 2911 }, 2912 { 2913 .key = "ro.csc.facebook.partnerid", 2914 .value = "samsung:dec1cc9c-1497-4aab-b953-cee702c2a481", 2915 }, 2916 { 2917 .key = "ro.csc.omcnw_code", 2918 .value = "MM1", 2919 }, 2920 { 2921 .key = "ro.csc.omcnw_code2", 2922 .value = "MM1", 2923 }, 2924 { 2925 .key = "ro.csc.sales_code", 2926 .value = "MM1", 2927 }, 2928 { 2929 .key = "ro.dalvik.vm.native.bridge", 2930 .value = "0", 2931 }, 2932 { 2933 .key = "ro.debug_level", 2934 .value = "0x4f4c", 2935 }, 2936 { 2937 .key = "ro.debuggable", 2938 .value = "0", 2939 }, 2940 { 2941 .key = "ro.device_owner", 2942 .value = "false", 2943 }, 2944 { 2945 .key = "ro.em.version", 2946 .value = "20", 2947 }, 2948 { 2949 .key = "ro.emmc_checksum", 2950 .value = "3", 2951 }, 2952 { 2953 .key = "ro.error.receiver.default", 2954 .value = "com.samsung.receiver.error", 2955 }, 2956 { 2957 .key = "ro.expect.recovery_id", 2958 .value = "0x391347e6a649be99a22ebf04c41b03f07aad1993000000000000000000000000", 2959 }, 2960 { 2961 .key = "ro.fmp_config", 2962 .value = "1", 2963 }, 2964 { 2965 .key = "ro.frp.pst", 2966 .value = "/dev/block/persistent", 2967 }, 2968 { 2969 .key = "ro.gfx.driver.0", 2970 .value = "com.samsung.gpudriver.S9MaliG72_80", 2971 }, 2972 { 2973 .key = "ro.hardware", 2974 .value = "samsungexynos9810", 2975 }, 2976 { 2977 .key = "ro.hardware.egl", 2978 .value = "mali", 2979 }, 2980 { 2981 .key = "ro.hardware.keystore", 2982 .value = "mdfpp", 2983 }, 2984 { 2985 .key = "ro.hdcp2.rx", 2986 .value = "tz", 2987 }, 2988 { 2989 .key = "ro.hmac_mismatch", 2990 .value = "0", 2991 }, 2992 { 2993 .key = "ro.hwui.drop_shadow_cache_size", 2994 .value = "6", 2995 }, 2996 { 2997 .key = "ro.hwui.gradient_cache_size", 2998 .value = "2", 2999 }, 3000 { 3001 .key = "ro.hwui.layer_cache_size", 3002 .value = "58", 3003 }, 3004 { 3005 .key = "ro.hwui.path_cache_size", 3006 .value = "16", 3007 }, 3008 { 3009 .key = "ro.hwui.r_buffer_cache_size", 3010 .value = "8", 3011 }, 3012 { 3013 .key = "ro.hwui.shape_cache_size", 3014 .value = "4", 3015 }, 3016 { 3017 .key = "ro.hwui.text_large_cache_height", 3018 .value = "2048", 3019 }, 3020 { 3021 .key = "ro.hwui.text_large_cache_width", 3022 .value = "4096", 3023 }, 3024 { 3025 .key = "ro.hwui.text_small_cache_height", 3026 .value = "1024", 3027 }, 3028 { 3029 .key = "ro.hwui.text_small_cache_width", 3030 .value = "1024", 3031 }, 3032 { 3033 .key = "ro.hwui.texture_cache_flushrate", 3034 .value = "0.4", 3035 }, 3036 { 3037 .key = "ro.hwui.texture_cache_size", 3038 .value = "88", 3039 }, 3040 { 3041 .key = "ro.im.param.offset", 3042 .value = "unknown", 3043 }, 3044 { 3045 .key = "ro.kernel.qemu", 3046 .value = "0", 3047 }, 3048 { 3049 .key = "ro.kernel.qemu.gles", 3050 .value = "2", 3051 }, 3052 { 3053 .key = "ro.knox.enhance.zygote.aslr", 3054 .value = "0", 3055 }, 3056 { 3057 .key = "ro.logd.auditd", 3058 .value = "false", 3059 }, 3060 { 3061 .key = "ro.me.param.offset", 3062 .value = "unknown", 3063 }, 3064 { 3065 .key = "ro.multisim.simslotcount", 3066 .value = "2", 3067 }, 3068 { 3069 .key = "ro.oem.key1", 3070 .value = "MM1", 3071 }, 3072 { 3073 .key = "ro.oem_unlock_supported", 3074 .value = "1", 3075 }, 3076 { 3077 .key = "ro.omc.build.id", 3078 .value = "17395495", 3079 }, 3080 { 3081 .key = "ro.omc.build.version", 3082 .value = "G960FOXM1ARCA", 3083 }, 3084 { 3085 .key = "ro.omc.changetype", 3086 .value = "DATA_RESET_ON,TRUE", 3087 }, 3088 { 3089 .key = "ro.omc.disabler", 3090 .value = "FALSE", 3091 }, 3092 { 3093 .key = "ro.omc.img_mount", 3094 .value = "0", 3095 }, 3096 { 3097 .key = "ro.omcnw.param.offset", 3098 .value = "unknown", 3099 }, 3100 { 3101 .key = "ro.opengles.version", 3102 .value = "196610", 3103 }, 3104 { 3105 .key = "ro.pr.param.offset", 3106 .value = "unknown", 3107 }, 3108 { 3109 .key = "ro.product.board", 3110 .value = "universal9810", 3111 }, 3112 { 3113 .key = "ro.product.brand", 3114 .value = "samsung", 3115 }, 3116 { 3117 .key = "ro.product.cpu.abi", 3118 .value = "arm64-v8a", 3119 }, 3120 { 3121 .key = "ro.product.cpu.abilist", 3122 .value = "arm64-v8a,armeabi-v7a,armeabi", 3123 }, 3124 { 3125 .key = "ro.product.cpu.abilist32", 3126 .value = "armeabi-v7a,armeabi", 3127 }, 3128 { 3129 .key = "ro.product.cpu.abilist64", 3130 .value = "arm64-v8a", 3131 }, 3132 { 3133 .key = "ro.product.device", 3134 .value = "starlte", 3135 }, 3136 { 3137 .key = "ro.product.first_api_level", 3138 .value = "26", 3139 }, 3140 { 3141 .key = "ro.product.locale", 3142 .value = "en-GB", 3143 }, 3144 { 3145 .key = "ro.product.manufacturer", 3146 .value = "samsung", 3147 }, 3148 { 3149 .key = "ro.product.model", 3150 .value = "SM-G960F", 3151 }, 3152 { 3153 .key = "ro.product.name", 3154 .value = "starltexx", 3155 }, 3156 { 3157 .key = "ro.product_ship", 3158 .value = "true", 3159 }, 3160 { 3161 .key = "ro.property_service.version", 3162 .value = "2", 3163 }, 3164 { 3165 .key = "ro.radio.noril", 3166 .value = "no", 3167 }, 3168 { 3169 .key = "ro.revision", 3170 .value = "26", 3171 }, 3172 { 3173 .key = "ro.ril.gprsclass", 3174 .value = "10", 3175 }, 3176 { 3177 .key = "ro.ril.hsxpa", 3178 .value = "1", 3179 }, 3180 { 3181 .key = "ro.rtn_config", 3182 .value = "unknown", 3183 }, 3184 { 3185 .key = "ro.sales.param.offset", 3186 .value = "7340572", 3187 }, 3188 { 3189 .key = "ro.secure", 3190 .value = "1", 3191 }, 3192 { 3193 .key = "ro.security.ese.cosname", 3194 .value = "UT5.0_0100000B", 3195 }, 3196 { 3197 .key = "ro.security.esest", 3198 .value = "per0201exi", 3199 }, 3200 { 3201 .key = "ro.security.fips.ux", 3202 .value = "Enabled", 3203 }, 3204 { 3205 .key = "ro.security.fips_bssl.ver", 3206 .value = "1.2", 3207 }, 3208 { 3209 .key = "ro.security.fips_fmp.ver", 3210 .value = "1.4", 3211 }, 3212 { 3213 .key = "ro.security.fips_scrypto.ver", 3214 .value = "2.2", 3215 }, 3216 { 3217 .key = "ro.security.fips_skc.ver", 3218 .value = "1.9", 3219 }, 3220 { 3221 .key = "ro.security.icd.flagmode", 3222 .value = "multi", 3223 }, 3224 { 3225 .key = "ro.security.keystore.keytype", 3226 .value = "sak,gak", 3227 }, 3228 { 3229 .key = "ro.security.mdf.release", 3230 .value = "1", 3231 }, 3232 { 3233 .key = "ro.security.mdf.ux", 3234 .value = "Enabled", 3235 }, 3236 { 3237 .key = "ro.security.mdf.ver", 3238 .value = "3.1", 3239 }, 3240 { 3241 .key = "ro.security.reactive.version", 3242 .value = "2.0.11", 3243 }, 3244 { 3245 .key = "ro.security.vaultkeeper.feature", 3246 .value = "1", 3247 }, 3248 { 3249 .key = "ro.security.vpnpp.release", 3250 .value = "1.0", 3251 }, 3252 { 3253 .key = "ro.security.vpnpp.ver", 3254 .value = "2.1", 3255 }, 3256 { 3257 .key = "ro.security.wlan.release", 3258 .value = "1", 3259 }, 3260 { 3261 .key = "ro.security.wlan.ver", 3262 .value = "1.0", 3263 }, 3264 { 3265 .key = "ro.security_mode", 3266 .value = "1526595585", 3267 }, 3268 { 3269 .key = "ro.serialno", 3270 .value = "1cb2240629047ece", 3271 }, 3272 { 3273 .key = "ro.sf.init.lcd_density", 3274 .value = "640", 3275 }, 3276 { 3277 .key = "ro.sf.lcd_density", 3278 .value = "480", 3279 }, 3280 { 3281 .key = "ro.simbased.changetype", 3282 .value = "NO_DFLT_CSC,OMC", 3283 }, 3284 { 3285 .key = "ro.sku.param.offset", 3286 .value = "unknown", 3287 }, 3288 { 3289 .key = "ro.sn.param.offset", 3290 .value = "unknown", 3291 }, 3292 { 3293 .key = "ro.supportmodel.mptcp", 3294 .value = "1", 3295 }, 3296 { 3297 .key = "ro.telephony.default_cdma_sub", 3298 .value = "0", 3299 }, 3300 { 3301 .key = "ro.telephony.default_network", 3302 .value = "9", 3303 }, 3304 { 3305 .key = "ro.treble.enabled", 3306 .value = "true", 3307 }, 3308 { 3309 .key = "ro.userpartflashed", 3310 .value = "unknown", 3311 }, 3312 { 3313 .key = "ro.vendor.build.date", 3314 .value = "Thu Mar 22 20:54:22 KST 2018", 3315 }, 3316 { 3317 .key = "ro.vendor.build.date.utc", 3318 .value = "1521719662", 3319 }, 3320 { 3321 .key = "ro.vendor.build.fingerprint", 3322 .value = "samsung/starltexx/starlte:8.0.0/R16NW/G960FXXU1ARCC:user/release-keys", 3323 }, 3324 { 3325 .key = "ro.warranty_bit", 3326 .value = "0", 3327 }, 3328 { 3329 .key = "ro.wifi.channels", 3330 .value = "", 3331 }, 3332 { 3333 .key = "ro.wsmd.enable", 3334 .value = "true", 3335 }, 3336 { 3337 .key = "ro.zygote", 3338 .value = "zygote64_32", 3339 }, 3340 { 3341 .key = "ro.zygote.disable_gl_preload", 3342 .value = "true", 3343 }, 3344 { 3345 .key = "secmm.codecsolution.ready", 3346 .value = "1", 3347 }, 3348 { 3349 .key = "secmm.player.uhqamode", 3350 .value = "True", 3351 }, 3352 { 3353 .key = "security.ASKS.policy_version", 3354 .value = "180123", 3355 }, 3356 { 3357 .key = "security.ASKS.version", 3358 .value = "1.4", 3359 }, 3360 { 3361 .key = "security.mdf", 3362 .value = "Ready", 3363 }, 3364 { 3365 .key = "security.mdf.result", 3366 .value = "None", 3367 }, 3368 { 3369 .key = "security.perf_harden", 3370 .value = "1", 3371 }, 3372 { 3373 .key = "security.semdaemonfinish", 3374 .value = "1", 3375 }, 3376 { 3377 .key = "service.browser.homepage", 3378 .value = "https://www.m1.com.sg", 3379 }, 3380 { 3381 .key = "service.media.powersnd", 3382 .value = "1", 3383 }, 3384 { 3385 .key = "service.sf.present_timestamp", 3386 .value = "1", 3387 }, 3388 { 3389 .key = "storage.support.sdcard", 3390 .value = "1", 3391 }, 3392 { 3393 .key = "storage.support.usb", 3394 .value = "1", 3395 }, 3396 { 3397 .key = "sys.aasservice.aason", 3398 .value = "true", 3399 }, 3400 { 3401 .key = "sys.bartender.batterystats.ver", 3402 .value = "17", 3403 }, 3404 { 3405 .key = "sys.bluetooth.tty", 3406 .value = "ttySAC1", 3407 }, 3408 { 3409 .key = "sys.boot.end_package", 3410 .value = "1", 3411 }, 3412 { 3413 .key = "sys.boot.loop_forever", 3414 .value = "1", 3415 }, 3416 { 3417 .key = "sys.boot.start_preload", 3418 .value = "1", 3419 }, 3420 { 3421 .key = "sys.boot_completed", 3422 .value = "1", 3423 }, 3424 { 3425 .key = "sys.cameramode.cam_binning", 3426 .value = "0", 3427 }, 3428 { 3429 .key = "sys.cameramode.cam_fps", 3430 .value = "-1", 3431 }, 3432 { 3433 .key = "sys.config.activelaunch_enable", 3434 .value = "true", 3435 }, 3436 { 3437 .key = "sys.config.amp_perf_enable", 3438 .value = "true", 3439 }, 3440 { 3441 .key = "sys.config.mars_version", 3442 .value = "2.10", 3443 }, 3444 { 3445 .key = "sys.daydream.connected", 3446 .value = "0", 3447 }, 3448 { 3449 .key = "sys.dockstate", 3450 .value = "0", 3451 }, 3452 { 3453 .key = "sys.dualapp.profile_id", 3454 .value = "", 3455 }, 3456 { 3457 .key = "sys.enterprise.billing.dualsim", 3458 .value = "true", 3459 }, 3460 { 3461 .key = "sys.enterprise.billing.version", 3462 .value = "1.3.0", 3463 }, 3464 { 3465 .key = "sys.gps.chipinfo", 3466 .value = "BCM4775", 3467 }, 3468 { 3469 .key = "sys.gps.chipvendor", 3470 .value = "Broadcom", 3471 }, 3472 { 3473 .key = "sys.gps.swversion", 3474 .value = "318732", 3475 }, 3476 { 3477 .key = "sys.is_members", 3478 .value = "exist", 3479 }, 3480 { 3481 .key = "sys.isdumpstaterunning", 3482 .value = "0", 3483 }, 3484 { 3485 .key = "sys.logbootcomplete", 3486 .value = "1", 3487 }, 3488 { 3489 .key = "sys.mdniecontrolservice.mscon", 3490 .value = "true", 3491 }, 3492 { 3493 .key = "sys.members.installed", 3494 .value = "true", 3495 }, 3496 { 3497 .key = "sys.nfc.support", 3498 .value = "1", 3499 }, 3500 { 3501 .key = "sys.oem_unlock_allowed", 3502 .value = "0", 3503 }, 3504 { 3505 .key = "sys.sbf.mnoname0", 3506 .value = "Mobileone_SG", 3507 }, 3508 { 3509 .key = "sys.sbf.mnoname1", 3510 .value = "Mobileone_SG", 3511 }, 3512 { 3513 .key = "sys.siop.level", 3514 .value = "-3", 3515 }, 3516 { 3517 .key = "sys.skip_lockscreen", 3518 .value = "0", 3519 }, 3520 { 3521 .key = "sys.sysctl.extra_free_kbytes", 3522 .value = "28096", 3523 }, 3524 { 3525 .key = "sys.sysctl.tcp_def_init_rwnd", 3526 .value = "60", 3527 }, 3528 { 3529 .key = "sys.usb.config", 3530 .value = "mtp,adb", 3531 }, 3532 { 3533 .key = "sys.usb.configfs", 3534 .value = "1", 3535 }, 3536 { 3537 .key = "sys.usb.controller", 3538 .value = "10c00000.dwc3", 3539 }, 3540 { 3541 .key = "sys.usb.ffs.ready", 3542 .value = "1", 3543 }, 3544 { 3545 .key = "sys.usb.state", 3546 .value = "mtp,adb", 3547 }, 3548 { 3549 .key = "sys.use_fifo_ui", 3550 .value = "0", 3551 }, 3552 { 3553 .key = "sys.vs.display", 3554 .value = "", 3555 }, 3556 { 3557 .key = "sys.vs.mode", 3558 .value = "false", 3559 }, 3560 { 3561 .key = "sys.vs.visible", 3562 .value = "false", 3563 }, 3564 { 3565 .key = "sys.wifitracing.started", 3566 .value = "1", 3567 }, 3568 { 3569 .key = "telephony.lteOnCdmaDevice", 3570 .value = "0", 3571 }, 3572 { 3573 .key = "vendor.ril.debug.sales_code", 3574 .value = "EUR", 3575 }, 3576 { 3577 .key = "vendor.sec.rild.libpath", 3578 .value = "/vendor/lib64/libsec-ril.so", 3579 }, 3580 { 3581 .key = "vendor.sec.rild.libpath2", 3582 .value = "/vendor/lib64/libsec-ril-dsds.so", 3583 }, 3584 { 3585 .key = "vold.crypt.type", 3586 .value = "default", 3587 }, 3588 { 3589 .key = "vold.decrypt", 3590 .value = "trigger_restart_framework", 3591 }, 3592 { 3593 .key = "vold.has_adoptable", 3594 .value = "0", 3595 }, 3596 { 3597 .key = "vold.post_fs_data_done", 3598 .value = "1", 3599 }, 3600 { 3601 .key = "vzw.os.rooted", 3602 .value = "false", 3603 }, 3604 { 3605 .key = "wifi.interface", 3606 .value = "wlan0", 3607 }, 3608 { NULL }, 3609 }; 3610 #endif /* __ANDROID__ */ 3611