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

1 2 3 4

  /frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
TunerService.java 57 private final HashMap<String, List<Tunable>> mTunableLookup = new HashMap<>();
80 public void addTunable(Tunable tunable, String... keys) {
82 addTunable(tunable, key);
86 private void addTunable(Tunable tunable, String key) {
88 mTunableLookup.put(key, new ArrayList<Tunable>());
90 mTunableLookup.get(key).add(tunable);
98 tunable.onTuningChanged(key, value);
101 public void removeTunable(Tunable tunable)
    [all...]
StatusBarSwitch.java 28 import com.android.systemui.tuner.TunerService.Tunable;
32 public class StatusBarSwitch extends SwitchPreference implements Tunable {
TunerFragment.java 43 import com.android.systemui.tuner.TunerService.Tunable;
130 tunerService.addTunable((Tunable) pref, StatusBarIconController.ICON_BLACKLIST);
142 if (pref instanceof Tunable) {
143 tunerService.removeTunable((Tunable) pref);
  /external/selinux/secilc/docs/
cil_conditional_statements.xml 140 <sect2 id="tunable">
141 <title>tunable</title>
145 <programlisting><![CDATA[(tunable tunable_id true|false)]]></programlisting>
154 <para><literal>tunable</literal></para>
157 <para>The <literal><link linkend="tunable">tunable</link></literal> keyword.</para>
165 <para>The <literal><link linkend="tunable">tunable</link></literal> identifier.</para>
173 <para>The initial state of the <literal><link linkend="tunable">tunable</link></literal>.</para
    [all...]
  /external/chromium-trace/trace-viewer/tracing/tracing/extras/rail/
rail_score.html 29 // where the weights are tunable. The weights are recommended to be higher
32 // opportunity to customize the tunable parameters based on IR type,
36 // combination of the score and tunable parameters, and is open to
response_interaction_record.html 45 // PAIN_POWER is a tunable parameter that affects the shape of this
  /external/selinux/checkpolicy/
policy_scan.l 99 TUNABLE |
100 tunable { return(TUNABLE); }
  /external/selinux/secilc/test/
integration.cil 112 (tunable allow_execfile true)
113 (tunable allow_userexec false)
211 (tunable tun1 true)
policy.cil 168 (tunable allow_execfile true)
169 (tunable allow_userexec false)
306 (tunable tun1 true)
  /device/asus/fugu/overlay/frameworks/base/core/res/res/values/
config.xml 45 <!-- Device configuration adjusting the minfree tunable in the lowmemorykiller in the
  /external/selinux/libsepol/include/sepol/policydb/
conditional.h 91 /* a tunable conditional, calculated and used at expansion */
  /external/kernel-headers/original/uapi/linux/
fs.h 48 /* And dynamically-tunable limits and defaults: */
52 unsigned long max_files; /* tunable */
telephony.h 161 * The wink duration is tunable with this ioctl. The default wink duration
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
QSTileHost.java 53 import com.android.systemui.tuner.TunerService.Tunable;
63 public class QSTileHost implements QSTile.Host, Tunable {
StatusBarIconController.java 46 import com.android.systemui.tuner.TunerService.Tunable;
56 public class StatusBarIconController implements Tunable {
  /docs/source.android.com/src/devices/tech/ram/
low-ram.jd 131 <p>Support for a new kernel tunable is added in the android-3.4 kernel branch as
133 tunable"). Cherry-picking this patch to a device's kernel will allow
138 <p><code> &lt;!-- Device configuration setting the /proc/sys/vm/extra_free_kbytes tunable in the kernel (if it exists). A high value will increase the amount of memory that the kernel tries to keep free, reducing allocation time and causing the lowmemorykiller to kill earlier. A low value allows more memory to be used by processes but may cause more allocations to block waiting on disk I/O or lowmemorykiller. Overrides the default value chosen by ActivityManager based on screen size. 0 prevents keeping any extra memory over what the kernel keeps by default. -1 keeps the default. --&gt;<br />
142 <p> &lt;!-- Device configuration adjusting the /proc/sys/vm/extra_free_kbytes tunable in the kernel (if it exists). 0 uses the default value chosen by ActivityManager. A positive value will increase the amount of memory that the kernel tries to keep free, reducing allocation time and causing the lowmemorykiller to kill earlier. A negative value allows more memory to be used by processes but may cause more allocations to block waiting on disk I/O or lowmemorykiller. Directly added to the default value chosen by ActivityManager based on screen size. --&gt;<br />
156 <p> <code>&lt;!-- Device configuration setting the minfree tunable in the lowmemorykiller in the kernel. A high value will cause the lowmemorykiller to fire earlier, keeping more memory in the file cache and preventing I/O thrashing, but allowing fewer processes to stay in memory. A low value will keep more processes in memory but may cause thrashing if set too low. Overrides the default value chosen by ActivityManager based on screen size and total memory for the largest lowmemorykiller bucket, and scaled proportionally to the smaller buckets. -1 keeps the default. --&gt;<br />
158 <p> <code>&lt;!-- Device configuration adjusting the minfree tunable in the lowmemorykiller in the kernel. A high value will cause the lowmemorykiller to fire earlier, keeping more memory in the file cache and preventing I/O thrashing, but allowing fewer processes to stay in memory. A low value will keep more processes in memory but may cause thrashing if set too low. Directly added to the default value chosen by ActivityManager based on screen size and total memory for the largest lowmemorykiller bucket, and scaled proportionally to the smaller buckets. 0 keeps the default. --&gt;<br />
  /external/mesa3d/src/mesa/main/
config.h 28 * Tunable configuration parameters.
  /external/nist-sip/java/gov/nist/javax/sip/parser/
Pipeline.java 109 // TODO make this a tunable number. For now 4 seconds
  /external/selinux/libselinux/man/man8/
selinux.8 62 compile-time tunable options and a set of runtime policy booleans.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
malloc.h 134 /* General SVID/XPG interface to tunable parameters. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
malloc.h 143 /* General SVID/XPG interface to tunable parameters. */
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
SignalClusterView.java 42 import com.android.systemui.tuner.TunerService.Tunable;
51 SecurityController.SecurityControllerCallback, Tunable {
  /libcore/luni/src/main/java/java/util/concurrent/
package-info.java 54 * provide tunable, flexible thread pools.
174 * concurrent reads as well as a tunable number of concurrent
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
fs.h 34 /* And dynamically-tunable limits and defaults: */
38 int max_files; /* tunable */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
fs.h 45 /* And dynamically-tunable limits and defaults: */
49 unsigned long max_files; /* tunable */

Completed in 124 milliseconds

1 2 3 4