Home
last modified time | relevance | path

Searched refs:USECTONSEC (Results 1 – 12 of 12) sorted by relevance

/ohos5.0/foundation/communication/dsoftbus/adapter/common/net/bluetooth/common/
H A Dsoftbus_adapter_bt_common.c288 #define USECTONSEC 1000 in SoftBusComputeWaitBleSendDataTime() macro
291 int64_t time = now.sec * USECTONSEC * USECTONSEC + now.usec + (int64_t)waitMillis * USECTONSEC; in SoftBusComputeWaitBleSendDataTime()
292 outtime->sec = time / USECTONSEC / USECTONSEC; in SoftBusComputeWaitBleSendDataTime()
293 outtime->usec = time % (USECTONSEC * USECTONSEC); in SoftBusComputeWaitBleSendDataTime()
/ohos5.0/foundation/communication/dsoftbus/sdk/transmission/trans_channel/proxy/src/
H A Dclient_trans_pending.c40 #define USECTONSEC 1000LL macro
138 int64_t time = now.sec * USECTONSEC * USECTONSEC + now.usec + (int64_t)waitMillis * USECTONSEC; in ComputeWaitPendTime()
139 outtime->sec = time / USECTONSEC / USECTONSEC; in ComputeWaitPendTime()
140 outtime->usec = time % (USECTONSEC * USECTONSEC); in ComputeWaitPendTime()
/ohos5.0/foundation/communication/dsoftbus/core/connection/br/src/
H A Dsoftbus_conn_br_pending_packet.c109 #define USECTONSEC 1000LL in ConnBrGetBrPendingPacket() macro
138 …int64_t time = (now.sec * USECTONSEC * USECTONSEC + now.usec + (int64_t)(waitMillis * USECTONSEC)); in ConnBrGetBrPendingPacket()
139 outtime.sec = time / USECTONSEC / USECTONSEC; in ConnBrGetBrPendingPacket()
140 outtime.usec = time % (USECTONSEC * USECTONSEC); in ConnBrGetBrPendingPacket()
/ohos5.0/foundation/communication/dsoftbus/tests/core/authentication/unittest/
H A Dauth_test_mock.cpp191 #define USECTONSEC 1000LL in WaitForSignal() macro
197 int64_t time = now.sec * USECTONSEC * USECTONSEC + now.usec + DELAY_TIME * USECTONSEC; in WaitForSignal()
199 tv.sec = time / USECTONSEC / USECTONSEC; in WaitForSignal()
200 tv.usec = time % (USECTONSEC * USECTONSEC); in WaitForSignal()
/ohos5.0/foundation/communication/dsoftbus/core/bus_center/lnn/lane_hub/lane_manager/src/
H A Dlnn_lane_link_wifi_direct.c36 #define USECTONSEC 1000LL macro
504 int64_t time = now.sec * USECTONSEC * USECTONSEC + now.usec + (int64_t)waitMillis * USECTONSEC; in ComputeWaitForceDownTime()
505 outtime->sec = time / USECTONSEC / USECTONSEC; in ComputeWaitForceDownTime()
506 outtime->usec = time % (USECTONSEC * USECTONSEC); in ComputeWaitForceDownTime()
/ohos5.0/foundation/communication/dsoftbus/core/connection/common/src/
H A Dsoftbus_conn_common.c158 #define USECTONSEC 1000LL in ConnectSoftBusCondWait() macro
167 now.sec += (now.usec + ((int32_t)timeMillis * USECTONSEC)) / MICROSECONDS; in ConnectSoftBusCondWait()
168 now.usec = (now.usec + ((int32_t)timeMillis * USECTONSEC)) % MICROSECONDS; in ConnectSoftBusCondWait()
/ohos5.0/foundation/communication/ipc/utils/src/
H A Drpc_session_handle.c27 #define USECTONSEC 1000 in GetWaitTime() macro
34 waitTime->tv_nsec = now.tv_usec * USECTONSEC; in GetWaitTime()
/ohos5.0/foundation/communication/ipc/services/dbinder/c/include/
H A Ddbinder_types.h37 #define USECTONSEC 1000 macro
/ohos5.0/foundation/communication/dsoftbus/adapter/common/kernel/posix/
H A Dsoftbus_adapter_thread.c418 #define USECTONSEC 1000 in SoftBusCondWait() macro
439 tv.tv_nsec = time->usec * USECTONSEC; in SoftBusCondWait()
/ohos5.0/foundation/communication/dsoftbus/core/transmission/trans_channel/proxy/src/
H A Dsoftbus_proxychannel_session.c40 #define USECTONSEC 1000 macro
/ohos5.0/foundation/communication/ipc/ipc/native/c/rpc/src/
H A Drpc_process_skeleton.c396 waitTime.tv_nsec = now.tv_usec * USECTONSEC; in AddSendThreadInWait()
/ohos5.0/foundation/communication/ipc/services/dbinder/c/src/
H A Ddbinder_service.c316 waitTime->tv_nsec = now.tv_usec * USECTONSEC; in GetWaitTime()