| /openbmc/u-boot/board/freescale/lx2160a/ |
| H A D | README | 89 |Connect Hydra Cable (HDR-198564-01-ECUE) to SD_SLOT1 (J108) 90 |Connect I/O cable to IO_SLOT1(J110) 92 |Connect Hydra Cable (HDR-198564-01-ECUE) to SD_SLOT2 (J111) 93 |Connect I/O cable to IO_SLOT2(J113) 96 |Connect Hydra Cable (HDR-198564-01-ECUE) to SD_SLOT1 (J108) 97 |Connect I/O cable to IO_SLOT1(J110) 99 |Connect Hydra Cable (HDR-198564-01-ECUE) to SD_SLOT2 (J111) 100 |Connect I/O cable to IO_SLOT2(J113) 103 |Connect Hydra Cable (HDR-198564-01-ECUE) to SD_SLOT1 (J108) 104 |Connect I/O cable to IO_SLOT1(J110) [all …]
|
| /openbmc/openbmc/poky/meta/recipes-connectivity/ppp/ppp/ |
| H A D | pap | 1 # You can use this script unmodified to connect to sites which allow 6 # connect "/usr/sbin/chat -v -f /etc/chatscripts/pap -T PHONE-NUMBER" 10 # Uncomment the following line to see the connect speed. 12 #REPORT CONNECT 21 CONNECT ""
|
| /openbmc/openbmc-tools/reboot/ |
| H A D | reboot.sh | 5 CONNECT="$@" 13 ssh ${CONNECT} /usr/sbin/obmcutil --wait poweron 14 time expect petitboot.exp -- ${CONNECT} 15 ssh ${CONNECT} /usr/sbin/obmcutil --wait poweroff
|
| /openbmc/qemu/tests/qemu-iotests/tests/ |
| H A D | nbd-reconnect-on-open.out | 4 Check fail to connect with 0 seconds of timeout 5 qemu-io: can't open: Failed to connect to 'SOCK_DIR/PID-nbd-sock': No such file or directory 8 Check fail to connect with 1 seconds of timeout 9 qemu-io: can't open: Failed to connect to 'SOCK_DIR/PID-nbd-sock': No such file or directory
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-dbs/mysql/mariadb/ |
| H A D | lfs64.patch | 8 storage/connect/os.h | 4 +++- 11 diff --git a/storage/connect/os.h b/storage/connect/os.h 13 --- a/storage/connect/os.h 14 +++ b/storage/connect/os.h
|
| H A D | run-ptest | 3 # test case test-connect is excluded. Becasue this test case need following steps before running. 4 # Without these steps, test case test-connect will fail. 14 # If test-connect is included, please uncomment these lines. 20 ctest --force-new-ctest-process -E test-connect | sed -u 's/\*\*\*/ /g' | awk '/Test +#/{gsub(/Pa…
|
| /openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/nbd/nbd/ |
| H A D | 0001-nbd-client-Fix-build-on-musl-gcc14.patch | 12 | ../nbd-3.26.1/nbd-client.c:345:27: error: passing argument 2 of 'connect' from incompatible point… 13 | 345 | if (connect(sock, &un_addr, sizeof(un_addr)) == -1) { 19 | 386 | int connect (int, const struct sockaddr *, socklen_t); 36 - if (connect(sock, &un_addr, sizeof(un_addr)) == -1) { 37 + if (connect(sock, (struct sockaddr*)&un_addr, sizeof(un_addr)) == -1) { 38 err_nonfatal("CONNECT failed");
|
| /openbmc/openbmc/poky/meta/recipes-multimedia/gstreamer/gst-devtools/ |
| H A D | 0001-connect-has-a-different-signature-on-musl.patch | 4 Subject: [PATCH] connect has a different signature on musl 6 On linux when not using glibc and using musl for C library, connect 26 -connect (int socket, const struct sockaddr_in *addrin, socklen_t address_len) 28 +connect (int socket, const struct sockaddr *addr, socklen_t address_len) 30 +connect (int socket, const struct sockaddr_in *addr, socklen_t address_len)
|
| /openbmc/qemu/hw/arm/ |
| H A D | bcm2838.c | 151 /* Connect the GICv2 outputs to the CPU */ in bcm2838_realize() 165 /* Connect timers from the CPU to the interrupt controller */ in bcm2838_realize() 179 /* Connect UART0 to the interrupt controller */ in bcm2838_realize() 183 /* Connect AUX / UART1 to the interrupt controller */ in bcm2838_realize() 187 /* Connect VC mailbox to the interrupt controller */ in bcm2838_realize() 191 /* Connect SD host to the interrupt controller */ in bcm2838_realize() 198 /* Connect EMMC and EMMC2 to the interrupt controller */ in bcm2838_realize() 202 /* Connect USB OTG and MPHI to the interrupt controller */ in bcm2838_realize() 208 /* Connect DMA 0-6 to the interrupt controller */ in bcm2838_realize() 218 /* Connect DMA 7-8 to the interrupt controller */ in bcm2838_realize() [all …]
|
| H A D | bcm2838_peripherals.c | 109 /* Connect EMMC and EMMC2 to the interrupt controller */ in bcm2838_peripherals_realize() 115 /* Connect DMA 0-6 to the interrupt controller */ in bcm2838_peripherals_realize() 129 /* Connect DMA 7-8 to the interrupt controller */ in bcm2838_peripherals_realize() 146 /* Connect DMA 9-10 to the interrupt controller */ in bcm2838_peripherals_realize() 157 /* Connect DMA 11-14 to the interrupt controller */ in bcm2838_peripherals_realize() 167 * Connect DMA 15 to the interrupt controller, it is physically removed in bcm2838_peripherals_realize()
|
| /openbmc/bmcweb/scripts/ |
| H A D | websocket_test.py | 15 parser.add_argument("--host", help="Host to connect to", required=True) 17 "--username", help="Username to connect with", default="root" 49 websockets.connect(uri, ssl=ssl_context, additional_headers=headers) 51 else websockets.connect(uri, extra_headers=headers)
|
| /openbmc/qemu/python/tests/ |
| H A D | protocol.py | 149 sock.connect(address) 241 # The states we expect a "bad" connect/accept attempt to transition through 292 class Connect(TestBase): class 294 Tests primarily related to calling Connect(). 300 await self.proto.connect(('127.0.0.1', 0)) 302 await self.proto.connect('/dev/null') 306 await self.proto.connect(addr) 403 AFTER a connection is made, i.e., connect()/accept() themselves 420 class Accept(Connect): 422 All of the same tests as Connect, but using the accept() interface. [all …]
|
| /openbmc/openbmc/meta-hpe/meta-common/recipes-hpe/vehci/host-ehci-owner-reset/ |
| H A D | udc-reconnect.sh | 9 echo connect > /sys/class/udc/80401000.udc/soft_connect 20 echo connect > /sys/class/udc/80402000.udc/soft_connect 31 echo connect > /sys/class/udc/80403000.udc/soft_connect
|
| /openbmc/openbmc/poky/scripts/pybootchartgui/pybootchartgui/ |
| H A D | gui.py | 56 self.connect("button-press-event", self.on_area_button_press) 57 self.connect("button-release-event", self.on_area_button_release) 59 self.connect("motion-notify-event", self.on_area_motion_notify) 60 self.connect("scroll-event", self.on_area_scroll_event) 61 self.connect('key-press-event', self.on_key_press_event) 63 self.connect("size-allocate", self.on_allocation_size_changed) 64 self.connect("position-changed", self.on_position_changed) 66 self.connect("draw", self.on_draw) 77 self.vadj.connect('value-changed', self.on_adjustments_changed) 78 self.hadj.connect('value-changed', self.on_adjustments_changed) [all …]
|
| /openbmc/u-boot/scripts/kconfig/ |
| H A D | qconf.cc | 279 connect(this, SIGNAL(editingFinished()), SLOT(hide())); in ConfigLineEdit() 332 connect(this, SIGNAL(itemSelectionChanged(void)), in ConfigList() 342 connect(configApp, SIGNAL(aboutToQuit()), SLOT(saveSettings())); in ConfigList() 888 connect(action, SIGNAL(toggled(bool)), in contextMenuEvent() 890 connect(parent(), SIGNAL(showNameChanged(bool)), in contextMenuEvent() 896 connect(action, SIGNAL(toggled(bool)), in contextMenuEvent() 898 connect(parent(), SIGNAL(showRangeChanged(bool)), in contextMenuEvent() 904 connect(action, SIGNAL(toggled(bool)), in contextMenuEvent() 906 connect(parent(), SIGNAL(showDataChanged(bool)), in contextMenuEvent() 1027 connect(configApp, SIGNAL(aboutToQuit()), SLOT(saveSettings())); in ConfigInfoView() [all …]
|
| /openbmc/boost-dbus/test/ |
| H A D | avahi.py | 22 # Connect to Avahi Daemon's interface: 28 # ServiceBrowser and connect to its interface: 34 # Connect to the ItemNew signal from the browser:
|
| /openbmc/openbmc/poky/bitbake/lib/bb/server/ |
| H A D | xmlrpcclient.py | 85 def connect(self, token = None): member in BitBakeXMLRPCServerConnection 124 # by trying to connect with the server 127 s.connect((host, port)) 135 return connection.connect(token) 137 bb.warn("Could not connect to server at %s:%s (%s)" % (host, port, str(e)))
|
| /openbmc/openbmc/poky/meta/recipes-gnome/gnome/gconf/ |
| H A D | unable-connect-dbus.patch | 3 (gconftool-2.real:10095): GConf-WARNING **: Client failed to connect to the D-BUS daemon: 12 Subject: [PATCH] dbus: Don't spew to console when unable to connect to dbus 60 - g_warning ("Client failed to connect to the D-BUS daemon:\n%s", error.message); 63 + "Client failed to connect to the D-BUS daemon:\n%s",
|
| /openbmc/openbmc/poky/bitbake/lib/bb/asyncrpc/ |
| H A D | client.py | 85 sock.connect(os.path.basename(path)) 116 websocket = await websockets.connect( 124 raise ConnectionError(f"Could not connect to websocket: {exc}") from exc 152 await self.connect() 155 async def connect(self): member in AsyncClient 172 await self.connect() 246 self.loop.run_until_complete(self.client.connect())
|
| /openbmc/sdbusplus/include/sdbusplus/async/stdexec/__detail/ |
| H A D | __senders.hpp | 160 // [execution.senders.connect] 171 using __member_result_t = decltype(__declval<_Sender>().connect(__declval<_Receiver>())); 175 _Sender)::connect(__declval<_Sender>(), __declval<_Receiver>())); 221 static_assert(sender<_Sender>, "The first argument to stdexec::connect must be a sender"); in __select_impl() 223 receiver<_Receiver>, "The second argument to stdexec::connect must be a receiver"); in __select_impl() 234 .connect(__declval<_TfxSender>(), __declval<_Receiver>())); in __select_impl() 241 .connect(__declval<_Receiver>())); in __select_impl() 278 .connect(static_cast<_TfxSender&&>(__tfx_sndr), static_cast<_Receiver&&>(__rcvr)); in operator ()() 281 .connect(static_cast<_Receiver&&>(__rcvr)); in operator ()() 295 .connect(static_cast<_Receiver&&>(__rcvr)); in operator ()() [all …]
|
| /openbmc/qemu/docs/system/ |
| H A D | gdb.rst | 25 QEMU will launch but will silently wait for gdb to connect. 31 In gdb, connect to QEMU:: 97 When you connect gdb to the gdbstub, it will automatically 98 connect to the first inferior; you can display the CPUs in this 103 handle multiple inferiors, and so you have to explicitly connect 104 to them. First, you must connect with the ``extended-remote`` 152 Start gdb as before, but this time connect using the path to 240 clients can connect to it, e.g., by using a unix socket with proper
|
| /openbmc/qemu/python/qemu/machine/ |
| H A D | qtest.py | 52 by the connect() or accept() methods. 83 def connect(self) -> None: member in QEMUQtestProtocol 85 Connect to the qtest socket. 90 self._sock.connect(self._address) 173 self._qtest.connect()
|
| /openbmc/qemu/docs/tools/ |
| H A D | qemu-nbd.rst | 47 TCP port to listen on as a server, or connect to as a client 56 The interface to bind to as a server, or connect to as a client 133 .. option:: -c, --connect=DEV 135 Connect *filename* to NBD device *DEV* (Linux only). 166 Connect as a client and list all details about the exports exposed by 181 the hostname that the NBD client used to connect will be checked 185 to connect to the remote server, the :option:`--tls-hostname` option should 237 and allow clients with a specific X.509 certificate to connect to
|
| /openbmc/openbmc/poky/bitbake/lib/toaster/tests/browser/ |
| H A D | README | 32 appears to have exited before we could connect. If you specified 50 … a vnc server on your machine map a different port e.g. -p 6900:5900 and connect vnc client to 127… 58 * connect to the vnc server to see the tests if you would like 60 ** note, you need to wait for the test container to come up before this can connect.
|
| /openbmc/qemu/include/system/ |
| H A D | spdm-socket.h | 27 * spdm_socket_connect: connect to an external SPDM socket 28 * @port: port to connect to 31 * This will connect to an external SPDM socket server. On error
|