HomeSort by relevance Sort by last modified time
    Searched full:uptime (Results 1 - 25 of 288) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/autotest/client/profilers/catprofile/
control 1 job.profilers.add('catprofile', ['/proc/meminfo','/proc/uptime'], 'meminfo', 2)
  /external/tcpdump/tests/
hdlc1.out 1 SLARP (length: 18), keepalive: mineseen=0x000d0a31, yourseen=0x57405e26, reliability=0x04ff, link uptime=49d12h52m33s
hdlc4.out 1 SLARP (length: 20), keepalive: mineseen=0x00000001, yourseen=0x00000000, reliability=0xffff, link uptime=1d0h1m32s
4 SLARP (length: 20), keepalive: mineseen=0x00000001, yourseen=0x00000000, reliability=0xffff, link uptime=1d0h1m42s
5 SLARP (length: 20), keepalive: mineseen=0x00000001, yourseen=0x00000001, reliability=0xffff, link uptime=1d4h41m19s
6 SLARP (length: 20), keepalive: mineseen=0x00000002, yourseen=0x00000001, reliability=0xffff, link uptime=1d0h1m52s
7 SLARP (length: 20), keepalive: mineseen=0x00000002, yourseen=0x00000002, reliability=0xffff, link uptime=1d4h41m29s
hdlc3.out 1 SLARP (length: 20), keepalive: mineseen=0x00000005, yourseen=0x00000002, reliability=0xffff, link uptime=0d2h12m5s
2 SLARP (length: 20), keepalive: mineseen=0x00000003, yourseen=0x00000005, reliability=0xffff, link uptime=0d6h51m44s
3 SLARP (length: 20), keepalive: mineseen=0x00000006, yourseen=0x00000003, reliability=0xffff, link uptime=0d2h12m15s
4 SLARP (length: 20), keepalive: mineseen=0x00000004, yourseen=0x00000006, reliability=0xffff, link uptime=0d6h51m54s
5 SLARP (length: 20), keepalive: mineseen=0x00000007, yourseen=0x00000004, reliability=0xffff, link uptime=0d2h12m25s
6 SLARP (length: 20), keepalive: mineseen=0x00000005, yourseen=0x00000007, reliability=0xffff, link uptime=0d6h52m4s
18 SLARP (length: 20), keepalive: mineseen=0x00000008, yourseen=0x00000005, reliability=0xffff, link uptime=0d2h12m35s
19 SLARP (length: 20), keepalive: mineseen=0x00000006, yourseen=0x00000008, reliability=0xffff, link uptime=0d6h52m14s
21 SLARP (length: 20), keepalive: mineseen=0x00000009, yourseen=0x00000006, reliability=0xffff, link uptime=0d2h12m45s
22 SLARP (length: 20), keepalive: mineseen=0x00000007, yourseen=0x00000009, reliability=0xffff, link uptime=0d6h52m24
    [all...]
  /external/toybox/tests/
uptime.test 7 testing "uptime" "uptime | grep -q 'load average:' && echo t" "t\n" "" ""
8 testing "uptime -s" \
9 "uptime -s | grep -q '^[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9] [0-9][0-9]:[0-9][0-9]:[0-9][0-9]$' && echo t" \
  /external/toybox/toys/other/
