Searched refs:tv (Results 1 – 8 of 8) sorted by relevance
| /developtools/profiler/device/base/test/unittest/ |
| D | schedule_task_manager_test.cpp | 74 struct timeval tv; in __anon56db911a0402() local 75 gettimeofday(&tv, nullptr); in __anon56db911a0402() 83 struct timeval tv = { 0, 0 }; variable 84 gettimeofday(&tv, nullptr); 111 struct timeval tv; in __anon56db911a0502() local 112 gettimeofday(&tv, nullptr); in __anon56db911a0502() 121 struct timeval tv = { 0, 0 }; variable 122 gettimeofday(&tv, nullptr);
|
| /developtools/hdc/src/common/ |
| D | uart.cpp | 284 struct timeval tv; in ReadUartDev() local 285 tv.tv_sec = 0; in ReadUartDev() 288 tv.tv_usec = WaitResponseTimeOutMs * msTous; in ReadUartDev() 289 tv.tv_sec = tv.tv_usec / sTous; in ReadUartDev() 290 tv.tv_usec = tv.tv_usec % sTous; in ReadUartDev() 291 WRITE_LOG(LOG_DEBUG, "time = %d %d", tv.tv_sec, tv.tv_sec); in ReadUartDev() 297 ret = select(uart.devUartHandle + 1, &readFds, nullptr, nullptr, &tv); in ReadUartDev() 303 tv.tv_usec = ReadGiveUpTimeOutTimeMs * msTous; in ReadUartDev() 304 tv.tv_sec = tv.tv_usec / sTous; in ReadUartDev() 305 tv.tv_usec = tv.tv_usec % sTous; in ReadUartDev() [all …]
|
| /developtools/profiler/device/plugins/native_hook/test/unittest/ |
| D | stack_writer_test.cpp | 102 time_t tv = time(nullptr); in RandData() local 103 if (tv == -1) { in RandData() 104 tv = 1; in RandData() 106 unsigned int seed = (unsigned int)tv; in RandData()
|
| /developtools/ace_js2bundle/ace-loader/test/rich/testcase/pages/mediaQuery/ |
| D | mediaQuery.css | 4 @media (device-type: tv) {
|
| /developtools/profiler/host/smartperf/client/client_command/ |
| D | sp_utils.cpp | 169 struct timeval tv; in GetCurTime() local 170 gettimeofday(&tv, nullptr); in GetCurTime() 171 long long timestamp = tv.tv_sec * 1000 + tv.tv_usec / 1000; in GetCurTime()
|
| /developtools/profiler/device/plugins/native_hook/test/ |
| D | malloc_test.cpp | 217 time_t tv = time(nullptr); in ThreadFuncC() local 218 if (tv == -1) { in ThreadFuncC() 219 tv = 1; in ThreadFuncC() 222 unsigned int seed = static_cast<unsigned int>(tv); in ThreadFuncC()
|
| D | hook_test.c | 205 time_t tv = time(NULL); in ThreadFuncC() local 206 if (tv == -1) { in ThreadFuncC() 207 tv = 1; in ThreadFuncC() 209 unsigned int seed = (unsigned int)tv; in ThreadFuncC()
|
| /developtools/profiler/host/smartperf/client/client_command_fps/ |
| D | main.cpp | 197 struct timeval tv; in GetSurfaceFrame() local 198 gettimeofday(&tv, nullptr); in GetSurfaceFrame() 199 fpsInfo.currentFpsTime = tv.tv_sec * 1e3 + tv.tv_usec / 1e3; in GetSurfaceFrame()
|