Home
last modified time | relevance | path

Searched full:seconds (Results 1 – 25 of 2974) sorted by relevance

12345678910>>...119

/OK3568_Linux_fs/kernel/Documentation/networking/
H A Dnf_conntrack-sysctl.rst60 nf_conntrack_frag6_timeout - INTEGER (seconds)
65 nf_conntrack_generic_timeout - INTEGER (seconds)
80 nf_conntrack_icmp_timeout - INTEGER (seconds)
85 nf_conntrack_icmpv6_timeout - INTEGER (seconds)
127 nf_conntrack_tcp_timeout_close - INTEGER (seconds)
130 nf_conntrack_tcp_timeout_close_wait - INTEGER (seconds)
133 nf_conntrack_tcp_timeout_established - INTEGER (seconds)
136 nf_conntrack_tcp_timeout_fin_wait - INTEGER (seconds)
139 nf_conntrack_tcp_timeout_last_ack - INTEGER (seconds)
142 nf_conntrack_tcp_timeout_max_retrans - INTEGER (seconds)
[all …]
/OK3568_Linux_fs/buildroot/docs/website/
H A D.htaccess12 ExpiresDefault "access plus 1 seconds"
13 ExpiresByType image/x-icon "access plus 2592000 seconds"
14 ExpiresByType image/jpeg "access plus 2592000 seconds"
15 ExpiresByType image/png "access plus 2592000 seconds"
16 ExpiresByType image/gif "access plus 2592000 seconds"
17 ExpiresByType application/x-shockwave-flash "access plus 2592000 seconds"
18 ExpiresByType text/css "access plus 604800 seconds"
19 ExpiresByType text/javascript "access plus 216000 seconds"
20 ExpiresByType application/javascript "access plus 216000 seconds"
21 ExpiresByType application/x-javascript "access plus 216000 seconds"
[all …]
/OK3568_Linux_fs/kernel/Documentation/watchdog/
H A Dwatchdog-parameters.rst18 Maximum time, in seconds, for which the watchdog framework will take
44 Watchdog timeout in seconds. 1<= timeout <=63, default=60.
53 Watchdog timeout in seconds. (0 < timeout < 18000, default=60
62 Watchdog timeout in seconds. (1<=timeout<=3600, default=30
74 Watchdog margin in seconds (default=60)
83 Watchdog timeout in seconds. (default=120)
92 Watchdog time in seconds. (default=5)
101 Watchdog heartbeats in seconds. (default = 15)
110 Watchdog time in seconds. (default=30)
119 Watchdog margin in seconds (default 60s)
[all …]
H A Dwatchdog-api.rst98 representing the timeout in seconds. The driver returns the real
104 printf("The timeout was set to %d seconds\n", timeout);
106 This example might actually print "The timeout was set to 60 seconds"
113 printf("The timeout was is %d seconds\n", timeout);
127 Note that the pretimeout is the number of seconds before the time
128 when the timeout will go off. It is not the number of seconds until
129 the pretimeout. So, for instance, if you set the timeout to 60 seconds
130 and the pretimeout to 10 seconds, the pretimeout will go off in 50
131 seconds. Setting a pretimeout to zero disables it.
136 printf("The pretimeout was is %d seconds\n", timeout);
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v1/export-user_ta/include/
H A Dutee_defines.h151 (((t1).seconds == (t2).seconds) ? \
153 ((t1).seconds < (t2).seconds))
156 (((t1).seconds == (t2).seconds) ? \
158 ((t1).seconds <= (t2).seconds))
161 (dst).seconds = (t1).seconds + (t2).seconds; \
164 (dst).seconds++; \
170 (dst).seconds = (t1).seconds - (t2).seconds; \
172 (dst).seconds--; \
/OK3568_Linux_fs/external/security/rk_tee_user/v1/export-user_ta/host_include/
H A Dutee_defines.h151 (((t1).seconds == (t2).seconds) ? \
153 ((t1).seconds < (t2).seconds))
156 (((t1).seconds == (t2).seconds) ? \
158 ((t1).seconds <= (t2).seconds))
161 (dst).seconds = (t1).seconds + (t2).seconds; \
164 (dst).seconds++; \
170 (dst).seconds = (t1).seconds - (t2).seconds; \
172 (dst).seconds--; \
/OK3568_Linux_fs/kernel/include/linux/
H A Dtimekeeper_internal.h21 * @xtime_nsec: Shifted (fractional) nano seconds offset for readout
49 * @xtime_sec: Current CLOCK_REALTIME time in seconds
50 * @ktime_sec: Current CLOCK_MONOTONIC time in seconds
55 * @tai_offset: The current UTC to TAI offset in seconds
59 * @raw_sec: CLOCK_MONOTONIC_RAW time in seconds
62 * @xtime_interval: Number of clock shifted nano seconds in one NTP
64 * @xtime_remainder: Shifted nano seconds left over when rounding
66 * @raw_interval: Shifted raw nano seconds accumulated per NTP interval.
68 * shifted nano seconds.
69 * @ntp_error_shift: Shift conversion between clock shifted nano seconds and
[all …]
/OK3568_Linux_fs/kernel/drivers/rtc/
H A Drtc-mc13xxx.c63 unsigned int seconds, days1, days2; in mc13xxx_rtc_read_time() local
75 ret = mc13xxx_reg_read(priv->mc13xxx, MC13XXX_RTCTOD, &seconds); in mc13xxx_rtc_read_time()
84 rtc_time64_to_tm((time64_t)days1 * SEC_PER_DAY + seconds, tm); in mc13xxx_rtc_read_time()
92 unsigned int seconds, days; in mc13xxx_rtc_set_time() local
96 days = div_s64_rem(rtc_tm_to_time64(tm), SEC_PER_DAY, &seconds); in mc13xxx_rtc_set_time()
116 * write seconds=0 to prevent a day switch between writing days in mc13xxx_rtc_set_time()
117 * and seconds below in mc13xxx_rtc_set_time()
127 ret = mc13xxx_reg_write(priv->mc13xxx, MC13XXX_RTCTOD, seconds); in mc13xxx_rtc_set_time()
158 unsigned int seconds, days; in mc13xxx_rtc_read_alarm() local
165 ret = mc13xxx_reg_read(priv->mc13xxx, MC13XXX_RTCTODA, &seconds); in mc13xxx_rtc_read_alarm()
[all …]
H A Drtc-tps6586x.c73 time64_t seconds; in tps6586x_rtc_read_time() local
89 seconds = ticks >> 10; in tps6586x_rtc_read_time()
90 rtc_time64_to_tm(seconds, tm); in tps6586x_rtc_read_time()
99 time64_t seconds; in tps6586x_rtc_set_time() local
103 seconds = rtc_tm_to_time64(tm); in tps6586x_rtc_set_time()
105 ticks = (unsigned long long)seconds << 10; in tps6586x_rtc_set_time()
152 time64_t seconds; in tps6586x_rtc_set_alarm() local
161 seconds = rtc_tm_to_time64(&alrm->time); in tps6586x_rtc_set_alarm()
182 if ((seconds - rtc_current_time) > ALM1_VALID_RANGE_IN_SEC) in tps6586x_rtc_set_alarm()
183 seconds = rtc_current_time - 1; in tps6586x_rtc_set_alarm()
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/
H A Dutee_defines.h272 (((t1).seconds == (t2).seconds) ? \
274 ((t1).seconds < (t2).seconds))
277 (((t1).seconds == (t2).seconds) ? \
279 ((t1).seconds <= (t2).seconds))
282 (dst).seconds = (t1).seconds + (t2).seconds; \
285 (dst).seconds++; \
291 (dst).seconds = (t1).seconds - (t2).seconds; \
293 (dst).seconds--; \
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/host_include/
H A Dutee_defines.h272 (((t1).seconds == (t2).seconds) ? \
274 ((t1).seconds < (t2).seconds))
277 (((t1).seconds == (t2).seconds) ? \
279 ((t1).seconds <= (t2).seconds))
282 (dst).seconds = (t1).seconds + (t2).seconds; \
285 (dst).seconds++; \
291 (dst).seconds = (t1).seconds - (t2).seconds; \
293 (dst).seconds--; \
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/
H A Dutee_defines.h272 (((t1).seconds == (t2).seconds) ? \
274 ((t1).seconds < (t2).seconds))
277 (((t1).seconds == (t2).seconds) ? \
279 ((t1).seconds <= (t2).seconds))
282 (dst).seconds = (t1).seconds + (t2).seconds; \
285 (dst).seconds++; \
291 (dst).seconds = (t1).seconds - (t2).seconds; \
293 (dst).seconds--; \
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/host_include/
H A Dutee_defines.h272 (((t1).seconds == (t2).seconds) ? \
274 ((t1).seconds < (t2).seconds))
277 (((t1).seconds == (t2).seconds) ? \
279 ((t1).seconds <= (t2).seconds))
282 (dst).seconds = (t1).seconds + (t2).seconds; \
285 (dst).seconds++; \
291 (dst).seconds = (t1).seconds - (t2).seconds; \
293 (dst).seconds--; \
/OK3568_Linux_fs/kernel/drivers/char/
H A Dhangcheck-timer.c17 * duration in seconds. The hangcheck_margin parameter defines the
18 * margin of error, in seconds. The defaults are 60 seconds for the
19 * timer and 180 seconds for the margin of error. IOW, a timer is set
20 * for 60 seconds. When the timer fires, the callback checks the
22 * allotted time and margin (here 60 + 180, or 240 seconds), the machine
43 #define DEFAULT_IOFENCE_MARGIN 60 /* Default fudge factor, in seconds */
44 #define DEFAULT_IOFENCE_TICK 180 /* Default timer timeout, in seconds */
55 …gin, "If the hangcheck timer has been delayed more than hangcheck_margin seconds, the driver will …
155 printk("Hangcheck: starting hangcheck timer %s (tick is %d seconds, margin is %d seconds).\n", in hangcheck_init()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/doc/gprof.html/
H A DFlat-Profile.html85 Each sample counts as 0.01 seconds.
87 time seconds seconds calls ms/call ms/call name
115 reliable. In this example, each sample counted as 0.01 seconds,
118 seconds, as indicated by the &lsquo;<samp>cumulative seconds</samp>&rsquo; field. Since
119 each sample counted for 0.01 seconds, this means only six samples
122 &lsquo;<samp>self seconds</samp>&rsquo; field. Each of the other four samples
128 the &lsquo;<samp>self seconds</samp>&rsquo; field for
134 &lsquo;<samp>self seconds</samp>&rsquo; field is &lsquo;<samp>0.00</samp>&rsquo;) didn&rsquo;t appe…
150 <dt><code>cumulative seconds</code></dt>
151 <dd><p>This is the cumulative total number of seconds the computer spent
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/doc/gprof.html/
H A DFlat-Profile.html85 Each sample counts as 0.01 seconds.
87 time seconds seconds calls ms/call ms/call name
115 reliable. In this example, each sample counted as 0.01 seconds,
118 seconds, as indicated by the &lsquo;<samp>cumulative seconds</samp>&rsquo; field. Since
119 each sample counted for 0.01 seconds, this means only six samples
122 &lsquo;<samp>self seconds</samp>&rsquo; field. Each of the other four samples
128 the &lsquo;<samp>self seconds</samp>&rsquo; field for
134 &lsquo;<samp>self seconds</samp>&rsquo; field is &lsquo;<samp>0.00</samp>&rsquo;) didn&rsquo;t appe…
150 <dt><code>cumulative seconds</code></dt>
151 <dd><p>This is the cumulative total number of seconds the computer spent
[all …]
/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/watchdog/
H A Dpinballwidget.cpp15 int seconds =0; member in PinBallWidgetPrivate
80 m_d->seconds = maxSeconds; in startDownTime()
81 m_d->tips = QString("Less than %1 seconds reboot").arg(m_d->seconds); in startDownTime()
87 m_d->seconds --; in startDownTime()
88 m_d->tips =QString("Less than %1 seconds reboot").arg(m_d->seconds); in startDownTime()
90 if(m_d->seconds == 0) in startDownTime()
/OK3568_Linux_fs/external/security/rk_tee_user/v1/ta/rk_test/
H A Drktest_storage_speed.c46 use_time = (time2.seconds - time1.seconds) * 1000 + time2.millis - time1.millis; in handle_storage_speed()
64 use_time = (time2.seconds - time1.seconds) * 1000 + time2.millis - time1.millis; in handle_storage_speed()
82 use_time = (time2.seconds - time1.seconds) * 1000 + time2.millis - time1.millis; in handle_storage_speed()
90 use_time = (time2.seconds - time1.seconds) * 1000 + time2.millis - time1.millis; in handle_storage_speed()
/OK3568_Linux_fs/external/security/rk_tee_user/v2/ta/rk_test/
H A Drktest_storage_speed.c53 use_time = (time2.seconds - time1.seconds) * 1000 + time2.millis - time1.millis; in handle_storage_speed()
71 use_time = (time2.seconds - time1.seconds) * 1000 + time2.millis - time1.millis; in handle_storage_speed()
89 use_time = (time2.seconds - time1.seconds) * 1000 + time2.millis - time1.millis; in handle_storage_speed()
97 use_time = (time2.seconds - time1.seconds) * 1000 + time2.millis - time1.millis; in handle_storage_speed()
/OK3568_Linux_fs/kernel/drivers/net/ethernet/microchip/
H A Dlan743x_ptp.c25 u32 seconds, u32 nano_seconds,
66 u32 seconds, u32 nano_seconds, in lan743x_ptp_tx_ts_enqueue_ts() argument
73 ptp->tx_ts_seconds_queue[ptp->tx_ts_queue_size] = seconds; in lan743x_ptp_tx_ts_enqueue_ts()
88 u32 header, nseconds, seconds; in lan743x_ptp_tx_ts_complete() local
106 seconds = ptp->tx_ts_seconds_queue[i]; in lan743x_ptp_tx_ts_complete()
110 tstamps.hwtstamp = ktime_set(seconds, nseconds); in lan743x_ptp_tx_ts_complete()
180 u32 *seconds, u32 *nano_seconds,
408 u32 seconds = 0; in lan743x_ptpci_gettime64() local
410 lan743x_ptp_clock_get(adapter, &seconds, &nano_seconds, NULL); in lan743x_ptpci_gettime64()
411 ts->tv_sec = seconds; in lan743x_ptpci_gettime64()
[all …]
/OK3568_Linux_fs/kernel/tools/testing/selftests/firmware/
H A Dsettings2 # 2 seconds). There are 3 test configs, each done with and without firmware
4 # normal execution should be 2 * 3 * 2 * 2 * 5 = 120 seconds for those alone.
5 # Additionally, fw_fallback may take 5 seconds for internal timeouts in each
6 # of the 3 configs, so at least another 15 seconds are needed. Add another
7 # 10 seconds for each testing config: 120 + 15 + 30
/OK3568_Linux_fs/buildroot/dl/unixbench/git/UnixBench/src/
H A Dfstime.c43 #define SECONDS 10 macro
104 /* The number of seconds to run for. */
105 int seconds = SECONDS; local
128 seconds = atoi(argv[++i]);
137 … fprintf(stderr, "Usage: fstime [-c|-r|-w] [-b <bufsize>] [-m <max_blocks>] [-t <seconds>]\n");
141 … fprintf(stderr, "Usage: fstime [-c|-r|-w] [-b <bufsize>] [-m <max_blocks>] [-t <seconds>]\n");
156 if (seconds < 1 || seconds > 3600) {
157 fprintf(stderr, "fstime: time must be in range %d-%d seconds\n",
211 * a few seconds of write and read to prime the pump.
222 status = w_test(seconds);
[all …]
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/input/
H A Dti,palmas-pwrbutton.txt16 - ti,palmas-long-press-seconds: Duration in seconds which the power
20 - ti,palmas-pwron-debounce-milli-seconds: Duration in milliseconds
32 ti,palmas-long-press-seconds = <12>;
33 ti,palmas-pwron-debounce-milli-seconds = <15>;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/
H A Dhttp_timeout.cpp14 return Seconds(failedRequests <= 3 ? 1 : 1u << std::min(failedRequests - 3, 31u)); in errorRetryTimeout()
18 return Seconds(1u << std::min(failedRequests - 1, 31u)); in errorRetryTimeout()
24 return Seconds(util::DEFAULT_RATE_LIMIT_TIMEOUT); in errorRetryTimeout()
34 return Seconds(1u << std::min(expiredRequests - 1, 31u)); in expirationTimeout()
36 return std::max(Seconds::zero(), *expires - util::now()); in expirationTimeout()
/OK3568_Linux_fs/debian/overlay-debug/rockchip-test/audio/
H A Daudio_functions_test.sh42 seconds=2
56 echo "play_device=$play_device, ch="$ch", rate="$fs", bit=$bits, $seconds sec, gain=$gain"
57 sox -b $bits -r $fs -c $ch -n -t alsa $play_device synth $seconds sine 440 gain $gain
73 seconds=3
89 echo "capt_device: $capt_device capture $DUMP_FILE $seconds sec"
90 arecord -D $capt_device -r $fs -f $bits -c $ch -d $seconds $PATH_CAPTURE/$DUMP_FILE

12345678910>>...119