| /developtools/profiler/host/smartperf/ide/server/ |
| D | main.go | 55 return func(w http.ResponseWriter, r *http.Request) { 59 w.Header().Add("Cross-Origin-Opener-Policy", "same-origin") 60 w.Header().Add("Cross-Origin-Embedder-Policy", "require-corp") 61 w.Header().Set("Access-Control-Allow-Origin", "*") 62 w.Header().Set("Access-Control-Allow-Credentials", "true") 63 … w.Header().Set("Access-Control-Allow-Headers", "x-requested-with, authorization, blade-auth") //* 64 … w.Header().Set("Access-Control-Allow-Methods", "*") //* 65 w.Header().Set("Access-Control-Max-Age", "3600") 66 w.Header().Set("data-version", version) 67 fs.ServeHTTP(w, r) [all …]
|
| /developtools/smartperf_host/ide/server/ |
| D | main.go | 55 return func(w http.ResponseWriter, r *http.Request) { 59 w.Header().Add("Cross-Origin-Opener-Policy", "same-origin") 60 w.Header().Add("Cross-Origin-Embedder-Policy", "require-corp") 61 w.Header().Set("Access-Control-Allow-Origin", "*") 62 w.Header().Set("Access-Control-Allow-Credentials", "true") 63 … w.Header().Set("Access-Control-Allow-Headers", "x-requested-with, authorization, blade-auth") //* 64 … w.Header().Set("Access-Control-Allow-Methods", "*") //* 65 w.Header().Set("Access-Control-Max-Age", "3600") 66 w.Header().Set("data-version", version) 67 fs.ServeHTTP(w, r) [all …]
|
| /developtools/hdc/src/common/ |
| D | base.h | 120 inline string &RightTrim(string &s, const string &w = WHITE_SPACES) 122 s.erase(s.find_last_not_of(w) + 1); 127 inline string &LeftTrim(string &s, const string &w = WHITE_SPACES) 129 s.erase(0, s.find_first_not_of(w)); 134 inline string &Trim(string &s, const string &w = WHITE_SPACES) 136 return LeftTrim(RightTrim(s, w), w);
|
| /developtools/profiler/host/smartperf/ide/src/base-ui/chart/column/ |
| D | LitChartColumn.ts | 30 w: number; 36 w: number; 225 w: partWidth, 236 w: partWidth - partWidth / 3, 285 w: partWidth, 297 w: partWidth - partWidth / 3, 348 c.fillRect(it.bgFrame!.x, it.bgFrame!.y, it.bgFrame!.w, it.bgFrame!.h); 355 c.fillRect(it.frame!.x, it.frame!.y + (it.frame!.h - it.height!), it.frame!.w, it.height!); 358 c.fillRect(it.frame!.x, it.frame!.y, it.frame!.w, it.frame!.h); 362 c.fillRect(it.frame!.x, it.frame!.y, it.frame!.w, it.frame!.h); [all …]
|
| /developtools/smartperf_host/ide/src/base-ui/chart/column/ |
| D | LitChartColumn.ts | 30 w: number; 36 w: number; 225 w: partWidth, 236 w: partWidth - partWidth / 3, 285 w: partWidth, 297 w: partWidth - partWidth / 3, 348 c.fillRect(it.bgFrame!.x, it.bgFrame!.y, it.bgFrame!.w, it.bgFrame!.h); 355 c.fillRect(it.frame!.x, it.frame!.y + (it.frame!.h - it.height!), it.frame!.w, it.height!); 358 c.fillRect(it.frame!.x, it.frame!.y, it.frame!.w, it.frame!.h); 362 c.fillRect(it.frame!.x, it.frame!.y, it.frame!.w, it.frame!.h); [all …]
|
| /developtools/smartperf_host/trace_streamer/src/protos/types/plugins/diskio_data/ |
| D | diskio_plugin_result.proto | 48 uint64 io_rsectors = 3; // kB/s, r+w+d 54 uint64 io_wr = 8; // w/s 55 uint64 io_wsectors = 9; // wkB/s , r+w+d 62 uint64 io_dsectors = 15; // dkB/s, r+w+d
|
| /developtools/profiler/protos/types/plugins/diskio_data/ |
| D | diskio_plugin_result.proto | 48 uint64 io_rsectors = 3; // kB/s, r+w+d 54 uint64 io_wr = 8; // w/s 55 uint64 io_wsectors = 9; // wkB/s , r+w+d 62 uint64 io_dsectors = 15; // dkB/s, r+w+d
|
| /developtools/profiler/host/smartperf/trace_streamer/src/protos/types/plugins/diskio_data/ |
| D | diskio_plugin_result.proto | 48 uint64 io_rsectors = 3; // kB/s, r+w+d 54 uint64 io_wr = 8; // w/s 55 uint64 io_wsectors = 9; // wkB/s , r+w+d 62 uint64 io_dsectors = 15; // dkB/s, r+w+d
|
| /developtools/profiler/host/smartperf/ide/src/base-ui/chart/pie/ |
| D | LitChartPie.ts | 25 w: number; property 325 w: textWidth, 385 let maxX = r1.x + r1.w > rect.x + rect.w ? r1.x + r1.w : rect.x + rect.w; 389 if (maxX - minX < rect.w + r1.w && maxY - minY < r1.h + rect.h) { 394 crossW = Math.abs(maxX - minX - (rect.w + r1.w));
|
| /developtools/smartperf_host/ide/src/base-ui/chart/pie/ |
| D | LitChartPie.ts | 25 w: number; property 329 w: textWidth, 389 let maxX = r1.x + r1.w > rect.x + rect.w ? r1.x + r1.w : rect.x + rect.w; 393 if (maxX - minX < rect.w + r1.w && maxY - minY < r1.h + rect.h) { 398 crossW = Math.abs(maxX - minX - (rect.w + r1.w));
|
| /developtools/global_resource_tool/src/ |
| D | resource_check.cpp | 131 unsigned int w; in GetPngWidthAndHeight() local 133 png_get_IHDR(pngHandle, infoHandle, &w, &h, nullptr, nullptr, nullptr, nullptr, nullptr); in GetPngWidthAndHeight() 134 *width = w; in GetPngWidthAndHeight()
|
| /developtools/ace_js2bundle/ace-loader/test/card/testcase/pages/exteriorStyle/ |
| D | exteriorStyle.css | 63 #w {
|
| /developtools/profiler/device/plugins/ftrace_plugin/src/ |
| D | process_utils.cpp | 199 pid_t w = waitpid(pid, &wstatus, 0); in GetProcessExitCode() local 200 CHECK_TRUE(w > 0, -1, "waitpid failed, %d!", errno); in GetProcessExitCode()
|
| /developtools/profiler/host/smartperf/doc/ |
| D | quickstart_smartperf.md | 16 + 操作说明:在当前页面可以通过键盘上的wasd四个键位操纵当前的时间轴进行缩放,w放大,s为缩小,a为左移,d为右移。
|
| /developtools/integration_verification/cases/smoke/basic/screenshot32/APL_compare_03/ |
| D | readme.md | 41 `IS_OVERWRITE`:是否覆盖之前的APL日志,w表示覆盖,a表示追加
|
| /developtools/profiler/host/smartperf/ide/src/doc/md/ |
| D | quickstart_page_fault.md | 27 按住w键放大界面,悬浮框会显示当前时刻的事件发生次数。
|
| D | quickstart_hiperf.md | 32 按住w键放大界面,泳道图会出现P的标志,鼠标移动到P图标上,悬浮框会显示每个callstack和调用的深度如下图。
|
| D | quickstart_systemtrace.md | 14 + 操作说明:在当前页面可以通过键盘上的wasd四个键位操纵当前的时间轴进行缩放,w为放大,s为缩小,a为左移,d为右移。
|
| D | quickstart_filesystem.md | 31 按住w键放大界面,悬浮框会显示当前时刻的文件读写次数。
|
| /developtools/smartperf_host/ide/src/doc/md/ |
| D | quickstart_page_fault.md | 27 按住w键放大界面,悬浮框会显示当前时刻的事件发生次数。
|
| D | quickstart_hiperf.md | 32 按住w键放大界面,泳道图会出现P的标志,鼠标移动到P图标上,悬浮框会显示每个callstack和调用的深度如下图。
|
| D | quickstart_systemtrace.md | 14 + 操作说明:在当前页面可以通过键盘上的wasd四个键位操纵当前的时间轴进行缩放,w为放大,s为缩小,a为左移,d为右移。
|
| D | quickstart_filesystem.md | 31 按住w键放大界面,悬浮框会显示当前时刻的文件读写次数。
|
| /developtools/hiperf/test/unittest/common/native/ |
| D | report_test.cpp | 812 struct winsize w = {0, 0, 0, 0}; variable 813 ioctl(fileno(stdout), TIOCGWINSZ, &w); 815 if (w.ws_col != 0) { 816 EXPECT_EQ(report_->consoleWidth_, w.ws_col);
|
| /developtools/hiperf/src/ |
| D | report.cpp | 441 struct winsize w = {0, 0, 0, 0}; in PrepareConsole() 442 ioctl(fileno(stdout), TIOCGWINSZ, &w); in PrepareConsole() 443 consoleWidth_ = static_cast<unsigned int>(w.ws_col); in PrepareConsole()
|