Home
last modified time | relevance | path

Searched refs:SEND_RETRY_LIMIT (Results 1 – 13 of 13) sorted by relevance

/ohos5.0/base/sensors/sensor/rust/utils/socket_ipc_rust_ffi/src/
H A Dstream_session.rs27 const SEND_RETRY_LIMIT: i32 = 32; const
129 while rem_size > 0 && retry_count < SEND_RETRY_LIMIT { in session_send_msg()
155 if retry_count >= SEND_RETRY_LIMIT || rem_size != 0 { in session_send_msg()
157 retry_count, SEND_RETRY_LIMIT, idx, buf_size, self.fd); in session_send_msg()
H A Depoll_manager.rs24 const SEND_RETRY_LIMIT: i32 = 32; const
/ohos5.0/foundation/multimodalinput/input/util/socket/src/
H A Duds_client.cpp62 while (remSize > 0 && retryCount < SEND_RETRY_LIMIT) { in SendMsg()
80 if (retryCount >= SEND_RETRY_LIMIT || remSize != 0) { in SendMsg()
82 retryCount, SEND_RETRY_LIMIT, idx, bufSize, fd_); in SendMsg()
H A Duds_session.cpp71 while (remSize > 0 && retryCount < SEND_RETRY_LIMIT) { in SendMsg()
96 if (retryCount >= SEND_RETRY_LIMIT || remSize != 0) { in SendMsg()
98 … "fd:%{public}d, pid:%{public}d", retryCount, SEND_RETRY_LIMIT, idx, bufSize, errno, fd_, pid_); in SendMsg()
/ohos5.0/base/msdp/device_status/utils/ipc/src/
H A Dstream_client.cpp64 while (remSize > 0 && retryCount < SEND_RETRY_LIMIT) { in SendMsg()
81 if (retryCount >= SEND_RETRY_LIMIT || remSize != 0) { in SendMsg()
83 retryCount, SEND_RETRY_LIMIT, idx, bufSize, fd_); in SendMsg()
H A Dstream_session.cpp59 while (remSize > 0 && retryCount < SEND_RETRY_LIMIT) { in SendMsg()
77 if (retryCount >= SEND_RETRY_LIMIT || remSize != 0) { in SendMsg()
79 retryCount, SEND_RETRY_LIMIT, idx, bufSize, fd_); in SendMsg()
/ohos5.0/base/msdp/device_status/intention/ipc/socket/src/
H A Dsocket_session.cpp75 while (remSize > 0 && retryCount < SEND_RETRY_LIMIT) { in SendMsg()
94 if (retryCount >= SEND_RETRY_LIMIT || remSize != 0) { in SendMsg()
96 "pid:%{public}d", retryCount, SEND_RETRY_LIMIT, idx, bufSize, fd_, pid_); in SendMsg()
/ohos5.0/foundation/multimodalinput/input/intention/ipc/socket/src/
H A Dsocket_session.cpp76 while (remSize > 0 && retryCount < SEND_RETRY_LIMIT) { in SendMsg()
95 if (retryCount >= SEND_RETRY_LIMIT || remSize != 0) { in SendMsg()
97 "pid:%{public}d", retryCount, SEND_RETRY_LIMIT, idx, bufSize, fd_, pid_); in SendMsg()
/ohos5.0/base/sensors/sensor/utils/ipc/src/
H A Dstream_session.cpp68 while (remSize > 0 && retryCount < SEND_RETRY_LIMIT) { in SendMsg()
94 if (retryCount >= SEND_RETRY_LIMIT || remSize != 0) { in SendMsg()
96 retryCount, SEND_RETRY_LIMIT, idx, size, fd_); in SendMsg()
/ohos5.0/base/sensors/sensor/utils/common/src/
H A Dsensor_basic_data_channel.cpp37 constexpr int32_t SEND_RETRY_LIMIT = 32; variable
178 } while (remSize > 0 && retryCount < SEND_RETRY_LIMIT); in SendData()
179 if ((retryCount >= SEND_RETRY_LIMIT) && (remSize > 0)) { in SendData()
/ohos5.0/base/sensors/sensor/utils/ipc/include/
H A Dproto.h23 static constexpr size_t SEND_RETRY_LIMIT = 32; variable
/ohos5.0/foundation/multimodalinput/input/util/common/include/
H A Dconfig_multimodal.h60 #define SEND_RETRY_LIMIT 100 macro
/ohos5.0/base/msdp/device_status/utils/common/include/
H A Dproto.h41 inline constexpr int32_t SEND_RETRY_LIMIT { 32 };