| /openbmc/phosphor-webui/app/server-control/controllers/ |
| H A D | virtual-media-controller.js | 243 var view = new DataView(resp, 0, 10); 246 view.setUint32(0, Math.floor(size / (2 ** 32))); 247 view.setUint32(4, size & 0xffffffff); 249 view.setUint16(8, NBD_FLAG_HAS_FLAGS | NBD_FLAG_READ_ONLY); 259 var view = new DataView(resp, 0, 20); 260 view.setUint32(0, 0x0003e889); 261 view.setUint32(4, 0x045565a9); 262 view.setUint32(8, opt); 263 view.setUint32(12, NBD_REP_ERR_UNSUP); 264 view.setUint32(16, 0); [all …]
|
| /openbmc/webui-vue/src/utilities/ |
| H A D | NBDServer.js | 157 var view = new DataView(resp, 0, 10); 160 view.setUint32(0, size >>> 32); 161 view.setUint32(4, size & 0xffffffff); 163 view.setUint16(8, NBD_FLAG_HAS_FLAGS | NBD_FLAG_READ_ONLY); 185 var view = new DataView(resp, 0, 16); 186 view.setUint32(0, 0x67446698); 187 view.setUint32(4, rc); 188 view.setUint32(8, req.handle_msB); 189 view.setUint32(12, req.handle_lsB); 197 var view = new DataView(buf, 0, 28); [all …]
|
| /openbmc/openbmc/poky/meta/recipes-devtools/clang/clang/ |
| H A D | 0017-clang-Use-python3-in-python-scripts.patch | 13 clang/tools/scan-view/bin/scan-view | 2 +- 26 diff --git a/clang/tools/scan-view/bin/scan-view b/clang/tools/scan-view/bin/scan-view 28 --- a/clang/tools/scan-view/bin/scan-view 29 +++ b/clang/tools/scan-view/bin/scan-view
|
| /openbmc/qemu/system/ |
| H A D | memory.c | 232 #define FOR_EACH_FLAT_RANGE(var, view) \ argument 233 for (var = (view)->ranges; var < (view)->ranges + (view)->nr; ++var) 263 FlatView *view; in flatview_new() local 265 view = g_new0(FlatView, 1); in flatview_new() 266 view->ref = 1; in flatview_new() 267 view->root = mr_root; in flatview_new() 269 trace_flatview_new(view, mr_root); in flatview_new() 271 return view; in flatview_new() 277 static void flatview_insert(FlatView *view, unsigned pos, FlatRange *range) in flatview_insert() argument 279 if (view->nr == view->nr_allocated) { in flatview_insert() [all …]
|
| H A D | memory-internal.h | 29 void flatview_unref(FlatView *view);
|
| H A D | trace-events | 26 flatview_new(void *view, void *root) "%p (root %p)" 27 flatview_destroy(void *view, void *root) "%p (root %p)" 28 flatview_destroy_rcu(void *view, void *root) "%p (root %p)"
|
| /openbmc/openbmc/poky/meta/recipes-kernel/lttng/babeltrace2/ |
| H A D | 0001-tests-fix-test-applications-in-cpp-common.patch | 10 make[3]: *** No rule to make target 'cpp-common/test-c-string-view.cpp', 11 needed by 'cpp-common/test-c-string-view.o'. 13 needed by 'cpp-common/test-c-string-view'. 15 needed by 'cpp-common/test-c-string-view'. 17 needed by 'cpp-common/test-c-string-view'. 33 tests/cpp-common/test-c-string-view.sh | 17 +++++++++++++++++ 37 create mode 100755 tests/cpp-common/test-c-string-view.sh 49 - cpp-common/test-c-string-view \ 52 + cpp-common/test-c-string-view.sh \ 58 diff --git a/tests/cpp-common/test-c-string-view.sh b/tests/cpp-common/test-c-string-view.sh [all …]
|
| /openbmc/qemu/include/hw/xen/interface/hvm/ |
| H A D | hvm_op.h | 26 uint16_t view; member 34 uint16_t view; member 237 uint16_t view; member 246 uint16_t view; member 259 uint16_t view; member 271 uint16_t view; member 288 uint16_t view; member 350 struct xen_hvm_altp2m_view view; member
|
| /openbmc/openbmc/poky/bitbake/lib/toaster/toastermain/ |
| H A D | logs.py | 12 def log_api_request(request, response, view, logger_name='api'): argument 16 'view': view, 28 def log_view_mixin(view): argument 40 response = view(*args, **kwargs)
|
| /openbmc/u-boot/scripts/kconfig/ |
| H A D | gconf.c | 225 GtkTreeView *view = GTK_TREE_VIEW(tree1_w); in init_left_tree() local 230 gtk_tree_view_set_model(view, model1); in init_left_tree() 231 gtk_tree_view_set_headers_visible(view, TRUE); in init_left_tree() 232 gtk_tree_view_set_rules_hint(view, TRUE); in init_left_tree() 235 gtk_tree_view_append_column(view, column); in init_left_tree() 256 sel = gtk_tree_view_get_selection(view); in init_left_tree() 267 GtkTreeView *view = GTK_TREE_VIEW(tree2_w); in init_right_tree() local 273 gtk_tree_view_set_model(view, model2); in init_right_tree() 274 gtk_tree_view_set_headers_visible(view, TRUE); in init_right_tree() 275 gtk_tree_view_set_rules_hint(view, TRUE); in init_right_tree() [all …]
|
| /openbmc/webui-vue/src/components/Global/ |
| H A D | InputPasswordToggle.vue | 11 <icon-view-off v-if="isVisible" /> 12 <icon-view v-else /> 19 import IconView from '@carbon/icons-vue/es/view/20'; 20 import IconViewOff from '@carbon/icons-vue/es/view--off/20';
|
| /openbmc/openbmc/poky/bitbake/lib/bb/fetch2/ |
| H A D | npm.py | 215 view = json.loads(view_string) 217 error = view.get("error") 225 elif ud.version != view.get("version"): 228 return view 233 def _get_url(view): argument 234 tarball_url = view.get("dist", {}).get("tarball") 242 integrity = view.get("dist", {}).get("integrity") 243 shasum = view.get("dist", {}).get("shasum")
|
| /openbmc/openbmc/poky/scripts/contrib/bb-perf/ |
| H A D | bb-matrix-plot.sh | 112 set view 90,0 116 set view 90,90 120 set view 60,30
|
| /openbmc/openbmc/meta-openembedded/meta-networking/recipes-protocols/net-snmp/files/ |
| H A D | snmpd.conf | 83 view all included .1 80 84 view system included .iso.org.dod.internet.mgmt.mib-2.system
|
| /openbmc/qemu/hw/misc/ |
| H A D | mips_itu.c | 380 ITCView view = get_itc_view(addr); in itc_storage_read() local 391 switch (view) { in itc_storage_read() 415 "itc_storage_read: Bad ITC View %d\n", (int)view); in itc_storage_read() 427 ITCView view = get_itc_view(addr); in itc_storage_write() local 437 switch (view) { in itc_storage_write() 467 "itc_storage_write: Bad ITC View %d\n", (int)view); in itc_storage_write()
|
| /openbmc/webui-vue/src/layouts/ |
| H A D | ConsoleLayout.vue | 2 <router-view />
|
| H A D | AppLayout.vue | 11 <router-view ref="routerView" :key="routerKey" /> 76 // a component re-rendering and 'refresh' the view
|
| /openbmc/pldm/tools/visualize-pdr/ |
| H A D | README.md | 7 view. 10 from the BMC and can parse them to display a full view of available PDR's on
|
| /openbmc/openbmc-test-automation/gui/gui_test/overview_menu/ |
| H A D | test_overview_menu.robot | 137 [Documentation] Verify view more event log button in overview page. 195 [Documentation] Verify view more button for dumps button in overview page. 204 [Documentation] Verify view more button under server information section in overview page. 213 [Documentation] Verify view more button under firmware information section in overview page. 222 [Documentation] Verify view more button under network information section in overview page. 231 [Documentation] Verify view more button under power information section in overview page. 240 [Documentation] Verify view more button under event logs section in overview page. 249 [Documentation] Verify view more button under inventory and leds section in overview page.
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/hexedit/ |
| H A D | hexedit_1.6.bb | 1 SUMMARY = "view and edit files in hexadecimal or in ASCII"
|
| /openbmc/openbmc/poky/meta/recipes-core/glibc/ |
| H A D | glibc_2.41.bb | 4 # glibc https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-1010022 5 # glibc https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-1010023 6 # glibc https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-1010024 13 # glibc https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-1010025
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/utouch/ |
| H A D | utouch-mtview_git.bb | 2 DESCRIPTION = "mtview is a small X application that shows a graphical view of your MT-enabled hardw…
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/hstr/ |
| H A D | hstr_3.1.0.bb | 1 SUMMARY = "bash and zsh shell history suggest box - easily view, navigate, search and manage your c…
|
| /openbmc/qemu/docs/specs/ |
| H A D | ppc-xive.rst | 147 (TIMA), four aligned pages, each exposing a different view of the 149 to the entire context and is reserved for the ring 0 view for the 151 is for the hypervisor, ring 1 view. The third (page address ending in 152 ``0b10``) is for the operating system, ring 2 view. The fourth (page 153 address ending in ``0b11``) is for user level, ring 3 view.
|
| /openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/macchanger/ |
| H A D | macchanger_1.7.0.bb | 1 SUMMARY = "Tool to view/change network interface MAC addresses"
|