/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/linux/net/wireless/ |
H A D | wext-sme.c | 31 wdev->wext.connect.ie = wdev->wext.ie; in cfg80211_mgd_wext_connect() 32 wdev->wext.connect.ie_len = wdev->wext.ie_len; in cfg80211_mgd_wext_connect() 35 wdev->wext.connect.bg_scan_period = -1; in cfg80211_mgd_wext_connect() 40 wdev->wext.connect.privacy = true; in cfg80211_mgd_wext_connect() 43 if (!wdev->wext.connect.ssid_len) in cfg80211_mgd_wext_connect() 58 &wdev->wext.connect, ck, prev_bssid); in cfg80211_mgd_wext_connect() 95 if (wdev->wext.connect.channel == chan) { in cfg80211_mgd_wext_siwfreq() 101 if (wdev->wext.connect.ssid_len) in cfg80211_mgd_wext_siwfreq() 109 wdev->wext.connect.channel = chan; in cfg80211_mgd_wext_siwfreq() 133 else if (wdev->wext.connect.channel) in cfg80211_mgd_wext_giwfreq() [all …]
|
H A D | sme.c | 5 * (for nl80211's connect() and wext) 27 * driver. This is for implementing nl80211's connect/disconnect 568 struct cfg80211_connect_params *connect, in cfg80211_sme_connect() argument 595 memcpy(&wdev->conn->params, connect, sizeof(*connect)); in cfg80211_sme_connect() 596 if (connect->bssid) { in cfg80211_sme_connect() 598 memcpy(wdev->conn->bssid, connect->bssid, ETH_ALEN); in cfg80211_sme_connect() 601 if (cfg80211_sme_get_conn_ies(wdev, connect->ie, connect->ie_len, in cfg80211_sme_connect() 610 if (connect->auth_type == NL80211_AUTHTYPE_AUTOMATIC) { in cfg80211_sme_connect() 745 * API calls for drivers implementing connect/disconnect and 818 if (!wiphy_to_rdev(wdev->wiphy)->ops->connect) { in __cfg80211_connect_result() [all …]
|
/openbmc/linux/drivers/net/ethernet/intel/fm10k/ |
H A D | fm10k_mbx.h | 45 * +----------+ connect() +----------+ 46 * | CLOSED | --------------> | CONNECT | 50 * | Connect Disconnect | | Connect 63 * this state is for the system to make the connect() call for the 64 * mailbox, it will then transition to the connect state. 65 * Connect: In this state the mailbox is seeking a connection. It will 66 * post a connect message with no specified destination and will 68 * is exited when either a connect with the local mailbox as the 72 * entity and the remote. It will fall back to connect in the event of 78 * remote endpoint has fallen back into connect. [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/linux/tools/testing/selftests/net/ |
H A D | sctp_vrf.sh | 124 echo -n "TEST 01: nobind, connect from client 1, l3mdev_accept=1, Y " 128 echo -n "TEST 02: nobind, connect from client 2, l3mdev_accept=1, N " 133 echo -n "TEST 03: nobind, connect from client 1, l3mdev_accept=0, N " 137 echo -n "TEST 04: nobind, connect from client 2, l3mdev_accept=0, N " 141 echo -n "TEST 05: bind veth2 in server, connect from client 1, N " 145 echo -n "TEST 06: bind veth1 in server, connect from client 1, Y " 149 echo -n "TEST 07: bind vrf-1 in server, connect from client 1, Y " 153 echo -n "TEST 08: bind vrf-2 in server, connect from client 1, N " 157 echo -n "TEST 09: bind vrf-2 in server, connect from client 2, Y " 161 echo -n "TEST 10: bind vrf-1 in server, connect from client 2, N " [all …]
|
/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-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/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 …]
|
/openbmc/linux/sound/soc/sh/rcar/ |
H A D | ctu.c | 24 * 0001: Connect input data of channel 0 25 * 0010: Connect input data of channel 1 26 * 0011: Connect input data of channel 2 27 * 0100: Connect input data of channel 3 28 * 0101: Connect input data of channel 4 29 * 0110: Connect input data of channel 5 30 * 0111: Connect input data of channel 6 31 * 1000: Connect input data of channel 7 32 * 1001: Connect calculated data by scale values of matrix row 0 33 * 1010: Connect calculated data by scale values of matrix row 1 [all …]
|
/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/linux/drivers/usb/misc/ |
H A D | usb3503.c | 52 struct gpio_desc *connect; member 91 /* SP_LOCK: clear connect_n, config_n for hub connect */ in usb3503_connect() 101 if (hub->connect) in usb3503_connect() 102 gpiod_set_value_cansleep(hub->connect, 1); in usb3503_connect() 137 if (!conn && hub->connect) in usb3503_switch_mode() 138 gpiod_set_value_cansleep(hub->connect, 0); in usb3503_switch_mode() 253 hub->connect = devm_gpiod_get_optional(dev, "connect", GPIOD_OUT_LOW); in usb3503_probe() 254 if (IS_ERR(hub->connect)) { in usb3503_probe() 255 err = PTR_ERR(hub->connect); in usb3503_probe() 258 if (hub->connect) in usb3503_probe() [all …]
|
/openbmc/linux/include/uapi/linux/ |
H A D | mei.h | 41 * IOCTL Connect Client Data structure 72 * @in_client_uuid: UUID of client to connect 83 * struct mei_connect_client_data_vtag - IOCTL connect data union 85 * @connect: input connect data 90 struct mei_connect_client_vtag connect; member
|
/openbmc/qemu/python/tests/ |
H A D | protocol.py | 150 sock.connect(address) 242 # The states we expect a "bad" connect/accept attempt to transition through 293 class Connect(TestBase): class 295 Tests primarily related to calling Connect(). 301 await self.proto.connect(('127.0.0.1', 0)) 303 await self.proto.connect('/dev/null') 307 await self.proto.connect(addr) 404 AFTER a connection is made, i.e., connect()/accept() themselves 421 class Accept(Connect): 423 All of the same tests as Connect, but using the accept() interface. [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/openbmc/meta-openembedded/meta-oe/recipes-dbs/mysql/mariadb/ |
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/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/linux/include/linux/ |
H A D | nvme-rdma.h | 51 * struct nvme_rdma_cm_req - rdma connect request 67 * struct nvme_rdma_cm_rep - rdma connect reply 79 * struct nvme_rdma_cm_rej - rdma connect reject 82 * @sts: error status for the associated connect request
|
/openbmc/linux/scripts/kconfig/ |
H A D | qconf.cc | 316 connect(this, &ConfigList::itemSelectionChanged, in ConfigList() 324 connect(configApp, &QApplication::aboutToQuit, in ConfigList() 895 connect(action, &QAction::toggled, in contextMenuEvent() 897 connect(this, &ConfigList::showNameChanged, in contextMenuEvent() 943 connect(configApp, &QApplication::aboutToQuit, in ConfigInfoView() 951 connect(action, &QAction::toggled, in ConfigInfoView() 953 connect(this, &ConfigInfoView::showDebugChanged, in ConfigInfoView() 1241 connect(editField, &QLineEdit::returnPressed, in ConfigSearchWindow() 1246 connect(searchButton, &QPushButton::clicked, in ConfigSearchWindow() 1256 connect(list, &ConfigList::menuChanged, in ConfigSearchWindow() [all …]
|
/openbmc/sdbusplus/include/sdbusplus/async/stdexec/__detail/ |
H A D | __senders.hpp | 189 // [execution.senders.connect] 199 decltype(__declval<_Sender>().connect(__declval<_Receiver>())); 204 ::connect(__declval<_Sender>(), __declval<_Receiver>())); 230 // to workaround Clang not implementing CWG#2369 yet (connect() does in __check_signatures() 256 noexcept(__declval<_TfxSender>().connect( in __select_impl() 264 _NothrowTfxSender && noexcept(__declval<_TfxSender>().connect( in __select_impl() 315 "Sender::connect(sender, receiver) must return a type that " 319 return __tfx_sndr.connect(static_cast<_TfxSender&&>(__tfx_sndr), 326 "sender.connect(receiver) must return a type that " 330 .connect(static_cast<_Receiver&&>(__rcvr)); [all …]
|
/openbmc/linux/tools/include/uapi/linux/ |
H A D | seg6_local.h | 37 /* adjacency segment (IPv6 cross-connect) */ 41 /* decap and L2 cross-connect */ 43 /* decap and IPv6 cross-connect */ 45 /* decap and IPv4 cross-connect */
|
/openbmc/linux/drivers/nfc/ |
H A D | mei_phy.c | 142 struct mei_nfc_connect *connect; in mei_nfc_connect() local 156 connect = (struct mei_nfc_connect *)cmd->data; in mei_nfc_connect() 169 connect->fw_ivn = phy->fw_ivn; in mei_nfc_connect() 170 connect->vendor_id = phy->vendor_id; in mei_nfc_connect() 172 MEI_DUMP_NFC_HDR("connect request", &cmd->hdr); in mei_nfc_connect() 175 pr_err("Could not send connect cmd %d\n", r); in mei_nfc_connect() 183 pr_err("Could not read connect response %d\n", r); in mei_nfc_connect() 187 MEI_DUMP_NFC_HDR("connect reply", &reply->hdr); in mei_nfc_connect() 336 pr_err("Could not connect to device %d\n", r); in nfc_mei_phy_enable()
|
/openbmc/linux/include/net/ |
H A D | llc_if.h | 55 #define LLC_STATUS_CONN 0 /* connect confirm & reset confirm */ 56 #define LLC_STATUS_DISC 1 /* connect confirm & reset confirm */ 57 #define LLC_STATUS_FAILED 2 /* connect confirm & reset confirm */ 58 #define LLC_STATUS_IMPOSSIBLE 3 /* connect confirm */
|
/openbmc/linux/tools/testing/selftests/bpf/prog_tests/ |
H A D | connect_ping.c | 56 if (!ASSERT_OK(connect(sock_fd, sa, sa_len), "connect")) in subtest() 142 /* Connect a v4 ping socket to localhost, assert that only v4 is called, in test_connect_ping() 149 /* Connect a v4 ping socket to localhost, assert that only v4 is called, in test_connect_ping() 156 /* Connect a v6 ping socket to localhost, assert that only v6 is called, in test_connect_ping() 163 /* Connect a v6 ping socket to localhost, assert that only v6 is called, in test_connect_ping()
|