Home
last modified time | relevance | path

Searched refs:dstAddr (Results 1 - 25 of 67) sorted by relevance

123

/third_party/vk-gl-cts/framework/delibs/dethread/
H A DdeAtomic.h36 * \param dstAddr Destination address.
39 DE_INLINE deInt32 deAtomicIncrementInt32 (volatile deInt32* dstAddr) in deAtomicIncrementInt32() argument
42 return _InterlockedIncrement((long volatile*)dstAddr); in deAtomicIncrementInt32()
44 return __sync_add_and_fetch(dstAddr, 1); in deAtomicIncrementInt32()
52 * \param dstAddr Destination address.
55 DE_INLINE deUint32 deAtomicIncrementUint32 (volatile deUint32* dstAddr) in deAtomicIncrementUint32() argument
57 return deAtomicIncrementInt32((deInt32 volatile*)dstAddr); in deAtomicIncrementUint32()
62 * \param dstAddr Destination address.
65 DE_INLINE deInt32 deAtomicDecrementInt32 (volatile deInt32* dstAddr) in deAtomicDecrementInt32() argument
68 return _InterlockedDecrement((volatile long*)dstAddr); in deAtomicDecrementInt32()
81 deAtomicDecrementUint32(volatile deUint32* dstAddr) deAtomicDecrementUint32() argument
100 deAtomicCompareExchangeUint32(volatile deUint32* dstAddr, deUint32 compare, deUint32 exchange) deAtomicCompareExchangeUint32() argument
123 deAtomicIncrementInt64(volatile deInt64* dstAddr) deAtomicIncrementInt64() argument
139 deAtomicIncrementUint64(volatile deUint64* dstAddr) deAtomicIncrementUint64() argument
149 deAtomicDecrementInt64(volatile deInt64* dstAddr) deAtomicDecrementInt64() argument
165 deAtomicDecrementUint64(volatile deUint64* dstAddr) deAtomicDecrementUint64() argument
184 deAtomicCompareExchangeUint64(volatile deUint64* dstAddr, deUint64 compare, deUint64 exchange) deAtomicCompareExchangeUint64() argument
243 deAtomicCompareExchangePtr(void* volatile* dstAddr, void* compare, void* exchange) deAtomicCompareExchangePtr() argument
[all...]
/foundation/communication/netmanager_base/test/netmanagernative/unittest/netsys_distributed_test/
H A Dnetsys_native_service_test.cpp88 std::string dstAddr = "1.189.55.61"; in HWTEST_F() local
89 int32_t ret = instance_->EnableDistributedServerNet(iif, devIface, dstAddr); in HWTEST_F()
99 std::string dstAddr = ""; in HWTEST_F() local
100 int32_t ret = instance_->EnableDistributedServerNet(iif, devIface, dstAddr); in HWTEST_F()
H A Dnetsys_native_service_proxy_test.cpp115 std::string dstAddr = "1.189.55.61"; in HWTEST_F() local
118 int32_t ret = netsysNativeService->EnableDistributedServerNet(iif, devIface, dstAddr); in HWTEST_F()
131 std::string dstAddr = ""; in HWTEST_F() local
134 int32_t ret = netsysNativeService->EnableDistributedServerNet(iif, devIface, dstAddr); in HWTEST_F()
H A Droute_manager_test.cpp59 std::string dstAddr = "1.189.55.61"; in HWTEST_F() local
60 auto ret = RouteManager::EnableDistributedServerNet(iif, devIface, dstAddr); in HWTEST_F()
H A Dnet_manager_native_test.cpp68 std::string dstAddr = "1.189.55.61"; in HWTEST_F() local
69 auto ret = instance_->EnableDistributedServerNet(iif, devIface, dstAddr); in HWTEST_F()
H A Dnetsys_controller_test.cpp123 std::string dstAddr = "1.189.55.61"; in HWTEST_F() local
124 int32_t ret = NetsysController::GetInstance().EnableDistributedServerNet(iif, devIface, dstAddr); in HWTEST_F()
H A Dnetsys_native_service_stub_test.cpp231 const std::string &dstAddr) override
609 std::string dstAddr = "1.189.55.60"; in HWTEST_F() local
619 if (!data.WriteString(dstAddr)) { in HWTEST_F()
/foundation/communication/netmanager_base/services/netmanagernative/src/netsys/
H A Dclatd.cpp116 sockaddr_in6 dstAddr; in SendDadPacket() local
117 dstAddr.sin6_family = AF_INET6; in SendDadPacket()
118 dstAddr.sin6_addr = dadPacket.v6Header.ip6_dst; in SendDadPacket()
119 dstAddr.sin6_scope_id = if_nametoindex(v6Iface_.c_str()); in SendDadPacket()
121 sendto(writeSock6_, &dadPacket, sizeof(dadPacket), 0, reinterpret_cast<const sockaddr *>(&dstAddr), in SendDadPacket()
122 sizeof(dstAddr)); in SendDadPacket()
/foundation/communication/netmanager_base/test/netconnmanager/unittest/netmgr_distributed_test/
H A Dnet_conn_service_test.cpp79 std::string dstAddr = "1.189.55.61"; in HWTEST_F() local
80 int32_t ret = NetConnService::GetInstance()->EnableDistributedServerNet(iif, devIface, dstAddr); in HWTEST_F()
H A Dnet_conn_client_test.cpp70 std::string dstAddr = "1.189.55.61"; in HWTEST_F() local
73 int32_t ret = NetConnClient::GetInstance().EnableDistributedServerNet(iif, devIface, dstAddr); in HWTEST_F()
H A Dnet_conn_service_proxy_test.cpp142 std::string dstAddr = "1.189.55.61"; in HWTEST_F() local
144 int32_t ret = instance_->EnableDistributedServerNet(iif, devIface, dstAddr); in HWTEST_F()
H A Dnet_conn_service_stub_test.cpp105 std::string dstAddr = "1.189.55.61"; in HWTEST_F() local
112 if (!data.WriteString(dstAddr)) { in HWTEST_F()
/foundation/communication/dsoftbus/core/common/dfx/hidumper_adapter/
H A Dsoftbus_hidumper_trans.c99 char dstAddr[IP_LEN] = {0}; in SoftBusTransDumpRunningSession() local
104 DataMasking(appInfo->peerData.addr, IP_LEN, IP_DELIMITER, dstAddr); in SoftBusTransDumpRunningSession()
112 SOFTBUS_DPRINTF(fd, "DestAddress : %s\n", dstAddr); in SoftBusTransDumpRunningSession()
/foundation/communication/netmanager_base/services/netconnmanager/src/
H A Dnet_conn_service_iface.cpp49 const std::string &dstAddr) in EnableDistributedServerNet()
51 return NetConnService::GetInstance()->EnableDistributedServerNet(iif, devIface, dstAddr); in EnableDistributedServerNet()
48 EnableDistributedServerNet(const std::string &iif, const std::string &devIface, const std::string &dstAddr) EnableDistributedServerNet() argument
/third_party/mesa3d/src/mesa/main/
H A Dpack.h92 GLvoid *dstAddr, GLenum dst_format,
97 GLvoid *dstAddr, GLenum dst_format,
H A Dpack.c1336 GLvoid *dstAddr, GLenum dst_format, in _mesa_pack_luminance_from_rgba_float()
1340 GLfloat *dst = (GLfloat *) dstAddr; in _mesa_pack_luminance_from_rgba_float()
1443 GLvoid *dstAddr, in _mesa_pack_luminance_from_rgba_integer()
1488 GLbyte *dst = (GLbyte *) dstAddr; in _mesa_pack_luminance_from_rgba_integer()
1494 GLshort *dst = (GLshort *) dstAddr; in _mesa_pack_luminance_from_rgba_integer()
1500 GLint *dst = (GLint *) dstAddr; in _mesa_pack_luminance_from_rgba_integer()
1525 GLbyte *dst = (GLbyte *) dstAddr; in _mesa_pack_luminance_from_rgba_integer()
1532 GLshort *dst = (GLshort *) dstAddr; in _mesa_pack_luminance_from_rgba_integer()
1539 GLint *dst = (GLint *) dstAddr; in _mesa_pack_luminance_from_rgba_integer()
1335 _mesa_pack_luminance_from_rgba_float(GLuint n, GLfloat rgba[][4], GLvoid *dstAddr, GLenum dst_format, GLbitfield transferOps) _mesa_pack_luminance_from_rgba_float() argument
1441 _mesa_pack_luminance_from_rgba_integer(GLuint n, GLuint rgba[][4], bool rgba_is_signed, GLvoid *dstAddr, GLenum dst_format, GLenum dst_type) _mesa_pack_luminance_from_rgba_integer() argument
/foundation/communication/dsoftbus/components/nstackx/nstackx_util/core/
H A Dnstackx_socket.c122 clientSocket->dstAddr = *sockAddr; in ConnectTcpServerWithTargetDev()
168 clientSocket->dstAddr = *sockAddr; in ConnectUdpServerWithTargetDev()
438 clientSocket->dstAddr = clientAddr; in AcceptSocket()
466 int32_t ret = (int32_t)sendto(socket->sockfd, buffer, length, 0, (struct sockaddr *)&socket->dstAddr, dstAddrLen); in SocketSendUdp()
498 *srcAddr = socket->dstAddr; in SocketRecvTcp()
/third_party/nghttp2/integration-tests/
H A Dserver_tester.go736 dstAddr := hdr.destinationAddress.(*net.TCPAddr)
737 if len(srcAddr.IP) != len(dstAddr.IP) {
738 panic("len(srcAddr.IP) != len(dstAddr.IP)")
757 if _, err := w.Write(dstAddr.IP); err != nil {
763 if err := binary.Write(w, binary.BigEndian, uint16(dstAddr.Port)); err != nil {
767 dstAddr := hdr.destinationAddress.(*net.UnixAddr)
771 if len(dstAddr.Name) > 108 {
797 if _, err := w.Write([]byte(dstAddr.Name)); err != nil {
800 if _, err := w.Write(zeros[:108-len(dstAddr.Name)]); err != nil {
/foundation/communication/netmanager_base/services/netmanagernative/include/manager/
H A Droute_manager.h252 static int32_t AddClatTunInterface(const std::string &interfaceName, const std::string &dstAddr,
300 * @param dstAddr dstAddr to config route
304 const std::string &dstAddr);
364 static int32_t AddServerDownlinkRoute(const std::string &UplinkIif, const std::string &dstAddr);
/foundation/arkui/ace_engine/interfaces/inner_api/drawable_descriptor/
H A Dimage_converter.cpp149 auto dstAddr = pixelMap->GetWritablePixels();
150 if (memcpy_s(dstAddr, pixelMap->GetByteCount(), data, pixelMap->GetByteCount()) != 0) {
/foundation/communication/dsoftbus/components/nstackx/nstackx_util/interface/
H A Dnstackx_socket.h32 struct sockaddr_in dstAddr; member
/foundation/communication/dsoftbus/components/nstackx/nstackx_util/platform/unix/
H A Dsys_util.h60 NSTACKX_EXPORT int32_t GetTargetInterface(const struct sockaddr_in *dstAddr, struct ifreq *localDev);
/foundation/communication/netmanager_base/services/netconnmanager/include/
H A Dnet_conn_service_iface.h35 int32_t EnableDistributedServerNet(const std::string &iif, const std::string &devIface, const std::string &dstAddr);
/foundation/communication/dsoftbus/components/nstackx/nstackx_util/platform/liteos/
H A Dsys_socket.c107 mh.msg_name = (struct sockaddr *)&s->dstAddr; in SocketSendEx()
/foundation/communication/dsoftbus/components/nstackx/nstackx_ctrl/core/mini_discover/
H A Dcoap_app.c41 struct sockaddr_in dstAddr; member
175 int32_t ret = sendto(socket->cliendFd, buffer, length, 0, (struct sockaddr *)&socket->dstAddr, dstAddrLen); in CoapSocketSend()
202 socket.dstAddr = sockAddr; in CoapSendMsg()

Completed in 12 milliseconds

123