| /test/xts/hats/kernel/syscalls/net/bind/ |
| H A D | BindApiTest.cpp | 62 * @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 D | VideoController.java | 32 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 D | BusinessGoodsController.java | 33 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 D | BusinessCommentController.java | 33 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 D | GroupSiteController.java | 32 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 D | BusinessController.java | 32 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/testfwk/arkxtest/uitest/record/ |
| H A D | pointer_tracker.cpp | 188 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 D | socketndk.cpp | 88 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 D | pcsNetworkTest.cpp | 57 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()
|
| /test/testfwk/arkxtest/uitest/server/ |
| H A D | server_main.cpp | 233 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()
|
| /test/xts/hats/kernel/syscalls/net/accept/ |
| H A D | AcceptApiTest.cpp | 66 ret = bind(socketFd, reinterpret_cast<struct sockaddr *>(&serAddr), sizeof(serAddr)); in SetUp()
|
| /test/xts/hats/kernel/syscalls/net/data_handle/ |
| H A D | DataHandleApiTest.cpp | 78 ret = bind(tcpFd, reinterpret_cast<struct sockaddr *>(&serAddr), sizeof(serAddr)); in SetUp() 88 ret = bind(udpFd, reinterpret_cast<struct sockaddr *>(&serAddr), sizeof(serAddr)); in SetUp()
|
| /test/xts/acts/communication_lite/lwip_posix/src/ |
| H A D | ActsLwipTest.cpp | 74 ret = ::bind(srvFd, (struct sockaddr*)&srvAddr, sizeof(srvAddr)); in CommInitTcpServer() 76 printf("[CommInitTcpServer]::bind fail!\n"); in CommInitTcpServer() 547 int ret = ::bind(sfd, (struct sockaddr*)&srvAddr, sizeof(srvAddr)); in HWTEST_F() 1054 ret = ::bind(fdFail, nullptr, sizeof(struct sockaddr_in)); in HWTEST_F() 1056 ret = ::bind(fdSuccess, nullptr, sizeof(struct sockaddr_in)); in HWTEST_F()
|
| /test/xts/acts/communication_lite/lwip_hal/src/ |
| H A D | lwip_func_test.c | 96 ret = bind(srvFd, (struct sockaddr*)&srvAddr, sizeof(srvAddr)); in CommInitTcpServer() 98 printf("[CommInitTcpServer]::bind fail!\n"); in CommInitTcpServer() 585 ret = bind(fd, (struct sockaddr*)&srvAddr, sizeof(srvAddr)); 1021 ret = bind(fdFail, NULL, sizeof(struct sockaddr_in)); 1023 ret = bind(fdSuccess, NULL, sizeof(struct sockaddr_in));
|
| /test/testfwk/xdevice/src/xdevice/_core/resource/template/static/components/ |
| H A D | caseTable.js | 64 v-bind="paginationInfo"
|
| H A D | suiteTable.js | 49 v-bind="paginationInfo"
|
| /test/xts/hats/kernel/syscalls/net/accept4/ |
| H A D | Accept4ApiTest.cpp | 84 ret = bind(socketFd, reinterpret_cast<struct sockaddr *>(&serAddr), sizeof(serAddr)); in SocketServiceStart()
|
| /test/xts/hats/kernel/syscalls/net/shutdown/ |
| H A D | ShutdownApiTest.cpp | 67 ret = bind(socketFd, reinterpret_cast<struct sockaddr *>(&serAddr), sizeof(serAddr)); in SetUp()
|
| /test/xts/hats/kernel/syscalls/net/get_info/ |
| H A D | GetInfoApiTest.cpp | 68 ret = bind(socketFd, reinterpret_cast<struct sockaddr *>(&serAddr), sizeof(serAddr)); in SetUp()
|
| /test/testfwk/arkxtest/jsunit/src/module/mock/ |
| H A D | MockKit.js | 264 return f.stub.bind(f);
|
| /test/testfwk/arkxtest/uitest/cj/ |
| H A D | uitest_ffi.cpp | 162 auto callbackHandler = std::bind(&UiEventObserverImpl::HandleEventCallback, &instance, _1, _2); in CJ_InitConnection()
|
| /test/xts/hats/kernel/syscalls/net/connect/ |
| H A D | ConnectApiTest.cpp | 66 ret = bind(socketFd, reinterpret_cast<struct sockaddr *>(&serAddr), sizeof(serAddr)); in SetUp()
|
| /test/testfwk/arkxtest/hamock/src/main/mock/ |
| H A D | MockKit.js | 235 return f.stub.bind(f);
|
| /test/xts/acts/kernel_lite/net_posix/src/ |
| H A D | ActsNetTest.cpp | 92 ret = ::bind(srvFd, (struct sockaddr*)&srvAddr, sizeof(srvAddr)); in CommInitTcpServer() 94 printf("[###][CommInitTcpServer]::bind fail!\n"); in CommInitTcpServer() 772 int ret = ::bind(sfd, (struct sockaddr*)&srvAddr, sizeof(srvAddr)); in HWTEST_F() 1132 ret = ::bind(udpFd, (struct sockaddr*)srvAddr, sizeof(sockaddr_in)); in HWTEST_F() 2195 ret = ::bind(fdFail, nullptr, sizeof(struct sockaddr_in)); in HWTEST_F() 2197 ret = ::bind(fdSuccess, nullptr, sizeof(struct sockaddr_in)); in HWTEST_F()
|
| /test/testfwk/developer_test/aw/cxx/distributed/ |
| H A D | distributed_agent.cpp | 101 int err = ::bind(serverSockFd, reinterpret_cast<struct sockaddr *>(&addr), sizeof(addr));
in InitAgentServer() 103 HiLog::Error(DistributedAgent::LABEL, "agent bind error.\n");
in InitAgentServer()
|