Home
last modified time | relevance | path

Searched refs:time (Results 1 – 14 of 14) sorted by relevance

/trusty/user/base/lib/libc-trusty/
Dtime.c32 int64_t target, time; in trusty_nanodelay() local
39 rc = trusty_gettime(clock_id, &time); in trusty_nanodelay()
42 target = time + sleep_time; in trusty_nanodelay()
44 while (time < target) { in trusty_nanodelay()
45 rc = trusty_gettime(clock_id, &time); in trusty_nanodelay()
105 int trusty_gettime(clockid_t clock_id, int64_t* time) { in trusty_gettime() argument
106 return _trusty_gettime(clock_id, 0, time); in trusty_gettime()
114 int64_t time; in __clock_gettime() local
115 int rc = trusty_gettime(clock_id, &time); in __clock_gettime()
121 ts->tv_sec = (time_t)(time / NS_PER_SEC); in __clock_gettime()
[all …]
/trusty/kernel/platform/vexpress-a15/
Dtimer.c67 lk_bigtime_t time; in current_time_hires() local
69 time = ticks * periodic_interval * 1000ULL; in current_time_hires()
71 return time; in current_time_hires()
75 lk_time_t time; in current_time() local
77 time = ticks * periodic_interval; in current_time()
79 return time; in current_time()
/trusty/user/base/lib/libc-trusty/include/trusty/
Dtime.h30 int trusty_gettime(clockid_t clock_id, int64_t* time);
/trusty/vendor/google/aosp/scripts/
Dlog_processor.py22 import time
105 done_time = time.time() - active_entry.pending[message]
117 start_time = time.time()
235 running_time = time.time() - start_time
Drun_tests.py37 import time
372 test_start_time = time.time()
439 elapsed = time.time() - test_start_time
/trusty/user/base/interface/smc/
DREADME11 - Service can only process one message at a time.
/trusty/device/arm/generic-arm64/project/qemu/
Dqemu.py16 import time
281 time.sleep(1)
418 time.sleep(1)
697 time.sleep(1)
727 time.sleep(1)
773 time.sleep(1)
/trusty/kernel/lib/trusty/include/
Dsyscall_table.h39 DEF_SYSCALL(0x7, gettime, long, 3, uint32_t clock_id, uint32_t flags, int64_t *time)
/trusty/user/base/lib/libc-trusty/test/
Dlibc_test.c178 TEST_F(libc, time) { in TEST_F() argument
197 time_t time = 0; in TEST_F() local
198 struct tm* result = localtime(&time); in TEST_F()
209 time += 24 * 60 * 60; in TEST_F()
210 result = localtime(&time); in TEST_F()
/trusty/kernel/lib/trusty/
Dsyscall.c244 long sys_gettime(uint32_t clock_id, uint32_t flags, user_addr_t time) { in sys_gettime() argument
248 return copy_to_user(time, &t, sizeof(int64_t)); in sys_gettime()
/trusty/user/app/storage/
DREADME.md70 Every block in the file system starts with a 16 byte iv struct. Each time the
/trusty/vendor/google/aosp/
Dpylintrc62 # multiple time. See also the "--disable" option for examples.
/trusty/user/app/storage/test/block_host_test/
Dblock_test.c42 long gettime(uint32_t clock_id, uint32_t flags, int64_t* time) { in gettime() argument
50 *time = ts.tv_sec * 1000000000LL + ts.tv_nsec; in gettime()
/trusty/user/base/lib/dlmalloc/
Ddlmalloc.c3190 magic = (size_t)(time(0) ^ (size_t)0x55555555U); in init_mparams()