Home
last modified time | relevance | path

Searched refs:bind (Results 1 - 25 of 1217) sorted by relevance

12345678910>>...49

/test/xts/hats/kernel/syscalls/net/bind/
H A DBindApiTest.cpp62 * @tc.desc : bind the same socket fd twice failed, errno EINVAL.
86 ret = bind(socketFd, reinterpret_cast<struct sockaddr *>(&serAddr), sizeof(serAddr)); in HWTEST_F()
90 ret = bind(socketFd, reinterpret_cast<struct sockaddr *>(&serAddr), sizeof(serAddr)); in HWTEST_F()
100 * @tc.desc : bind the invalid socket fd failed.
117 ret = bind(BAD_SOCKET_FD, reinterpret_cast<struct sockaddr *>(&serAddr), sizeof(serAddr)); in HWTEST_F()
122 ret = bind(STDIN_FILENO, reinterpret_cast<struct sockaddr *>(&serAddr), sizeof(serAddr)); in HWTEST_F()
130 * @tc.desc : bind the invalid ip addr failed.
155 ret = bind(socketFd, reinterpret_cast<struct sockaddr *>(&serAddr), sizeof(serAddr)); in HWTEST_F()
160 ret = bind(socketFd, nullptr, sizeof(serAddr)); in HWTEST_F()
170 * @tc.desc : bind add
[all...]
/test/xts/tools/sample/ServerSampleD/java/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/sample/controller/
H A DVideoController.java32 import org.springframework.web.bind.annotation.RestController;
33 import org.springframework.web.bind.annotation.RequestMapping;
34 import org.springframework.web.bind.annotation.GetMapping;
35 import org.springframework.web.bind.annotation.RequestParam;
36 import org.springframework.web.bind.annotation.PostMapping;
37 import org.springframework.web.bind.annotation.RequestBody;
38 import org.springframework.web.bind.annotation.RequestMethod;
39 import org.springframework.web.bind.annotation.DeleteMapping;
/test/xts/tools/sample/ServerSampleE/java/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/sample/controller/
H A DBusinessGoodsController.java33 import org.springframework.web.bind.annotation.RestController;
34 import org.springframework.web.bind.annotation.RequestMapping;
35 import org.springframework.web.bind.annotation.GetMapping;
36 import org.springframework.web.bind.annotation.RequestParam;
37 import org.springframework.web.bind.annotation.PostMapping;
38 import org.springframework.web.bind.annotation.RequestBody;
39 import org.springframework.web.bind.annotation.RequestMethod;
40 import org.springframework.web.bind.annotation.DeleteMapping;
H A DBusinessCommentController.java33 import org.springframework.web.bind.annotation.RestController;
34 import org.springframework.web.bind.annotation.RequestMapping;
35 import org.springframework.web.bind.annotation.GetMapping;
36 import org.springframework.web.bind.annotation.RequestParam;
37 import org.springframework.web.bind.annotation.PostMapping;
38 import org.springframework.web.bind.annotation.RequestBody;
39 import org.springframework.web.bind.annotation.RequestMethod;
40 import org.springframework.web.bind.annotation.DeleteMapping;
H A DGroupSiteController.java32 import org.springframework.web.bind.annotation.RestController;
33 import org.springframework.web.bind.annotation.RequestMapping;
34 import org.springframework.web.bind.annotation.GetMapping;
35 import org.springframework.web.bind.annotation.RequestParam;
36 import org.springframework.web.bind.annotation.PostMapping;
37 import org.springframework.web.bind.annotation.RequestBody;
38 import org.springframework.web.bind.annotation.RequestMethod;
39 import org.springframework.web.bind.annotation.DeleteMapping;
H A DBusinessController.java32 import org.springframework.web.bind.annotation.RestController;
33 import org.springframework.web.bind.annotation.RequestMapping;
34 import org.springframework.web.bind.annotation.GetMapping;
35 import org.springframework.web.bind.annotation.RequestParam;
36 import org.springframework.web.bind.annotation.PostMapping;
37 import org.springframework.web.bind.annotation.RequestBody;
38 import org.springframework.web.bind.annotation.RequestMethod;
39 import org.springframework.web.bind.annotation.DeleteMapping;
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/
H A Dwl_ext_genl.c44 GENL_CUSTOM_COMMAND_BIND, /* bind */
67 bool bind; member
432 bool bind; in wl_ext_genl_bind() local
460 bind = TRUE; in wl_ext_genl_bind()
462 bind = FALSE; in wl_ext_genl_bind()
468 if (bind == zconf->bind) { in wl_ext_genl_bind()
469 AGENL_TRACE(dev->name, "Already %s\n", bind?"BIND":"UNBIND"); in wl_ext_genl_bind()
473 if (bind) { in wl_ext_genl_bind()
481 zconf->bind in wl_ext_genl_bind()
[all...]
/test/testfwk/arkxtest/uitest/record/
H A Dpointer_tracker.cpp188 function<bool(TouchEventInfo&)>(bind(&PointerTracker::IsClick, this, placeholders::_1)))); in InitJudgeChain()
190 function<bool(TouchEventInfo&)>(bind(&PointerTracker::IsLongClick, this, placeholders::_1)))); in InitJudgeChain()
192 function<bool(TouchEventInfo&)>(bind(&PointerTracker::IsDrag, this, placeholders::_1)))); in InitJudgeChain()
194 function<bool(TouchEventInfo&)>(bind(&PointerTracker::IsBack, this, placeholders::_1)))); in InitJudgeChain()
196 function<bool(TouchEventInfo&)>(bind(&PointerTracker::IsSwip, this, placeholders::_1)))); in InitJudgeChain()
198 function<bool(TouchEventInfo&)>(bind(&PointerTracker::IsRecent, this, placeholders::_1)))); in InitJudgeChain()
200 function<bool(TouchEventInfo&)>(bind(&PointerTracker::IsFling, this, placeholders::_1)))); in InitJudgeChain()
202 function<bool(TouchEventInfo&)>(bind(&PointerTracker::IsHome, this, placeholders::_1)))); in InitJudgeChain()
/test/xts/acts/commonlibrary/thirdparty/musl/entry/src/main/cpp/
H A Dsocketndk.cpp88 bind(sockfd, reinterpret_cast<sockaddr *>(static_cast<struct sockaddr_in *>(&local)), sizeof(local)); in Sendmsg()
128 bind(sockfd, reinterpret_cast<sockaddr *>(static_cast<struct sockaddr_in *>(&local)), sizeof(local)); in Send()
168 bind(sockfd, reinterpret_cast<sockaddr *>(static_cast<struct sockaddr_in *>(&local)), sizeof(local)); in Sendto()
208 bind(sockfd, reinterpret_cast<sockaddr *>(static_cast<struct sockaddr_in *>(&local)), sizeof(local)); in Sendmmsg()
257 bind(sd, (struct sockaddr *)(&server_addr), sizeof(server_addr)); in Shutdown()
364 bind(sockfd, reinterpret_cast<sockaddr *>(static_cast<struct sockaddr_in *>(&local)), sizeof(local)); in Connect()
398 int ret = bind(sockfd, reinterpret_cast<sockaddr *>(static_cast<struct sockaddr_in *>(&server)), sizeof(server)); in Bind()
411 bind(sockfd, reinterpret_cast<sockaddr *>(static_cast<struct sockaddr_in *>(&local)), sizeof(local)); in Listen()
428 bind(sockfd, reinterpret_cast<sockaddr *>(static_cast<struct sockaddr_in *>(&local)), sizeof(local)); in Getpeername()
467 bind(sockf in Getsockname()
[all...]
/test/xts/acts/pcs/pcs_ndk/entry/src/main/cpp/
H A DpcsNetworkTest.cpp57 int ret = bind(sockfd, reinterpret_cast<sockaddr *>(static_cast<struct sockaddr_in *>(&server)), sizeof(server)); in Bind()
71 bind(sockfd, reinterpret_cast<sockaddr *>(static_cast<struct sockaddr_in *>(&local)), sizeof(local)); in Listen()
89 bind(sockfd, reinterpret_cast<sockaddr *>(static_cast<struct sockaddr_in *>(&local)), sizeof(local)); in Connect()
126 bind(sockfd, reinterpret_cast<sockaddr *>(static_cast<struct sockaddr_in *>(&local)), sizeof(local)); in Send()
/device/soc/rockchip/common/hardware/display/src/display_device/
H A Dhdi_netlink_monitor.cpp39 mThread = std::make_unique<std::thread>(std::bind(&HdiNetLinkMonitor::MonitorThread, this)); in Init()
72 ret = bind(fd, (struct sockaddr *)&snl, sizeof(struct sockaddr_nl)); in ThreadInit()
74 DISPLAY_LOGE("bind fail"); in ThreadInit()
/device/soc/rockchip/rk3399/hardware/display/src/display_device/
H A Dhdi_netlink_monitor.cpp39 mThread = std::make_unique<std::thread>(std::bind(&HdiNetLinkMonitor::MonitorThread, this)); in Init()
72 ret = bind(fd, (struct sockaddr *)&snl, sizeof(struct sockaddr_nl)); in ThreadInit()
74 DISPLAY_LOGE("bind fail"); in ThreadInit()
/device/soc/rockchip/rk3566/hardware/display/src/display_device/
H A Dhdi_netlink_monitor.cpp34 mThread = std::make_unique<std::thread>(std::bind(&HdiNetLinkMonitor::MonitorThread, this)); in Init()
67 ret = bind(fd, reinterpret_cast<struct sockaddr *>(&snl), sizeof(struct sockaddr_nl)); in ThreadInit()
69 DISPLAY_LOGE("bind fail"); in ThreadInit()
/device/soc/rockchip/rk3568/hardware/display/src/display_device/
H A Dhdi_netlink_monitor.cpp34 mThread = std::make_unique<std::thread>(std::bind(&HdiNetLinkMonitor::MonitorThread, this)); in Init()
67 ret = bind(fd, reinterpret_cast<struct sockaddr *>(&snl), sizeof(struct sockaddr_nl)); in ThreadInit()
69 DISPLAY_LOGE("bind fail"); in ThreadInit()
/device/soc/rockchip/rk3588/hardware/display/src/display_device/
H A Dhdi_netlink_monitor.cpp34 mThread = std::make_unique<std::thread>(std::bind(&HdiNetLinkMonitor::MonitorThread, this)); in Init()
66 ret = bind(fd, reinterpret_cast<struct sockaddr *>(&snl), sizeof(struct sockaddr_nl)); in ThreadInit()
68 DISPLAY_LOGE("bind fail"); in ThreadInit()
/device/soc/hisilicon/common/hal/display/source/display_device/src/core/
H A Dhdi_netlink_monitor.cpp39 ret = bind(fd, (struct sockaddr *)&snl, sizeof(struct sockaddr_nl)); in Init()
40 DISPLAY_CHK_RETURN((ret < 0), DISPLAY_FAILURE, DISPLAY_LOGE("bind failed errno : %{public}d", errno)); in Init()
/device/soc/rockchip/common/sdk_linux/drivers/thermal/
H A Dthermal_core.c71 * bind_previous_governor() - bind the previous governor of the thermal zone
83 "governor %s failed to bind and the previous one (%s) failed to bind again, thermal zone %s has no " in bind_previous_governor()
812 * thermal_zone_bind_cooling_device() - bind a cooling device to a thermal zone
827 * This interface function bind a thermal cooling device to the certain trip
829 * This function is usually called in the thermal zone device .bind callback.
1054 if (!pos->tzp && !pos->ops->bind) { in bind_cdev()
1058 if (pos->ops->bind) { in bind_cdev()
1059 ret = pos->ops->bind(pos, cdev); in bind_cdev()
1094 * to /sys/class/thermal/ folder as cooling_device[0-*]. It tries to bind itsel
[all...]
/device/soc/rockchip/common/sdk_linux/include/linux/usb/
H A Dcomposite.h121 * @strings: tables of strings, keyed by identifiers assigned during bind()
124 * string identifiers assigned during @bind(). If this pointer is null,
127 * string identifiers assigned during @bind(). If this pointer is null,
130 * string identifiers assigned during @bind(). If this
134 * interface and string identifiers assigned during @bind(). If
143 * @bind: Before the gadget can register, all of its functions bind() to the
146 * @unbind: Reverses @bind; called as a side effect of unregistering the
170 * causes @bind() to be called so resources can be allocated as part of
204 /* REVISIT: bind() function
211 int (*bind)(struct usb_configuration *, struct usb_function *); global() member
381 int (*bind)(struct usb_composite_dev *cdev); global() member
[all...]
/device/soc/rockchip/rk3588/kernel/include/linux/usb/
H A Dcomposite.h121 * @strings: tables of strings, keyed by identifiers assigned during bind()
124 * string identifiers assigned during @bind(). If this pointer is null,
127 * string identifiers assigned during @bind(). If this pointer is null,
130 * string identifiers assigned during @bind(). If this
134 * interface and string identifiers assigned during @bind(). If
143 * @bind: Before the gadget can register, all of its functions bind() to the
146 * @unbind: Reverses @bind; called as a side effect of unregistering the
170 * causes @bind() to be called so resources can be allocated as part of
204 /* REVISIT: bind() function
211 int (*bind)(struct usb_configuration *, global() member
395 int (*bind)(struct usb_composite_dev *cdev); global() member
[all...]
/test/testfwk/arkxtest/uitest/server/
H A Dserver_main.cpp233 auto apiHandler = std::bind(&FrontendApiServer::Call, &apiServer, placeholders::_1, placeholders::_2); in StartDaemon()
234 auto cbHandler = std::bind(&ApiTransactor::Transact, &apiTransactServer, placeholders::_1, placeholders::_2); in StartDaemon()
/device/soc/rockchip/common/vendor/drivers/gpu/arm/bifrost/csf/
H A Dmali_kbase_csf.h245 * @bind: Pointer to the union which specifies a queue group and a
250 int kbase_csf_queue_bind(struct kbase_context *kctx, union kbase_ioctl_cs_queue_bind *bind);
/device/soc/rockchip/common/kernel/drivers/gpu/arm/bifrost/csf/
H A Dmali_kbase_csf.h144 * @bind: Pointer to the union which specifies a queue group and a
150 union kbase_ioctl_cs_queue_bind *bind);
168 * queues that failed to fully bind.
/test/xts/hats/kernel/syscalls/net/accept/
H A DAcceptApiTest.cpp66 ret = bind(socketFd, reinterpret_cast<struct sockaddr *>(&serAddr), sizeof(serAddr)); in SetUp()
/test/testfwk/xdevice/src/xdevice/_core/resource/template/static/components/
H A DcaseTable.js64 v-bind="paginationInfo"
H A DsuiteTable.js49 v-bind="paginationInfo"

Completed in 12 milliseconds

12345678910>>...49