-
Notifications
You must be signed in to change notification settings - Fork 437
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
switch to threelist for field struct
Change-Id: Icc1abf64c271b8e24afe3cfe229b4981b89d5821
- Loading branch information
1 parent
9225960
commit 3247012
Showing
7 changed files
with
90 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 7 additions & 5 deletions
12
analysis/kernel/dashboard/frontend/src/views/struct/struct-alloc.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
<a class="struct-alloc-cache" href> </a> | ||
<div class="struct-alloc-call"> </div> | ||
<a class="struct-alloc-link" title href> </a> | ||
<div class="struct-alloc-metadata"> | ||
(<span class="struct-alloc-syscalls-num"> </span> syscalls) | ||
<div class="struct-alloc-container" role="row"> | ||
<div class="struct-alloc-cache" role="cell"><a href> </a></div> | ||
<div class="struct-alloc-call" role="cell"> </div> | ||
<div class="struct-alloc-link" role="cell"><a title href> </a></div> | ||
<div class="struct-alloc-metadata" role="cell"> | ||
(<span class="struct-alloc-syscalls-num"> </span> syscalls) | ||
</div> | ||
</div> |
11 changes: 6 additions & 5 deletions
11
analysis/kernel/dashboard/frontend/src/views/struct/struct-entry.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
<label class="struct-entry"> | ||
<a class="struct-name" href> </a> | ||
<div class="struct-metadata"> | ||
(<span class="struct-alloc-num"> </span> allocations) | ||
<label class="struct-entry" role="row"> | ||
<div class="struct-entry-container" role="rowheader" aria-rowspan> | ||
<div class="struct-name"><a href> </a></div> | ||
<div class="struct-metadata"> | ||
(<span class="struct-alloc-num"> </span> allocations) | ||
</div> | ||
</div> | ||
<input type="checkbox" checked> | ||
</label> | ||
<div class="struct-alloc"></div> |
2 changes: 1 addition & 1 deletion
2
analysis/kernel/dashboard/frontend/src/views/struct/struct-list.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<div class="struct-list"></div> | ||
<div class="struct-list" role="table"></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters