Home
last modified time | relevance | path

Searched refs:ws (Results 1 – 25 of 38) sorted by relevance

12

/openbmc/qemu/target/mips/tcg/
H A Dmsa.decode16 &msa_r df wd ws wt
19 &msa_i df wd ws sa
20 &msa_bit df wd ws m
21 &msa_elm_df df wd ws n
22 &msa_elm wd ws
33 @ldst ...... sa:s10 ws:5 wd:5 .... df:2 &msa_i
36 @elm_df ...... .... ...... ws:5 wd:5 ...... &msa_elm_df df=%elm_df n=%elm_n
37 @elm ...... .......... ws:5 wd:5 ...... &msa_elm
38 @vec ...... ..... wt:5 ws:5 wd:5 ...... &msa_r df=0
39 @2r ...... ........ df:2 ws:5 wd:5 ...... &msa_r wt=0
[all …]
H A Dmsa_helper.c99 void helper_msa_nloc_b(CPUMIPSState *env, uint32_t wd, uint32_t ws) in helper_msa_nloc_b() argument
102 wr_t *pws = &(env->active_fpu.fpr[ws].wr); in helper_msa_nloc_b()
122 void helper_msa_nloc_h(CPUMIPSState *env, uint32_t wd, uint32_t ws) in helper_msa_nloc_h() argument
125 wr_t *pws = &(env->active_fpu.fpr[ws].wr); in helper_msa_nloc_h()
137 void helper_msa_nloc_w(CPUMIPSState *env, uint32_t wd, uint32_t ws) in helper_msa_nloc_w() argument
140 wr_t *pws = &(env->active_fpu.fpr[ws].wr); in helper_msa_nloc_w()
148 void helper_msa_nloc_d(CPUMIPSState *env, uint32_t wd, uint32_t ws) in helper_msa_nloc_d() argument
151 wr_t *pws = &(env->active_fpu.fpr[ws].wr); in helper_msa_nloc_d()
157 void helper_msa_nlzc_b(CPUMIPSState *env, uint32_t wd, uint32_t ws) in helper_msa_nlzc_b() argument
160 wr_t *pws = &(env->active_fpu.fpr[ws].wr); in helper_msa_nlzc_b()
[all …]
H A Dmsa_translate.c293 tcg_constant_i32(a->ws), in trans_msa_i8()
320 tcg_constant_i32(a->ws), in trans_SHF()
336 tcg_constant_i32(a->ws), in trans_msa_i5()
382 tcg_constant_i32(a->ws), in trans_msa_bit()
411 tcg_constant_i32(a->ws), in trans_msa_3rf()
430 tcg_constant_i32(a->ws), in trans_msa_3r()
524 tcg_constant_i32(a->ws)); in trans_MOVE_V()
539 gen_load_gpr(telm, a->ws); in trans_CTCMSA()
555 gen_helper_msa_cfcmsa(telm, tcg_env, tcg_constant_i32(a->ws)); in trans_CFCMSA()
575 tcg_constant_i32(a->ws), in trans_msa_elm()
[all …]
/openbmc/openbmc/poky/meta/recipes-support/libpcre/libpcre/
H A DMakefile88 ws='[ ]'; \
91 all=` grep "^$$ws*:test-result:" $$results | wc -l`; \
92 pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \
93 fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \
94 skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \
95 xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \
96 xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \
97 error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \
/openbmc/webui-vue/src/utilities/
H A DNBDServer.js41 this.ws = null;
45 this.ws = new WebSocket(this.endpoint, [token]);
47 this.ws.binaryType = 'arraybuffer';
48 this.ws.onmessage = this._on_ws_message.bind(this);
49 this.ws.onopen = this._on_ws_open.bind(this);
50 this.ws.onclose = this._on_ws_close.bind(this);
51 this.ws.onerror = this._on_ws_error.bind(this);
55 if (this.ws.readyState == 1) {
56 this.ws.close();
128 this.ws.send(buf);
[all …]
/openbmc/phosphor-webui/app/server-control/controllers/
H A Dvirtual-media-controller.js61 if (existingConnectionsMap[vmDevice.id].server.ws.readyState === 1) {
109 this.ws = null;
114 this.ws = new WebSocket(this.endpoint, [token]);
116 this.ws.binaryType = 'arraybuffer';
117 this.ws.onmessage = this._on_ws_message.bind(this);
118 this.ws.onopen = this._on_ws_open.bind(this);
119 this.ws.onclose = this._on_ws_close.bind(this);
120 this.ws.onerror = this._on_ws_error.bind(this);
124 this.ws.close();
205 this.ws.send(buf);
[all …]
/openbmc/bmcweb/http/
H A Dwebsocket_impl.hpp62 uri(urlViewIn), ws(std::move(adaptorIn)), inBuffer(inString, 131088), in ConnectionImpl()
70 ws.set_option(boost::beast::websocket::stream_base::timeout::suggested( in ConnectionImpl()
83 ws.set_option(boost::beast::websocket::stream_base::decorator( in start()
123 ws.async_accept(*ptr, in start()
130 ws.binary(true); in sendBinary()
146 ws.binary(type == MessageType::Binary); in sendEx()
148 ws.async_write(boost::asio::buffer(msg), in sendEx()
173 ws.text(true); in sendText()
181 ws.async_close( in close()
261 std::string reason{ws.reason().reason.c_str()}; in afterRead()
[all …]
/openbmc/phosphor-webui/app/common/directives/
H A Dapp-header.js25 var ws = new WebSocket(
31 if (ws !== undefined) {
39 ws.onopen = function() {
40 ws.send(data); field in AnonymousFunction0661d1e80200.AnonymousClass0661d1e80801
45 ws.onclose = function() {
51 ws.onmessage = function(evt) {
H A Dserial-console.js165 var ws = new WebSocket(host, [token]);
166 term.attach(ws);
167 ws.onopen = function() {
170 ws.onclose = function(event) {
/openbmc/webui-vue/src/views/Operations/SerialOverLan/
H A DSerialOverLanConsole.vue98 this.ws = new WebSocket(`wss://${window.location.host}/console/default`, [
111 const attachAddon = new AttachAddon(this.ws);
133 this.ws.onopen = function () {
136 this.ws.onclose = function (event) {
152 this.ws.close();
153 this.ws = null;
/openbmc/openbmc/meta-openembedded/meta-webserver/recipes-webadmin/cockpit/
H A Dcockpit_337.bb63 ${PN}-ws \
66 SYSTEMD_PACKAGES = "${PN}-ws"
120 FILES:${PN}-ws = " \
121 ${sysconfdir}/cockpit/ws-certs.d \
148 ${libexecdir}/cockpit-ws \
156 CONFFILES:${PN}-ws += " \
160 RDEPENDS:${PN}-ws += "openssl-bin"
161 SYSTEMD_SERVICE:${PN}-ws = "cockpit.socket"
/openbmc/qemu/linux-user/xtensa/
H A Dsignal.c68 uint32_t ws = xtensa_replicate_windowstart(env) >> (wb + 1); in flush_window_regs() local
69 unsigned d = ctz32(ws) + 1; in flush_window_regs()
77 ws >>= d; in flush_window_regs()
80 if (ws & 0x1) { in flush_window_regs()
83 } else if (ws & 0x2) { in flush_window_regs()
88 } else if (ws & 0x4) { in flush_window_regs()
/openbmc/qemu/tests/unit/
H A Dtest-bdrv-graph-mod.c351 BlockDriverState *ws = in test_parallel_perm_update() local
354 BDRVWriteToSelectedState *s = ws->opaque; in test_parallel_perm_update()
367 bdrv_attach_child(top, ws, "file", &child_of_bds, BDRV_CHILD_DATA, in test_parallel_perm_update()
369 c_fl1 = bdrv_attach_child(ws, fl1, "first", &child_of_bds, in test_parallel_perm_update()
371 c_fl2 = bdrv_attach_child(ws, fl2, "second", &child_of_bds, in test_parallel_perm_update()
/openbmc/phosphor-webui/app/common/services/
H A Dapi-utils.js127 ws.close();
131 var ws = new WebSocket(
137 ws.onopen = function() {
138 ws.send(data);
140 ws.onmessage = function(evt) {
145 ws.close();
149 ws.close();
162 ws.close();
167 var ws = new WebSocket(
173 ws.onopen = function() {
[all …]
/openbmc/docs/
H A Drest-api.md350 var ws = new WebSocket("wss://<BMC IP>/subscribe");
378 ws.onopen = function () {
379 ws.send(data);
387 ws.onopen = function () {
388 ws.send(data);
399 ws.onopen = function () {
400 ws.send(data);
406 ws.onopen = function () {
407 ws.send(data);
/openbmc/openbmc/poky/meta/recipes-extended/sudo/
H A Dsudo.inc3 HOMEPAGE = "http://www.sudo.ws"
4 BUGTRACKER = "http://www.sudo.ws/bugs/"
H A Dsudo_1.9.16p2.bb3 SRC_URI = "https://www.sudo.ws/dist/sudo-${PV}.tar.gz \
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-protocols/nopoll/
H A Dnopoll_0.4.6.b400.bb6 noPoll provides support for WebSocket (ws://) and TLS (secure) WebSocket (wss://),\
/openbmc/openbmc/meta-openembedded/meta-multimedia/recipes-multimedia/alsa-equal/alsa-equal/
H A D0001-Fix-asneeded.patch8 https://git.backbone.ws/portage/overlay/commit/7a069112054fbb5dc94a857e9c020a38cb1c6fde
H A D0003-Fix-mixer.patch8 https://git.backbone.ws/portage/overlay/commit/7a069112054fbb5dc94a857e9c020a38cb1c6fde
H A D0002-Fix-Eq-CAPS-plugin-name.patch8 https://git.backbone.ws/portage/overlay/commit/7a069112054fbb5dc94a857e9c020a38cb1c6fde
/openbmc/qemu/io/
H A Dchannel-websock.c623 QIOChannelWebsockHeader ws; in qio_channel_websock_encode() member
628 header.ws.b0 = QIO_CHANNEL_WEBSOCK_HEADER_FIELD_FIN | in qio_channel_websock_encode()
631 header.ws.b1 = (uint8_t)size; in qio_channel_websock_encode()
634 header.ws.b1 = QIO_CHANNEL_WEBSOCK_PAYLOAD_LEN_MAGIC_16_BIT; in qio_channel_websock_encode()
635 header.ws.u.s16.l16 = cpu_to_be16((uint16_t)size); in qio_channel_websock_encode()
638 header.ws.b1 = QIO_CHANNEL_WEBSOCK_PAYLOAD_LEN_MAGIC_64_BIT; in qio_channel_websock_encode()
639 header.ws.u.s64.l64 = cpu_to_be64(size); in qio_channel_websock_encode()
/openbmc/qemu/ui/
H A Dcurses.c160 } ws; in curses_winch_check() local
167 if (ioctl(1, TIOCGWINSZ, &ws) == -1) { in curses_winch_check()
171 resize_term(ws.ws_row, ws.ws_col); in curses_winch_check()
/openbmc/qemu/contrib/gitdm/
H A Daliases24 aliguori@c046a42c-6fe2-441c-8c8c-71466251a162 anthony@codemonkey.ws
/openbmc/u-boot/drivers/mtd/nand/raw/
H A Domap_gpmc.c47 uint8_t ws; /* wait status pin (0,1) */ member
89 return gpmc_cfg->status & (1 << (8 + info->ws)); in omap_dev_ready()
997 omap_nand_info[cs].ws = wscfg[cs]; in board_nand_init()

12