| /system/incremental_delivery/incfs/include/ |
| D | incfs_inline.h | 440 inline ErrorCode setUidReadTimeouts(const Control& control, Span<const UidReadTimeouts> timeouts) { in setUidReadTimeouts() argument 441 return IncFs_SetUidReadTimeouts(control, timeouts.data(), timeouts.size()); in setUidReadTimeouts() 445 std::vector<UidReadTimeouts> timeouts(32); in getUidReadTimeouts() 446 size_t count = timeouts.size(); in getUidReadTimeouts() 447 auto res = IncFs_GetUidReadTimeouts(control, timeouts.data(), &count); in getUidReadTimeouts() 449 timeouts.resize(count); in getUidReadTimeouts() 450 res = IncFs_GetUidReadTimeouts(control, timeouts.data(), &count); in getUidReadTimeouts() 456 timeouts.resize(count); in getUidReadTimeouts() 457 return std::move(timeouts); in getUidReadTimeouts()
|
| D | incfs_ndk.h | 272 const IncFsUidReadTimeouts timeouts[], size_t count);
|
| D | incfs.h | 260 ErrorCode setUidReadTimeouts(const Control& control, Span<const UidReadTimeouts> timeouts);
|
| /system/chre/chpp/platform/linux/include/chpp/platform/ |
| D | platform_condition_variable.h | 52 uint64_t timeoutS = timeoutNs / CHPP_NSEC_PER_SEC; in chppConditionVariableTimedWait() local 57 now.tv_sec += timeoutS; in chppConditionVariableTimedWait()
|
| /system/chre/chpp/platform/linux/ |
| D | notifier.c | 75 uint64_t timeoutS = timeoutNs / CHPP_NSEC_PER_SEC; in chppPlatformNotifierTimedWait() local 82 timeout.tv_sec += timeoutS; in chppPlatformNotifierTimedWait()
|
| /system/logging/liblog/tests/ |
| D | test_utils.h | 20 // multiplier to use for timeouts. If the device has set this property, we use it.
|
| /system/chre/chpp/ |
| D | Android.bp | 237 // Speed up tests by setting timeouts to 50 ms. 238 // Note: the value shouldn't be too low to avoid timeouts on slow test servers.
|
| /system/security/keystore2/src/metrics_store/ |
| D | tests.rs | 123 for (timeouts, expected) in test_cases { in test_log_auth_timeout_seconds() 125 timeouts.iter().map(|t| create_key_param_with_auth_timeout(*t)).collect(); in test_log_auth_timeout_seconds()
|
| /system/cros-codecs/ci/ |
| D | template.yaml | 7 timeouts:
|
| /system/logging/logd/ |
| D | LogSize.cpp | 76 * We've been seeing timeouts from logcat in bugreports for years, but the in GetBufferSizeFromProperties()
|
| /system/update_engine/scripts/ |
| D | ota_stress_test.py | 110 metavar='TIMEOUTS',
|
| /system/chre/host/exynos/ |
| D | exynos_daemon.h | 105 * up to handle timeouts), we forcibly terminate the thread on a daemon
|
| /system/incremental_delivery/incfs/tests/ |
| D | incfs_test.cpp | 829 TEST_F(IncFsTest, Timeouts) { in TEST_F() argument 835 IncFsUidReadTimeouts timeouts[2] = {{1, 1000, 2000, 3000}, {2, 1000, 3000, 4000}}; in TEST_F() local 837 EXPECT_EQ(0, IncFs_SetUidReadTimeouts(control_, timeouts, std::size(timeouts))); in TEST_F() 849 EXPECT_EQ(0, memcmp(timeouts, outTimeouts, 2 * sizeof(timeouts[0]))); in TEST_F() 1398 IncFsUidReadTimeouts timeouts[1] = { in TEST_F() local 1400 ASSERT_EQ(0, IncFs_SetUidReadTimeouts(control_, timeouts, std::size(timeouts))); in TEST_F()
|
| /system/chre/pal/include/chre/pal/ |
| D | wifi.h | 335 * timeouts. In other words, if a successful scan result is not produced by 406 * behavior regarding timeouts, indicating failure via rangingEventCallback 487 * behavior regarding timeouts and failure indication, via
|
| /system/incremental_delivery/incfs/ |
| D | incfs.cpp | 1697 const IncFsUidReadTimeouts timeouts[], size_t count) { in IncFs_SetUidReadTimeouts() argument 1708 .uid = (uint32_t)timeouts[i].uid, in IncFs_SetUidReadTimeouts() 1709 .min_time_us = timeouts[i].minTimeUs, in IncFs_SetUidReadTimeouts() 1710 .min_pending_time_us = timeouts[i].minPendingTimeUs, in IncFs_SetUidReadTimeouts() 1711 .max_pending_time_us = timeouts[i].maxPendingTimeUs, in IncFs_SetUidReadTimeouts() 1725 IncFsUidReadTimeouts timeouts[], size_t* bufferSize) { in IncFs_GetUidReadTimeouts() argument 1747 timeouts[i].uid = argTimeouts[i].uid; in IncFs_GetUidReadTimeouts() 1748 timeouts[i].minTimeUs = argTimeouts[i].min_time_us; in IncFs_GetUidReadTimeouts() 1749 timeouts[i].minPendingTimeUs = argTimeouts[i].min_pending_time_us; in IncFs_GetUidReadTimeouts() 1750 timeouts[i].maxPendingTimeUs = argTimeouts[i].max_pending_time_us; in IncFs_GetUidReadTimeouts()
|
| /system/core/fastboot/ |
| D | socket.h | 109 // as appropriate to help distinguish between normal timeouts and fatal errors. Returns true if
|
| /system/chre/java/test/cross_validation/src/com/google/android/chre/test/crossvalidator/ |
| D | ChreCrossValidatorBase.java | 35 * and waiting on data with timeouts without getting into specifics of how to parse data and how to
|
| /system/extras/ioshark/ |
| D | collect-straces-ftraces.sh | 180 …CHER --throttle 200 --ignore-security-exceptions --ignore-crashes --ignore-timeouts -v -v -v 25000'
|
| /system/memory/libmemunreachable/ |
| D | README.md | 47 slowdowns or timeouts is to first run libmemunreachable and look at
|
| /system/extras/multinetwork/ |
| D | httpurl.cpp | 159 // connect() timeouts without nonblocking sockets and select/poll/epoll. in makeTcpSocket()
|
| /system/chre/java/test/utils/src/com/google/android/utils/chre/ |
| D | ChreTestUtil.java | 49 // Various timeouts for Context Hub operations.
|
| /system/logging/liblog/ |
| D | logd_reader.cpp | 288 /* Set timeouts for non-blocking mode but not if wrapping mode is also set. in logdOpen()
|
| /system/update_engine/ |
| D | metrics_utils.cc | 173 // variety of errors (proxy errors, host not reachable, timeouts etc.). in GetDownloadErrorCode()
|
| /system/chre/chpp/include/chpp/ |
| D | app.h | 549 // When the first outstanding request sent from the client timeouts. 551 // When the first outstanding request sent from the service timeouts.
|
| /system/media/audio_utils/include/audio_utils/ |
| D | fifo.h | 30 /** Index is not multi-thread safe. No support for synchronization or timeouts. */ 32 /** Index is multi-thread safe. Synchronization is by polling, timeouts by clock_nanosleep(). */
|