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