Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:MS_PER_SECOND
(Results
1 - 19
of
19
) sorted by relevance
/foundation/communication/dsoftbus/adapter/common/kernel/posix/
H
A
D
softbus_adapter_timer.c
30
#define
MS_PER_SECOND
1000
macro
81
value.it_value.tv_sec = tickets /
MS_PER_SECOND
;
in SoftBusStartTimer()
87
value.it_interval.tv_sec = tickets /
MS_PER_SECOND
;
in SoftBusStartTimer()
118
tm.tv_sec = ms /
MS_PER_SECOND
;
in SoftBusSleepMs()
119
tm.tv_usec = (ms %
MS_PER_SECOND
) * US_PER_MSECOND;
in SoftBusSleepMs()
164
return (uint64_t)time.tv_sec *
MS_PER_SECOND
+ (uint64_t)time.tv_usec / US_PER_MSECOND;
in SoftBusGetSysTimeMs()
169
uint32_t milliseconds = timestamp %
MS_PER_SECOND
;
170
time_t seconds = (time_t)(timestamp /
MS_PER_SECOND
);
/foundation/communication/dsoftbus/adapter/common/kernel/liteos_m/
H
A
D
softbus_adapter_timer.c
24
#define
MS_PER_SECOND
1000
macro
61
if (osTimerStart(timerId, ms * osKernelGetTickFreq() /
MS_PER_SECOND
) != osOK) {
in SoftBusStartTimer()
86
osDelay(ms * osKernelGetTickFreq() /
MS_PER_SECOND
);
in SoftBusSleepMs()
125
uint64_t ms = (uint64_t)time.tv_sec *
MS_PER_SECOND
+ (uint64_t)time.tv_usec / US_PER_MSECOND;
in SoftBusGetSysTimeMs()
/foundation/systemabilitymgr/samgr_lite/samgr/adapter/cmsis/
H
A
D
time_adapter.c
19
#define
MS_PER_SECOND
1000
macro
44
return (uint64)tick *
MS_PER_SECOND
/ ticksPerSecond;
in SAMGR_GetProcessTime()
/foundation/systemabilitymgr/samgr_lite/samgr/adapter/posix/
H
A
D
time_adapter.c
19
#define
MS_PER_SECOND
1000
macro
42
return ((ts.tv_sec *
MS_PER_SECOND
) + (ts.tv_nsec / NS_PER_MS));
in SAMGR_GetProcessTime()
/foundation/communication/dsoftbus/tests/sdk/transmission/trans_channel/udp/distributed_stream/
H
A
D
distributed_stream_test.h
27
#define
MS_PER_SECOND
(1000)
macro
43
return time.tv_sec *
MS_PER_SECOND
+ time.tv_nsec / NS_PER_MS;
in GetCurrent()
/foundation/communication/bluetooth_service/services/bluetooth/stack/platform/src/
H
A
D
event.c
89
timeout.tv_sec = now.tv_sec + ms /
MS_PER_SECOND
;
in EventWaitInternal()
90
timeout.tv_nsec = now.tv_usec *
MS_PER_SECOND
+ (ms %
MS_PER_SECOND
) * NS_PER_MS;
in EventWaitInternal()
/foundation/communication/bluetooth/frameworks/inner/c_adapter/
H
A
D
ohos_bt_gatt_utils.cpp
34
#define
MS_PER_SECOND
1000
macro
52
return ts.tv_sec *
MS_PER_SECOND
+ ts.tv_nsec / NS_PER_MS;
in GetBootMillis()
/foundation/communication/bluetooth_service/services/bluetooth/stack/platform/include/
H
A
D
alarm.h
29
#define
MS_PER_SECOND
1000
macro
H
A
D
event.h
26
#define
MS_PER_SECOND
1000
macro
/foundation/communication/bluetooth_service/services/bluetooth/service/src/util/
H
A
D
timer.h
24
#define
MS_PER_SECOND
1000
macro
/foundation/graphic/graphic_utils_lite/frameworks/
H
A
D
graphic_timer.cpp
32
constexpr int16_t
MS_PER_SECOND
= 1000;
247
its.it_value.tv_nsec = (periodMs_ %
MS_PER_SECOND
) * NS_PER_MS;
in Start()
248
its.it_value.tv_sec = periodMs_ /
MS_PER_SECOND
;
in Start()
/foundation/communication/bluetooth_service/services/bluetooth/stack/platform/linux/
H
A
D
alarm_linux.c
170
its.it_value.tv_sec = timeMs /
MS_PER_SECOND
;
in AlarmSet()
171
its.it_value.tv_nsec = (timeMs %
MS_PER_SECOND
) * NS_PER_MS;
in AlarmSet()
/foundation/resourceschedule/memmgr/services/memmgrservice/include/event/
H
A
D
memory_pressure_observer.h
23
#define
MS_PER_SECOND
1000
macro
/foundation/communication/bluetooth_service/services/bluetooth/service/src/util/internal/
H
A
D
timer_linux.cpp
225
its.it_value.tv_sec = ms /
MS_PER_SECOND
;
in Start()
226
its.it_value.tv_nsec = (ms %
MS_PER_SECOND
) * NS_PER_MS;
in Start()
/foundation/communication/bluetooth_service/services/bluetooth/service/src/common/
H
A
D
power_device.h
283
#define
MS_PER_SECOND
1000
macro
H
A
D
power_device.cpp
313
deadLineMs_ = ts.tv_sec *
MS_PER_SECOND
+ ts.tv_nsec / NS_PER_MS + ms;
in Start()
327
uint64_t presentMs = ts.tv_sec *
MS_PER_SECOND
+ ts.tv_nsec / NS_PER_MS;
in GetRemainMs()
/foundation/ability/form_fwk/interfaces/inner_api/include/
H
A
D
form_constants.h
150
constexpr int64_t
MS_PER_SECOND
= 1000;
member
/foundation/communication/dsoftbus/sdk/transmission/trans_channel/udp/stream/libsoftbus_stream/
H
A
D
vtp_stream_socket.cpp
44
const int
MS_PER_SECOND
= 1000;
member
379
MS_PER_SECOND
+ fillpStatsGetTime.usec / US_PER_MS)); /* ms */
in FillpAppStatistics()
/foundation/ability/form_fwk/services/src/
H
A
D
form_timer_mgr.cpp
351
int64_t refreshTime = timeInSec + nextGapTime * Constants::
MS_PER_SECOND
/ timeSpeed_;
in SetNextRefreshTime()
Completed in 11 milliseconds