Home
last modified time | relevance | path

Searched refs:MSG_DONTWAIT (Results 1 – 24 of 24) sorted by relevance

/ohos5.0/foundation/communication/dsoftbus/components/nstackx/fillp/src/app_lib/include/
H A Dsocket_app.h89 #ifndef MSG_DONTWAIT
90 #define MSG_DONTWAIT 0x40 macro
/ohos5.0/foundation/graphic/graphic_2d/utils/socketpair/src/
H A Dlocal_socketpair.cpp141 ssize_t length = TEMP_FAILURE_RETRY(send(sendFd_, vaddr, size, MSG_DONTWAIT | MSG_NOSIGNAL)); in SendData()
166 length = recv(receiveFd_, vaddr, size, MSG_DONTWAIT); in ReceiveData()
/ohos5.0/base/sensors/medical_sensor/utils/src/
H A Dmedical_basic_data_channel.cpp149 length = send(sendFd_, vaddr, size, MSG_DONTWAIT | MSG_NOSIGNAL); in SendData()
166 length = recv(receiveFd_, vaddr, size, MSG_DONTWAIT); in ReceiveData()
/ohos5.0/base/sensors/sensor/utils/common/src/
H A Dsensor_basic_data_channel.cpp161 ssize_t length = send(sendFd_, &sensorData[idx], remSize, MSG_DONTWAIT | MSG_NOSIGNAL); in SendData()
197 length = recv(receiveFd_, vaddr, size, MSG_DONTWAIT | MSG_NOSIGNAL); in ReceiveData()
/ohos5.0/base/msdp/device_status/frameworks/native/src/
H A Dfd_listener.cpp42 ssize_t size = recv(fd, szBuf, MAX_PACKET_BUF_SIZE, MSG_DONTWAIT | MSG_NOSIGNAL); in OnReadable()
/ohos5.0/base/sensors/sensor/frameworks/native/src/
H A Dfd_listener.cpp46 ssize_t size = recv(fd, szBuf, MAX_DATA_BUF_SIZE, MSG_DONTWAIT | MSG_NOSIGNAL); in OnReadable()
/ohos5.0/foundation/multimodalinput/input/frameworks/proxy/module_loader/src/
H A Dmmi_fd_listener.cpp50 MSG_DONTWAIT | MSG_NOSIGNAL); in OnReadable()
/ohos5.0/foundation/multimodalinput/input/intention/ipc/socket/src/
H A Dsocket_connection.cpp63 numRead = ::recv(fd, buf, sizeof(buf), MSG_DONTWAIT); in OnReadable()
H A Dsocket_session.cpp79 ssize_t count = send(fd_, &buf[idx], remSize, MSG_DONTWAIT | MSG_NOSIGNAL); in SendMsg()
/ohos5.0/base/msdp/device_status/intention/ipc/socket/src/
H A Dsocket_connection.cpp63 numRead = ::recv(fd, buf, sizeof(buf), MSG_DONTWAIT); in OnReadable()
H A Dsocket_session.cpp78 ssize_t count = send(fd_, &buf[idx], remSize, MSG_DONTWAIT | MSG_NOSIGNAL); in SendMsg()
/ohos5.0/foundation/multimodalinput/input/util/socket/src/
H A Duds_client.cpp64 auto count = send(fd_, &buf[idx], remSize, MSG_DONTWAIT | MSG_NOSIGNAL); in SendMsg()
H A Duds_session.cpp73 auto count = send(fd_, &buf[idx], remSize, MSG_DONTWAIT | MSG_NOSIGNAL); in SendMsg()
/ohos5.0/base/msdp/device_status/utils/ipc/src/
H A Dstream_client.cpp66 ssize_t number = send(fd_, &buf[idx], remSize, MSG_DONTWAIT | MSG_NOSIGNAL); in SendMsg()
H A Dstream_session.cpp61 ssize_t count = send(fd_, &buf[idx], remSize, MSG_DONTWAIT | MSG_NOSIGNAL); in SendMsg()
/ohos5.0/base/sensors/sensor/rust/utils/socket_ipc_rust_ffi/src/
H A Dstream_session.rs134 libc::MSG_DONTWAIT | libc::MSG_NOSIGNAL) in session_send_msg()
/ohos5.0/base/startup/init/interfaces/innerkits/fd_holder/
H A Dfd_holder_internal.c135 flags |= MSG_DONTWAIT; in ReceiveFds()
/ohos5.0/base/sensors/sensor/utils/ipc/src/
H A Dstream_session.cpp70 auto count = send(fd_, &buf[idx], remSize, MSG_DONTWAIT | MSG_NOSIGNAL); in SendMsg()
/ohos5.0/foundation/communication/dsoftbus/components/nstackx/fillp/src/app_lib/src/
H A Dsocket_app.c320 if (SOCK_IS_NONBLOCKING(sock) || ((FILLP_UINT32)flags & MSG_DONTWAIT)) { in SockSendReqFpcbItemWithSem()
365 if ((SOCK_IS_NONBLOCKING(sock) || ((FILLP_UINT)flags & MSG_DONTWAIT))) { in SockSendReqFpcbItemWithoutSem()
591 if (SOCK_IS_NONBLOCKING(sock) || ((FILLP_UINT)flags & MSG_DONTWAIT)) { in SockRecvReqFpcbItemWithSem()
629 if ((SOCK_IS_NONBLOCKING(sock) || ((FILLP_UINT32)flags & MSG_DONTWAIT))) { in SockRecvReqFpcbItemWithoutSem()
691 flags = (FILLP_INT)((FILLP_UINT)flags | MSG_DONTWAIT); in SockRecvmsgDataFromBufCache()
/ohos5.0/foundation/communication/netmanager_base/services/netmanagernative/src/netsys/
H A Dnetlink_socket_diag.cpp121 ssize_t bytesread = recv(fd, &ack, sizeof(ack), MSG_DONTWAIT | MSG_PEEK); in GetErrorFromKernel()
/ohos5.0/base/msdp/device_status/services/native/src/
H A Dstream_server.cpp220 ssize_t size = recv(fd, szBuf, MAX_PACKET_BUF_SIZE, MSG_DONTWAIT | MSG_NOSIGNAL); in OnEpollRecv()
/ohos5.0/foundation/multimodalinput/input/service/module_loader/src/
H A Duds_server.cpp267 auto size = recv(fd, szBuf, MAX_PACKET_BUF_SIZE, MSG_DONTWAIT | MSG_NOSIGNAL); in OnEpollRecv()
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/sock/
H A Dsocket.cpp946 auto sendRet = send(fd, buf, len, MSG_DONTWAIT); in SendDataToApp()
/ohos5.0/foundation/communication/dhcp/services/dhcp_client/src/
H A Ddhcp_client_state_machine.cpp1994 if (send(m_sigSockFds[1], &signum, sizeof(signum), MSG_DONTWAIT) < 0) { in SendStopSignal()