summaryrefslogtreecommitdiffstats
path: root/res/values/buffer_sizes.xml
blob: 6d3537c6df1993a4bdf4005466aa5eb9e4e1e32d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?xml version="1.0" encoding="utf-8"?>

<resources>

<!-- Buffer sizes are in kb -->
<string name="default_buffer_size">16384</string>

<!-- Keep the following two arrays in sync or you will regret it! -->
<string-array name="buffer_size_names">
    <item>@string/four_thousand_kb</item>
    <item>@string/eight_thousand_kb</item>
    <item>@string/sixteen_thousand_kb</item>
    <item>@string/thirtytwo_thousand_kb</item>
    <item>@string/sixtyfive_thousand_kb</item>
  </string-array>

<string-array name="buffer_size_values">
    <item>4096</item>
    <item>8192</item>
    <item>@string/default_buffer_size</item>
    <item>32768</item>
    <item>65536</item>
</string-array>

<!-- Sizes are in MB. -->
<string name="default_long_trace_size">10240</string>

<!-- Keep the following two arrays in sync or you will regret it! -->
<string-array name="long_trace_size_names">
    <item>@string/two_hundred_mb</item>
    <item>@string/one_gb</item>
    <item>@string/five_gb</item>
    <item>@string/ten_gb</item>
    <item>@string/twenty_gb</item>
</string-array>

<string-array name="long_trace_size_values">
    <item>200</item>
    <item>1024</item>
    <item>5120</item>
    <item>@string/default_long_trace_size</item>
    <item>20480</item>
</string-array>

<!-- Durations are in minutes. -->
<string name="default_long_trace_duration">30</string>

<!-- Keep the following two arrays in sync or you will regret it! -->
<string-array name="long_trace_duration_names">
    <item>@string/ten_minutes</item>
    <item>@string/thirty_minutes</item>
    <item>@string/one_hour</item>
    <item>@string/eight_hours</item>
    <item>@string/twelve_hours</item>
    <item>@string/twentyfour_hours</item>
</string-array>

<string-array name="long_trace_duration_values">
    <item>10</item>
    <item>@string/default_long_trace_duration</item>
    <item>60</item>
    <item>480</item>
    <item>720</item>
    <item>1440</item>
</string-array>
</resources>