1<!DOCTYPE html> 2<html> 3 <head> 4 <title>des_support_event</title> 5 <meta charset="utf-8" /> 6 <meta content="width=device-width, initial-scale=1.0" name="viewport" /> 7 <style> 8 code[class*='font-'], 9 pre[class*='font-'] { 10 text-align: left; 11 color: #333333; 12 background: none; 13 word-spacing: normal; 14 white-space: pre; 15 word-break: normal; 16 word-wrap: normal; 17 line-height: 1.5; 18 -moz-hyphens: none; 19 -ms-hyphens: none; 20 -o-tab-size: 8; 21 tab-size: 8; 22 -moz-tab-size: 8; 23 -webkit-hyphens: none; 24 hyphens: none; 25 font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; 26 } 27 28 pre[class*='font-'] { 29 border-radius: 3px; 30 background: #f5f5f5; 31 padding: 0.8em; 32 overflow: auto; 33 } 34 35 :not(pre) > code[class*='font-'] { 36 white-space: normal; 37 background: #f5f5f5; 38 padding: 0.2em; 39 border-radius: 0.3em; 40 } 41 42 .temporary.cdata { 43 color: #183690; 44 } 45 46 .temporary.comment, 47 .temporary.blockquote { 48 color: #969897; 49 } 50 51 .temporary.doctype, 52 .temporary.punctuation, 53 .temporary.variable, 54 .temporary.macro.property { 55 color: #333333; 56 } 57 58 .temporary.string, 59 .temporary.url, 60 .temporary.regex, 61 .temporary.attr-value { 62 color: #183690; 63 } 64 65 .temporary.operator, 66 .temporary.important, 67 .temporary.keyword, 68 .temporary.rule, 69 .temporary.builtin { 70 color: #a71d5c; 71 } 72 73 .temporary.atrule, 74 .temporary.constant, 75 .temporary.symbol, 76 .temporary.command, 77 .temporary.property, 78 .temporary.number, 79 .temporary.boolean, 80 .temporary.entity, 81 .temporary.code { 82 color: #0086b2; 83 } 84 85 .temporary.tag, 86 .temporary.selector, 87 .temporary.prolog { 88 color: #63a35e; 89 } 90 91 .temporary.entity { 92 cursor: help; 93 } 94 95 .temporary.title, 96 .temporary.title .temporary.punctuation { 97 font-weight: bold; 98 color: #1d3e89; 99 } 100 101 .temporary.list { 102 color: #ed6a48; 103 } 104 105 .temporary.function, 106 .temporary.namespace, 107 .temporary.pseudo-element, 108 .temporary.class, 109 .temporary.class-name, 110 .temporary.pseudo-class, 111 .temporary.id, 112 .temporary.url-reference .temporary.variable, 113 .temporary.attr-name { 114 color: #795da2; 115 } 116 117 .temporary.inserted { 118 color: #55a535; 119 background-color: #eaffee; 120 } 121 122 .temporary.bold { 123 font-weight: bold; 124 } 125 126 .temporary.deleted { 127 color: #bd2c08; 128 background-color: #ffecea; 129 } 130 131 .font-json .temporary.property { 132 color: #183690; 133 } 134 135 .temporary.italic { 136 font-style: italic; 137 } 138 139 .font-markup .temporary.tag .temporary.punctuation { 140 color: #333333; 141 } 142 143 .font-yaml .temporary.atrule { 144 color: #63a35a; 145 } 146 147 code.font-css, 148 .font-css .temporary.function { 149 color: #0086b8; 150 } 151 152 code.font-yaml { 153 color: #183690; 154 } 155 156 .font-ruby .temporary.function { 157 color: #333333; 158 } 159 160 .font-markdown .temporary.url { 161 color: #795da2; 162 } 163 164 .font-makefile .temporary.variable { 165 color: #183690; 166 } 167 168 .font-makefile .temporary.builtin { 169 color: #0086b3; 170 } 171 172 .font-makefile .temporary.symbol { 173 color: #795da2; 174 } 175 176 .font-bash .temporary.keyword { 177 color: #0086b3; 178 } 179 180 pre[data-wire] { 181 padding: 1em 0 1em 2em; 182 position: relative; 183 } 184 185 pre[data-wire] .line-highlight-wrapper { 186 background-color: transparent; 187 top: 2px; 188 left: 2px; 189 display: block; 190 width: 100%; 191 position: absolute; 192 } 193 194 pre[data-wire] .line-highlight { 195 position: absolute; 196 left: 2px; 197 right: 2px; 198 pointer-events: none; 199 margin-top: 3em; 200 background: hsla(25, 10%, 55%, 0.06); 201 background: linear-gradient(to right, hsla(25, 10%, 40%, 0.2) 80%, hsla(23, 24%, 52%, 0)); 202 line-height: inherit; 203 white-space: pre; 204 } 205 206 pre[data-wire] .line-highlight:before, 207 pre[data-wire] .line-highlight[data-end]:after { 208 content: attr(data-start); 209 position: absolute; 210 background-color: hsla(22, 25%, 54%, 0.5); 211 min-width: 2em; 212 padding: 0 0.6em; 213 top: 0.5em; 214 left: 0.4em; 215 color: hsl(22, 23%, 90%); 216 vertical-align: 0.3em; 217 border-radius: 10px; 218 text-shadow: none; 219 box-shadow: 0 2px white; 220 font: bold 60%/1.6 sans-serif; 221 text-align: center; 222 } 223 224 pre[data-wire] .line-highlight[data-end]:after { 225 bottom: 0.6em; 226 content: attr(data-end); 227 top: auto; 228 } 229 230 body > :first-child { 231 margin-top: 0; 232 } 233 234 body { 235 font-family: 'Helvetica Neue', Helvetica, 'Segoe UI', Arial, freesans, sans-serif; 236 line-height: 1.6; 237 color: #333333; 238 background-color: #ffffff; 239 font-size: 16px; 240 overflow: initial; 241 word-wrap: break-word; 242 box-sizing: border-box; 243 } 244 245 body h1, 246 body h2, 247 body h3, 248 body h4, 249 body h5 { 250 line-height: 1.2; 251 margin-bottom: 16px; 252 margin-top: 1em; 253 color: #000000; 254 } 255 256 body h1 { 257 font-weight: 300; 258 font-size: 2.25em; 259 padding-bottom: 0.3em; 260 } 261 262 body h2 { 263 font-weight: 400; 264 padding-bottom: 0.3em; 265 font-size: 1.75em; 266 } 267 268 body h3 { 269 font-weight: 500; 270 font-size: 1.5em; 271 } 272 273 body h4 { 274 font-weight: 600; 275 font-size: 1.25em; 276 } 277 278 body h5 { 279 font-weight: 600; 280 font-size: 1.1em; 281 } 282 283 body strong { 284 color: #000000; 285 } 286 287 body h1, 288 body h2, 289 body h3, 290 body h4, 291 body h5 { 292 font-weight: 600; 293 } 294 295 body del { 296 color: #5c5c5c; 297 } 298 299 body a:not([href]) { 300 text-decoration: none; 301 color: inherit; 302 } 303 304 body a { 305 text-decoration: none; 306 color: #08c; 307 } 308 309 body a:hover { 310 color: #00a3f5; 311 text-decoration: none; 312 } 313 314 body > p { 315 margin-bottom: 16px; 316 margin-top: 0; 317 word-wrap: break-word; 318 } 319 320 body img { 321 max-width: 100%; 322 } 323 324 body > ul, 325 body > ol { 326 margin-bottom: 16px; 327 } 328 329 body ul, 330 body ol { 331 padding-left: 2em; 332 } 333 334 body ul ul, 335 body ul ol, 336 body ol ol, 337 body ol ul { 338 margin-top: 0; 339 margin-bottom: 0; 340 } 341 342 body ul.no-list, 343 body ol.no-list { 344 padding: 0; 345 list-style-type: none; 346 } 347 348 body li.task-list-item { 349 list-style: none; 350 } 351 352 body li { 353 margin-bottom: 0; 354 } 355 356 body .task-list-item-checkbox { 357 vertical-align: middle; 358 margin: 0 0.2em 0.25em -1.8em; 359 } 360 361 body li > p { 362 margin-bottom: 0; 363 margin-top: 0; 364 } 365 366 body .task-list-item-checkbox:hover { 367 cursor: pointer; 368 } 369 370 body blockquote { 371 color: #5c5c5c; 372 margin: 16px 0 0 0; 373 font-size: inherit; 374 padding: 0 15px; 375 background-color: #f0f0f0; 376 border-left: 4px solid #d6d6d6; 377 } 378 379 body blockquote > :first-child { 380 margin-top: 0; 381 } 382 383 body blockquote > :last-child { 384 margin-bottom: 0; 385 } 386 387 body hr { 388 margin: 32px 0 0 0; 389 height: 4px; 390 border: 0 none; 391 background-color: #d6d6d6; 392 } 393 394 body table { 395 display: block; 396 width: 100%; 397 margin: 10px 0 15px 0; 398 border-collapse: collapse; 399 border-spacing: 0; 400 word-break: normal; 401 overflow: auto; 402 word-break: keep-all; 403 } 404 405 body table th { 406 font-weight: bold; 407 color: #000000; 408 } 409 410 body table td, 411 body table th { 412 padding: 6px 13px 0 0; 413 border: 1px solid #d6d6d6; 414 } 415 416 body dl { 417 padding: 0; 418 } 419 420 body dl dd { 421 padding: 0 16px 0 0; 422 margin-bottom: 16px; 423 } 424 425 body dl dt { 426 margin-top: 16px; 427 font-size: 1em; 428 padding: 0; 429 font-style: italic; 430 font-weight: bold; 431 } 432 433 body code { 434 color: #000000; 435 font-family: Menlo, Monaco, Consolas, 'Courier New', monospace; 436 font-size: 0.85em !important; 437 background-color: #f0f0f0; 438 padding: 0.2em 0 0 0; 439 border-radius: 3px; 440 } 441 442 body code::before, 443 body code::after { 444 content: '\00a0'; 445 letter-spacing: -0.2em; 446 } 447 448 body pre > code { 449 font-size: 0.85em !important; 450 padding: 0; 451 margin: 0; 452 background: transparent; 453 word-break: normal; 454 white-space: pre; 455 border: 0; 456 } 457 458 body .highlight { 459 margin-bottom: 16px; 460 } 461 462 body .highlight pre, 463 body pre { 464 border: #d6d6d6; 465 font-size: 0.85em !important; 466 line-height: 1.45; 467 border-radius: 3px; 468 padding: 1em; 469 overflow: auto; 470 } 471 472 body .highlight pre { 473 word-break: normal; 474 margin-bottom: 0; 475 } 476 477 body pre code, 478 body pre tt { 479 background-color: transparent; 480 padding: 0; 481 margin: 0; 482 display: inline; 483 max-width: initial; 484 overflow: initial; 485 line-height: inherit; 486 word-wrap: normal; 487 border: 0; 488 } 489 490 body pre code:before, 491 body pre tt:before, 492 body pre code:after, 493 body pre tt:after { 494 content: normal; 495 } 496 497 body p, 498 body blockquote, 499 body ul, 500 body ol, 501 body dl, 502 body pre { 503 margin-top: 0; 504 margin-bottom: 16px; 505 } 506 507 body kbd { 508 border: 1px solid #d6d6d6; 509 border-bottom: 2px solid #c7c7c7; 510 padding: 2px 4px; 511 background-color: #f0f0f0; 512 border-radius: 3px; 513 color: #000000; 514 } 515 516 @media print { 517 body { 518 background-color: #ffffff; 519 } 520 521 body h1, 522 body h2, 523 body h3, 524 body h4, 525 body h5 { 526 page-break-after: avoid; 527 color: #000000; 528 } 529 530 body blockquote { 531 color: #5c5c5c; 532 } 533 534 body pre { 535 page-break-inside: avoid; 536 } 537 538 body table { 539 display: table; 540 } 541 542 body img { 543 display: block; 544 max-width: 100%; 545 max-height: 100%; 546 } 547 548 body pre, 549 body code { 550 white-space: pre; 551 word-wrap: break-word; 552 } 553 } 554 555 .md-preview { 556 width: 100%; 557 height: 100%; 558 box-sizing: border-box; 559 } 560 561 .md-preview, 562 .md-preview { 563 page-break-before: always; 564 } 565 566 .md-preview pre.figure-numbers { 567 position: relative; 568 padding-left: 3.8em; 569 counter-reset: linenumber; 570 } 571 572 .md-preview pre.figure-numbers > code { 573 position: relative; 574 } 575 576 .md-preview pre.figure-numbers .figure-numbers-rows { 577 top: 1em; 578 font-size: 100%; 579 left: 0; 580 width: 3em; 581 position: absolute; 582 pointer-events: none; 583 letter-spacing: -1px; 584 border-right: 1px solid #999; 585 -webkit-user-select: none; 586 user-select: none; 587 -moz-user-select: none; 588 -ms-user-select: none; 589 } 590 591 .md-preview pre.figure-numbers .figure-numbers-rows > span:before { 592 content: counter(linenumber); 593 color: #999999; 594 display: block; 595 text-align: right; 596 padding-right: 0.8em; 597 } 598 599 .md-preview pre.figure-numbers .figure-numbers-rows > span { 600 display: block; 601 pointer-events: none; 602 counter-increment: linenumber; 603 } 604 605 .md-preview:not([for='preview']) .code-block .btn-group { 606 display: none; 607 } 608 609 .md-preview:not([for='preview']) .code-block .status { 610 display: none; 611 } 612 613 .md-preview:not([for='preview']) .code-block .output-div { 614 margin-bottom: 16px; 615 } 616 617 .scrollbar-type::-webkit-scrollbar { 618 width: 8px; 619 } 620 621 .scrollbar-type::-webkit-scrollbar-track { 622 background-color: transparent; 623 border-radius: 10px; 624 } 625 626 .scrollbar-type::-webkit-scrollbar-thumb { 627 border-radius: 5px; 628 border: 4px solid rgba(150, 150, 150, 0.66); 629 background-clip: content-box; 630 background-color: rgba(150, 150, 150, 0.66); 631 } 632 633 body[for='native-export']:not([data-display-mode]) { 634 position: relative; 635 top: 0; 636 left: 0; 637 margin: 0; 638 padding: 0; 639 overflow: auto; 640 width: 100%; 641 height: 100%; 642 } 643 644 body[for='native-export']:not([data-presentation-mode]) .md-preview { 645 position: relative; 646 top: 0; 647 } 648 649 @media screen and (min-width: 914px) { 650 body[for='native-export']:not([data-presentation-mode]) .md-preview { 651 padding: 2em calc(50% - 457px + 2em); 652 } 653 } 654 655 @media screen and (max-width: 914px) { 656 body[for='native-export']:not([data-presentation-mode]) .md-preview { 657 padding: 2em; 658 } 659 } 660 661 @media screen and (max-width: 450px) { 662 body[for='native-export']:not([data-display-mode]) .md-preview { 663 font-size: 14px !important; 664 padding: 1em; 665 } 666 } 667 668 @media print { 669 body[for='native-export']:not([data-presentation-mode]) #sidebarButton { 670 display: none; 671 } 672 } 673 674 body[for='native-export']:not([data-presentation-mode]) #sidebarButton { 675 opacity: 0.4; 676 position: fixed; 677 bottom: 8px; 678 left: 8px; 679 z-index: 99; 680 width: 32px; 681 text-align: center; 682 font-size: 28px; 683 cursor: pointer; 684 color: inherit; 685 } 686 687 body[for='native-export']:not([data-display-mode])[sidebarToc] #sidebarButton { 688 opacity: 1; 689 } 690 691 body[for='native-export']:not([data-presentation-mode])[html-show-sidebar-toc] .md-sidebar-toc { 692 position: fixed; 693 top: 0; 694 left: 0; 695 padding: 32px 0 48px 0; 696 width: 300px; 697 height: 100%; 698 font-size: 14px; 699 box-shadow: 0 0 4px rgba(150, 150, 150, 0.33); 700 box-sizing: border-box; 701 overflow: auto; 702 background-color: inherit; 703 } 704 705 body[for='native-export']:not([data-display-mode])[sidebarToc] .md-sidebar-toc::-webkit-scrollbar { 706 width: 8px; 707 } 708 709 body[for='native-export']:not([data-display-mode])[sidebarToc] .md-sidebar-toc::-webkit-scrollbar-track { 710 background-color: transparent; 711 border-radius: 10px; 712 } 713 714 body[for='native-export']:not([data-display-mode])[sidebarToc] .md-sidebar-toc::-webkit-scrollbar-thumb { 715 background-color: rgba(150, 150, 150, 0.66); 716 border-radius: 5px; 717 border: 4px solid rgba(150, 150, 150, 0.66); 718 background-clip: content-box; 719 } 720 721 body[for='native-export']:not([data-display-mode])[sidebarToc] .md-sidebar-toc a { 722 text-decoration: none; 723 } 724 725 body[for='native-export']:not([data-display-mode])[sidebarToc] .md-sidebar-toc li { 726 margin-bottom: 0.8em; 727 } 728 729 body[for='native-export']:not([data-display-mode])[sidebarToc] .md-sidebar-toc ul { 730 margin-top: 0.7em; 731 padding: 0 1.6em 0 0; 732 } 733 734 body[for='native-export']:not([data-display-mode])[sidebarToc] .md-sidebar-toc ul { 735 list-style-type: none; 736 } 737 738 body[for='native-export']:not([data-display-mode])[sidebarToc] .md-preview { 739 padding: 2em calc(50% - 457px - 150px); 740 margin: 0; 741 box-sizing: border-box; 742 left: 300px; 743 width: calc(100% - 300px); 744 } 745 746 @media screen and (max-width: 450px) { 747 body[for='native-export']:not([data-display-mode])[sidebarToc] .md-preview { 748 width: 100%; 749 } 750 } 751 752 @media screen and (max-width: 1274px) { 753 body[for='native-export']:not([data-display-mode])[sidebarToc] .md-preview { 754 padding: 2em; 755 } 756 } 757 758 body[for='native-export']:not([data-display-mode]):not([sidebarToc]) .md-preview { 759 transform: translateX(-50%); 760 left: 50%; 761 } 762 763 body[for='native-export']:not([data-display-mode]):not([sidebarToc]) .md-sidebar-toc { 764 display: none; 765 } 766 </style> 767 </head> 768 <body for="native-export" id="body"> 769 <div class="mume md-preview"> 770 <h1 class="mume-header fontColor">TraceStreamer支持解析事件列表</h1> 771 772 <h2 class="mume-header fontColor">ftrace事件</h2> 773 774 <pre class="font- light" data-info data-role="codeBlock"><code class="fontColor">binder_transaction 775binder_transaction_received 776binder_transaction_alloc_buf 777binder_transaction_lock 778binder_transaction_locked 779binder_transaction_unlock 780sched_switch 781task_rename 782task_newtask 783tracing_mark_write 784print 785sched_wakeup 786sched_waking 787cpu_idle 788cpu_frequency 789suspend_resume 790workqueue_execute_start 791workqueue_execute_end 792clock_set_rate 793clock_enable 794clock_disable 795clk_set_rate 796clk_enable 797clk_disable 798sys_enter 799sys_exit 800regulator_set_voltage 801regulator_set_voltage_complete 802regulator_disable 803regulator_disable_complete 804ipi_entry 805ipi_exit 806irq_handler_entry 807irq_handler_exit 808softirq_raise 809softirq_entry 810softirq_exit 811sched_wakeup_new 812sched_process_exit 813trace_event_clock_sync 814</code></pre> 815 <h2 class="mume-header fontColor">内存事件</h2> 816 817 <pre class="font- light" data-info data-role="codeBlock"><code class="fontColor">mem.vm.size 818mem.rss 819mem.rss.anon 820mem.rss.file 821mem.rss.schem 822mem.swap 823mem.locked 824mem.hwm 825mem.oom_score_adj 826</code></pre> 827 <h2 class="mume-header fontColor">系统内存事件</h2> 828 829 <pre class="font- light" data-info data-role="codeBlock"><code class="fontColor">sys.mem.unspecified 830sys.mem.total 831sys.mem.free 832sys.mem.avaiable 833sys.mem.buffers 834sys.mem.cached 835sys.mem.swap.chard 836sys.mem.active 837sys.mem.inactive 838sys.mem.active.anon 839sys.mem.inactive.anon 840sys.mem.active_file 841sys.mem.inactive_file 842sys.mem.unevictable 843sys.mem.mlocked 844sys.mem.swap.total 845sys.mem.swap.free 846sys.mem.dirty 847sys.mem.writeback 848sys.mem.anon.pages 849sys.mem.mapped 850sys.mem.shmem 851sys.mem.slab 852sys.mem.slab.reclaimable 853sys.mem.slab.unreclaimable 854sys.mem.kernel.stack 855sys.mem.page.tables 856sys.mem.commit.limit 857sys.mem.commited.as 858sys.mem.vmalloc.total 859sys.mem.vmalloc.used 860sys.mem.vmalloc.chunk 861sys.mem.cma.total 862sys.mem.cma.free 863</code></pre> 864 <h2 class="mume-header fontColor">系统虚拟内存事件</h2> 865 866 <pre class="font- light" data-info data-role="codeBlock"><code class="fontColor">sys.virtual.mem.unspecified 867sys.virtual.mem.nr.free.pages 868sys.virtual.mem.nr.alloc.batch 869sys.virtual.mem.nr.inactive.anon 870sys.virtual.mem.nr.active_anon 871sys.virtual.mem.nr.inactive.file 872sys.virtual.mem.nr.active_file 873sys.virtual.mem.nr.unevictable 874sys.virtual.mem.nr.mlock 875sys.virtual.mem.anon.pages 876sys.virtual.mem.nr.mapped 877sys.virtual.mem.nr.file.pages 878sys.virtual.mem.nr.dirty 879sys.virtual.mem.nr.writeback 880sys.virtual.mem.nr.slab.reclaimable 881sys.virtual.mem.nr.slab.unreclaimable 882sys.virtual.mem.nr.page_table.pages 883sys.virtual.mem.nr_kernel.stack 884sys.virtual.mem.nr.overhead 885sys.virtual.mem.nr.unstable 886sys.virtual.mem.nr.bounce 887sys.virtual.mem.nr.vmscan.write 888sys.virtual.mem.nr.vmscan.immediate.reclaim 889sys.virtual.mem.nr.writeback_temp 890sys.virtual.mem.nr.isolated_anon 891sys.virtual.mem.nr.isolated_file 892sys.virtual.mem.nr.shmem 893sys.virtual.mem.nr.dirtied 894sys.virtual.mem.nr.written 895sys.virtual.mem.nr.pages.scanned 896sys.virtual.mem.workingset.refault 897sys.virtual.mem.workingset.activate 898sys.virtual.mem.workingset_nodereclaim 899sys.virtual.mem.nr_anon.transparent.hugepages 900sys.virtual.mem.nr.free_cma 901sys.virtual.mem.nr.swapcache 902sys.virtual.mem.nr.dirty.threshold 903sys.virtual.mem.nr.dirty.background.threshold 904sys.virtual.mem.vmeminfo.pgpgin 905sys.virtual.mem.pgpgout 906sys.virtual.mem.pgpgoutclean 907sys.virtual.mem.pswpin 908sys.virtual.mem.pswpout 909sys.virtual.mem.pgalloc.dma 910sys.virtual.mem.pgalloc.normal 911sys.virtual.mem.pgalloc.movable 912sys.virtual.mem.pgfree 913sys.virtual.mem.pgactivate 914sys.virtual.mem.pgdeactivate 915sys.virtual.mem.pgfault 916sys.virtual.mem.pgmajfault 917sys.virtual.mem.pgrefill.dma 918sys.virtual.mem.pgrefill.normal 919sys.virtual.mem.pgrefill.movable 920sys.virtual.mem.pgsteal.kswapd.dma 921sys.virtual.mem.pgsteal.kswapd.normal 922sys.virtual.mem.pgsteal.kswapd.movable 923sys.virtual.mem.pgsteal.direct.dma 924sys.virtual.mem.pgsteal.direct.normal 925sys.virtual.mem.pgsteal_direct.movable 926sys.virtual.mem.pgscan.kswapd.dma 927sys.virtual.mem.pgscan_kswapd.normal 928sys.virtual.mem.pgscan.kswapd.movable 929sys.virtual.mem.pgscan.direct.dma 930sys.virtual.mem.pgscan.direct.normal 931sys.virtual.mem.pgscan.direct.movable 932sys.virtual.mem.pgscan.direct.throttle 933sys.virtual.mem.pginodesteal 934sys.virtual.mem.slabs_scanned 935sys.virtual.mem.kswapd.inodesteal 936sys.virtual.mem.kswapd.low.wmark.hit.quickly 937sys.virtual.mem.high.wmark.hit.quickly 938sys.virtual.mem.pageoutrun 939sys.virtual.mem.allocstall 940sys.virtual.mem.pgrotated 941sys.virtual.mem.drop.pagecache 942sys.virtual.mem.drop.slab 943sys.virtual.mem.pgmigrate.success 944sys.virtual.mem.pgmigrate.fail 945sys.virtual.mem.compact.migrate.scanned 946sys.virtual.mem.compact.free.scanned 947sys.virtual.mem.compact.isolated 948sys.virtual.mem.compact.stall 949sys.virtual.mem.compact.fail 950sys.virtual.mem.compact.success 951sys.virtual.mem.compact.daemon.wake 952sys.virtual.mem.unevictable.pgs.culled 953sys.virtual.mem.unevictable.pgs.scanned 954sys.virtual.mem.unevictable.pgs.rescued 955sys.virtual.mem.unevictable.pgs.mlocked 956sys.virtual.mem.unevictable.pgs.munlocked 957sys.virtual.mem.unevictable.pgs.cleared 958sys.virtual.mem.unevictable.pgs.stranded 959sys.virtual.mem.nr.zspages 960sys.virtual.mem.nr.ion.heap 961sys.virtual.mem.nr.gpu.heap 962sys.virtual.mem.allocstall.dma 963sys.virtual.mem.allocstall.movable 964sys.virtual.mem.allocstall.normal 965sys.virtual.mem.compact_daemon.free.scanned 966sys.virtual.mem.compact.daemon.migrate.scanned 967sys.virtual.mem.nr.fastrpc 968sys.virtual.mem.nr.indirectly.reclaimable 969sys.virtual.mem.nr_ion_heap_pool 970sys.virtual.mem.nr.kernel_misc.reclaimable 971sys.virtual.mem.nr.shadow_call.stack_bytes 972sys.virtual.mem.nr.shmem.hugepages 973sys.virtual.mem.nr.shmem.pmdmapped 974sys.virtual.mem.nr.unreclaimable.pages 975sys.virtual.mem.nr.zone.active.anon 976sys.virtual.mem.nr.zone.active.file 977ys.virtual.mem.nr.zone.inactive_anon 978sys.virtual.mem.nr.zone.inactive_file 979sys.virtual.mem.nr.zone.unevictable 980sys.virtual.mem.nr.zone.write_pending 981sys.virtual.mem.oom.kill 982sys.virtual.mem.pglazyfree 983sys.virtual.mem.pglazyfreed 984sys.virtual.mem.pgrefill 985sys.virtual.mem.pgscan.direct 986sys.virtual.mem.pgscan.kswapd 987sys.virtual.mem.pgskip.dma 988sys.virtual.mem.pgskip.movable 989sys.virtual.mem.pgskip.normal 990sys.virtual.mem.pgsteal.direct 991sys.virtual.mem.pgsteal.kswapd 992sys.virtual.mem.swap.ra 993sys.virtual.mem.swap.ra.hit 994</code></pre> 995 </div> 996 <script type="text/javascript"> 997 window.onload = () => { 998 let isDark = window.location.search; 999 if (isDark.indexOf('?') !== -1) { 1000 isDark = isDark.substr(1, isDark.length - 1); 1001 } 1002 if (isDark === 'true') { 1003 document.getElementById('body').setAttribute('style', 'background-color:#272C34;'); 1004 let header = document.getElementsByClassName('fontColor'); 1005 for (let i = 0; i < header.length; i++) { 1006 header[i].style.color = '#fff'; 1007 } 1008 let lightBackGround = document.getElementsByClassName('light'); 1009 for (let i = 0; i < lightBackGround.length; i++) { 1010 lightBackGround[i].style.backgroundColor = '#32373F'; 1011 } 1012 } 1013 }; 1014 </script> 1015 </body> 1016</html> 1017