OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:systemtime
(Results
51 - 75
of
319
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/prebuilts/go/linux-x86/src/os/
doc.go
59
//
SystemTime
returns the system CPU time of the exited process and its children.
60
func (p *ProcessState)
SystemTime
() time.Duration {
61
return p.
systemTime
()
/system/extras/tests/framebuffer/
refresh.c
19
int64_t
systemTime
()
146
int64_t time =
systemTime
();
159
int64_t now =
systemTime
();
/device/generic/goldfish/camera/
EmulatedFakeCameraDevice.cpp
203
if ((
systemTime
(SYSTEM_TIME_MONOTONIC) - mLastRedrawn) >= mRedrawAfter) {
227
mLastRedrawn =
systemTime
(SYSTEM_TIME_MONOTONIC);
231
mCurFrameTimestamp =
systemTime
(SYSTEM_TIME_MONOTONIC);
402
if ((
systemTime
(SYSTEM_TIME_MONOTONIC) - mLastRotatedAt) >= mRotateFreq) {
403
mLastRotatedAt =
systemTime
(SYSTEM_TIME_MONOTONIC);
/frameworks/rs/
rsScriptC_Lib.cpp
104
return nanoseconds_to_milliseconds(
systemTime
(SYSTEM_TIME_MONOTONIC));
112
return
systemTime
(SYSTEM_TIME_MONOTONIC);
121
sc->mEnviroment.mLastDtTime =
systemTime
(SYSTEM_TIME_MONOTONIC);
/frameworks/native/libs/gui/
OccupancyTracker.cpp
65
nsecs_t now =
systemTime
();
/frameworks/native/services/sensorservice/tests/
sensorservicetest.cpp
78
sStartTime =
systemTime
();
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
shappmgr.h
171
SYSTEMTIME
stAssigned;
172
SYSTEMTIME
stPublished;
173
SYSTEMTIME
stScheduled;
174
SYSTEMTIME
stExpire;
bluetoothapis.h
43
SYSTEMTIME
stLastSeen;
44
SYSTEMTIME
stLastUsed;
locationapi.h
52
STDMETHOD_(HRESULT,GetTimestamp)(THIS_
SYSTEMTIME
*pCreationTime) PURE;
79
STDMETHOD_(HRESULT,GetTimestamp)(THIS_
SYSTEMTIME
*pCreationTime) PURE;
rpcasync.h
114
SYSTEMTIME
SystemTime
;
winnls.h
674
WINBASEAPI int WINAPI GetTimeFormatA(LCID Locale,DWORD dwFlags,CONST
SYSTEMTIME
*lpTime,LPCSTR lpFormat,LPSTR lpTimeStr,int cchTime);
675
WINBASEAPI int WINAPI GetTimeFormatW(LCID Locale,DWORD dwFlags,CONST
SYSTEMTIME
*lpTime,LPCWSTR lpFormat,LPWSTR lpTimeStr,int cchTime);
676
WINBASEAPI int WINAPI GetDateFormatA(LCID Locale,DWORD dwFlags,CONST
SYSTEMTIME
*lpDate,LPCSTR lpFormat,LPSTR lpDateStr,int cchDate);
677
WINBASEAPI int WINAPI GetDateFormatW(LCID Locale,DWORD dwFlags,CONST
SYSTEMTIME
*lpDate,LPCWSTR lpFormat,LPWSTR lpDateStr,int cchDate);
862
const
SYSTEMTIME
*lpDate,
872
const
SYSTEMTIME
*lpDuration,
882
const
SYSTEMTIME
*lpDuration,
[
all
...]
winperf.h
23
SYSTEMTIME
SystemTime
;
/external/icu/icu4c/source/test/intltest/
windttst.cpp
71
SYSTEMTIME
winNow;
73
SYSTEMTIME
st;
/frameworks/native/libs/binder/
PermissionCache.cpp
101
nsecs_t t = -
systemTime
();
103
t +=
systemTime
();
/frameworks/native/libs/input/
VirtualKeyMap.cpp
63
nsecs_t startTime =
systemTime
(SYSTEM_TIME_MONOTONIC);
68
nsecs_t elapsedTime =
systemTime
(SYSTEM_TIME_MONOTONIC) - startTime;
/hardware/libhardware/tests/input/evdev/
InputDevice_test.cpp
103
auto now =
systemTime
(SYSTEM_TIME_MONOTONIC);
119
auto now =
systemTime
(SYSTEM_TIME_MONOTONIC);
/system/core/libutils/
PropertyMap.cpp
132
nsecs_t startTime =
systemTime
(SYSTEM_TIME_MONOTONIC);
137
nsecs_t elapsedTime =
systemTime
(SYSTEM_TIME_MONOTONIC) - startTime;
/system/vold/
TrimTask.cpp
130
nsecs_t start =
systemTime
(SYSTEM_TIME_BOOTTIME);
135
nsecs_t delta =
systemTime
(SYSTEM_TIME_BOOTTIME) - start;
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
AudioOutputDescriptor.cpp
105
sysTime =
systemTime
();
129
sysTime =
systemTime
();
449
nsecs_t sysTime =
systemTime
();
462
nsecs_t sysTime =
systemTime
();
554
nsecs_t sysTime =
systemTime
();
/frameworks/av/cmds/screenrecord/
Overlay.cpp
68
mStartMonotonicNsecs =
systemTime
(CLOCK_MONOTONIC);
69
mStartRealtimeNsecs =
systemTime
(CLOCK_REALTIME);
401
window.presentationTime(
systemTime
(CLOCK_MONOTONIC) - holdTime);
/frameworks/base/libs/hwui/renderthread/
RenderThread.cpp
293
nsecs_t timeoutNanos = nextWakeup -
systemTime
(SYSTEM_TIME_MONOTONIC);
382
// Most tasks won't be delayed, so avoid unnecessary
systemTime
() calls
383
if (next->mRunAt <= 0 || next->mRunAt <=
systemTime
(SYSTEM_TIME_MONOTONIC)) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/
LoadAverageService.java
184
final int
systemTime
= stats.getLastSystemTime();
190
final int totalTime = userTime+
systemTime
+iowaitTime+irqTime+softIrqTime+idleTime;
195
int systemW = (
systemTime
*W)/totalTime;
/external/eigen/bench/
BenchTimer.h
137
SYSTEMTIME
st;
/external/google-breakpad/src/client/windows/sender/
crash_report_sender.cc
121
SYSTEMTIME
system_time;
/external/lzma/CPP/Windows/
PropVariantConv.cpp
14
SYSTEMTIME
st;
Completed in 701 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>