uptime.c 0 /* uptime.c - Tell how long the system has been running.
7 USE_UPTIME(NEWTOY(uptime, ">0ps", TOYFLAG_USR|TOYFLAG_BIN))
9 config UPTIME
10 bool "uptime"
14 usage: uptime [-ps]
19 -p Pretty (human-readable) uptime
41 t -= info.uptime;
50 // Uptime
51 info.uptime /= 60;
52 minutes = info.uptime%60
    [all...]
  /frameworks/base/core/tests/coretests/src/com/android/internal/os/
BatteryStatsBackgroundStatsTest.java 39 final MockClocks clocks = new MockClocks(); // holds realtime and uptime in ms
46 clocks.realtime = clocks.uptime = 10;
53 clocks.realtime = clocks.uptime = 100;
60 clocks.realtime = clocks.uptime = 201;
67 clocks.realtime = clocks.uptime = 303;
75 clocks.realtime = clocks.uptime = 409;
82 clocks.realtime = clocks.uptime = 417;
89 clocks.realtime = clocks.uptime = 530;
97 clocks.realtime = clocks.uptime = 690;
107 final MockClocks clocks = new MockClocks(); // holds realtime and uptime in m
    [all...]
BatteryStatsSensorTest.java 39 clocks.uptime = 100;
45 clocks.uptime = 200;
52 clocks.uptime = 400;
77 curr = 1000 * (clocks.realtime = clocks.uptime = 100);
82 curr = 1000 * (clocks.realtime = clocks.uptime = 200);
86 curr = 1000 * (clocks.realtime = clocks.uptime = 215);
94 curr = 1000 * (clocks.realtime = clocks.uptime = 550);
98 curr = 1000 * (clocks.realtime = clocks.uptime = 678);
113 curr = 1000 * (clocks.realtime = clocks.uptime = 100);
117 curr = 1000 * (clocks.realtime = clocks.uptime = 200)
    [all...]
MockClocks.java 21 public long uptime; field in class:MockClocks
30 return uptime;
BatteryStatsDualTimerTest.java 31 clocks.realtime = clocks.uptime = 100;
47 clocks.realtime = clocks.uptime = 200;
54 clocks.realtime = clocks.uptime = 300;
  /cts/hostsidetests/security/src/android/security/cts/
SecurityTestCase.java 38 String uptime = getDevice().executeShellCommand("cat /proc/uptime"); local
40 Integer.parseInt(uptime.substring(0, uptime.indexOf('.')));
49 String uptime = getDevice().executeShellCommand("cat /proc/uptime"); local
51 Integer.parseInt(uptime.substring(0, uptime.indexOf('.')));
87 String uptime = getDevice().executeShellCommand("cat /proc/uptime"); local
    [all...]
  /external/autotest/server/samples/
info.srv 3 print 'Uptime: ' + host.check_uptime()
  /system/sepolicy/prebuilts/api/26.0/public/
bootstat.te 11 # Read access to pseudo filesystems (for /proc/uptime).
  /system/sepolicy/prebuilts/api/27.0/public/
bootstat.te 11 # Read access to pseudo filesystems (for /proc/uptime).
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
ClientWakelockTracker.java 40 long uptime = SystemClock.uptimeMillis(); local
41 client.startAttributingWakelock(requestId, token, numRequestsInQueue, uptime);
42 updateConcurrentRequests(numRequestsInQueue, uptime);
53 long uptime = SystemClock.uptimeMillis(); local
54 client.stopAttributingWakelock(requestId, token, uptime);
60 updateConcurrentRequests(numRequestsInQueue, uptime);
65 long uptime = SystemClock.uptimeMillis(); local
68 client.stopAllPendingRequests(uptime);
76 long uptime = SystemClock.uptimeMillis(); local
81 client.updatePendingRequestWakelockTime(uptime);
    [all...]
  /packages/services/Car/service/src/com/android/car/
UptimeTracker.java 45 * "/storage/emulated/0/Android/data/interestingservice.uptime", 1 hour);
55 * mTracker.getTotalUptime(). Because this data is stored to disk, the uptime is maintained across
57 * ensure that crashes do not cause more than a certain amount of uptime to go untracked.
74 * The file that uptime metrics are stored to
79 * The uptime value retrieved from mUptimeFile
132 * Return the total amount of uptime that has been observed, in milliseconds.
134 * This is the sum of the uptime stored on disk + the uptime seen since the last snapshot.
152 if (!reader.nextName().equals("uptime")) {
161 Log.w(CarLog.TAG_SERVICE, "unable to read historical uptime data", e)
    [all...]
  /tools/test/connectivity/tools/lab/metrics/
uptime_metric.py 21 SECONDS_COMMAND = 'cat /proc/uptime | cut -f1 -d\' \''
22 READABLE_COMMAND = 'uptime -p | cut -f2- -d\' \''
42 time_seconds: uptime in total seconds
  /system/core/bootstat/
boot_event_record_store.cpp 39 // from the record into |uptime|.
40 bool ParseRecordEventTime(const std::string& path, int32_t* uptime) {
41 DCHECK_NE(static_cast<int32_t*>(nullptr), uptime); local
49 *uptime = file_stat.st_mtime;
61 auto uptime = std::chrono::duration_cast<std::chrono::seconds>( local
63 AddBootEventWithValue(event, uptime.count());
103 int32_t uptime; local
104 if (!ParseRecordEventTime(record_path, &uptime)) {
109 *record = std::make_pair(event, uptime);
  /system/chre/platform/include/chre/platform/
system_time.h 43 * Obtains the uptime of CHRE relative to CHRE initialization. There is no
46 * @return The uptime of CHRE.
  /system/extras/boottime_tools/bootio/
protos.proto 26 required int64 uptime = 2;
45 required int64 uptime = 2;
  /tools/tradefederation/core/prod-tests/tests/src/com/android/monkey/
MonkeyBaseTest.java 68 EasyMock.expect(mockDevice.executeShellCommand("cat /proc/uptime")).andReturn(
82 EasyMock.expect(mockDevice.executeShellCommand("cat /proc/uptime")).andReturn(
84 EasyMock.expect(mockDevice.executeShellCommand("cat /proc/uptime")).andReturn(
  /bionic/libc/kernel/uapi/linux/
sysinfo.h 24 __kernel_long_t uptime; member in struct:sysinfo
  /external/autotest/client/site_tests/platform_LogoutPerf/
control 20 out and measures the time elasped between the uptime metric 'logout-started'
  /external/autotest/client/tests/uptime/
control 2 NAME="Uptime Test"
  /external/iproute2/include/uapi/linux/
sysinfo.h 9 __kernel_long_t uptime; /* Seconds since boot */ member in struct:sysinfo

Completed in 698 milliseconds

1 2 3 4 5 6 7 8 91011>>