/frameworks/av/services/audioflinger/ |
D | FastThread.cpp | 226 time_t sec = newTs.tv_sec - mOldTs.tv_sec; in threadLoop() local 228 ALOGE_IF(sec < 0 || (sec == 0 && nsec < 0), in threadLoop() 232 --sec; in threadLoop() 243 mMeasuredWarmupTs.tv_sec += sec; in threadLoop() 269 if (sec > 0 || nsec > mUnderrunNs) { in threadLoop() 273 (int) sec, nsec / 1000000L); in threadLoop() 283 (int) sec, nsec / 1000000L); in threadLoop() 311 if (sec > 0 && sec < 4) { in threadLoop() 312 monotonicNs += sec * 1000000000; in threadLoop() 320 sec = newLoad.tv_sec - mOldLoad.tv_sec; in threadLoop() [all …]
|
D | AudioWatchdog.cpp | 67 time_t sec = newTs.tv_sec - mOldTs.tv_sec; in threadLoop() local 70 --sec; in threadLoop() 76 if (sec > 0) { in threadLoop() 77 if (sec < 4) { in threadLoop() 78 cycleNs += sec * 1000000000; in threadLoop() 83 mLogTs.tv_sec += sec; in threadLoop()
|
/frameworks/av/media/libnbaio/ |
D | MonoPipe.cpp | 130 time_t sec = nowTs.tv_sec - mWriteTs.tv_sec; in write() local 132 ALOGE_IF(sec < 0 || (sec == 0 && nsec < 0), in write() 136 --sec; in write() 139 if (sec == 0) { in write()
|
/frameworks/av/include/media/ |
D | Interpolator.h | 131 S sec, sec0, sec1; in findY() local 133 sec = (high->second - low->second) / interval; in findY() 155 m0 = (sec0 + sec) * 0.5f; in findY() 156 m1 = (sec1 + sec) * 0.5f; in findY() 165 const S maxSlope = 3 * sec; in findY()
|
/frameworks/native/services/surfaceflinger/Scheduler/ |
D | RefreshRateStats.h | 140 auto [sec, secRemainderMs] = std::div(minsRemainderMs, MS_PER_S); in getDateFormatFromMs() 143 days, hours, mins, sec, secRemainderMs); in getDateFormatFromMs()
|
/frameworks/base/location/java/android/location/ |
D | Location.java | 306 double sec = 0.0; in convert() local 312 sec = Double.parseDouble(seconds); in convert() 319 (min == 0) && (sec == 0); in convert() 333 if (sec < 0 || sec >= 60) { in convert() 338 val = deg*3600.0 + min*60.0 + sec; in convert()
|
/frameworks/base/core/proto/android/util/ |
D | log.proto | 29 optional uint64 sec = 1; field 56 optional uint64 sec = 1; field
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/objectivec/DevTools/ |
D | pddm_tests.py | 357 for idx2, (sec, expected) in enumerate(zip(sf._sections, line_counts), 1): 358 self.assertEqual(sec.num_lines_captured, expected, 360 (idx, idx2, sec.num_lines_captured, expected))
|
/frameworks/base/startop/scripts/app_startup/ |
D | run_app_with_prefetch | 29 -s, --sleep <sec> how long to sleep after readahead 30 -t, --timeout <sec> how many seconds to timeout in between each app run (default 10)
|
/frameworks/base/cmds/statsd/benchmark/ |
D | log_event_benchmark.cpp | 59 msg->entry_v1.sec = time(nullptr); in getSimpleLogMsgData()
|
/frameworks/opt/gamesdk/samples/cube/ |
D | gradle.properties | 16 # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
|
/frameworks/opt/gamesdk/third_party/cube/ |
D | gradle.properties | 16 # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
|
/frameworks/opt/gamesdk/samples/tuningfork/tftestapp/ |
D | gradle.properties | 12 # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
|
/frameworks/opt/gamesdk/samples/bouncyball/ |
D | gradle.properties | 16 # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
|
/frameworks/opt/gamesdk/samples/unitypackaging/ |
D | gradle.properties | 12 # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
|
/frameworks/layoutlib/bridge/tests/res/testApp/MyApplication/ |
D | gradle.properties | 17 # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
|
/frameworks/base/tests/TouchLatency/ |
D | gradle.properties | 17 # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
|
/frameworks/base/core/java/com/android/internal/view/ |
D | IInputContext.aidl | 79 void commitContent(in InputContentInfo inputContentInfo, int flags, in Bundle opts, int sec, in commitContent() argument
|
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/ |
D | WifiUtils.java | 47 long sec = diff % 60; //seconds in buildLoggingSummary() local 53 summary.append(Long.toString(sec) + "s "); in buildLoggingSummary()
|
/frameworks/base/cmds/statsd/src/guardrail/ |
D | StatsdStats.h | 546 LogLossStats(int32_t sec, int32_t count, int32_t error, int32_t tag, int32_t uid, in LogLossStats() 548 : mWallClockSec(sec), in LogLossStats()
|
/frameworks/base/cmds/incidentd/src/ |
D | Section.cpp | 245 WorkerThreadData::WorkerThreadData(const WorkerThreadSection* sec) in WorkerThreadData() argument 246 : section(sec), workerDone(false), workerError(NO_ERROR) {} in WorkerThreadData() 549 lastTimestamp.tv_sec = msg.entry_v1.sec; in BlockingCall() 554 proto.write(BinaryLogEntry::SEC, msg.entry_v1.sec); in BlockingCall()
|
/frameworks/base/cmds/statsd/src/socket/ |
D | StatsSocketListener.cpp | 132 msg.entry.sec = time(nullptr); in onDataAvailable()
|
/frameworks/av/media/libaudioclient/ |
D | ToneGenerator.cpp | 1177 time_t sec = stopTime.tv_sec - mStartTime.tv_sec; in stopTone() local 1180 --sec; in stopTone() 1184 if ((sec + 1) > ((time_t)(INT_MAX / mSamplingRate))) { in stopTone() 1185 mMaxSmp = sec * mSamplingRate; in stopTone() 1188 sec = sec * 1000 + nsec / 1000000; // duration in milliseconds in stopTone() 1189 mMaxSmp = (unsigned int)(((int64_t)sec * mSamplingRate) / 1000); in stopTone()
|
/frameworks/compile/mclinker/lib/Target/Mips/ |
D | MipsLDBackend.cpp | 810 LDSection* sec = *rs; in doRelax() local 812 if (LDFileFormat::Ignore == sec->kind() || !sec->hasRelocData()) in doRelax() 815 for (RelocData::iterator reloc = sec->getRelocData()->begin(); in doRelax() 816 reloc != sec->getRelocData()->end(); in doRelax()
|
/frameworks/opt/net/wifi/service/proto/src/ |
D | scorecard.proto | 89 optional UnivariateStatistic linkspeed = 4; // Link speed (Mbits/sec)
|