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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
attr-target.c 5 int __attribute__((target("tune=sandybridge"))) baz() { return 4; } //expected-warning {{Ignoring unsupported 'tune=' in the target attribute string}}
  /device/google/dragon/sepolicy/
thermal_gov.te 1 # permissions for /system/bin/tune-thermal-gov.sh
  /external/ltp/testcases/kernel/mem/tunable/
min_free_kbytes.c 4 * The tune is used to control free memory, and system always
7 * Since the tune is not too large or too little, which will
118 unsigned long tune, memfree, memtotal; local
133 tune = memfree / 20;
134 if (tune > (memtotal / 50))
135 tune = memtotal / 50;
137 set_sys_tune("min_free_kbytes", tune, 1);
217 unsigned long tune; local
222 tune = get_sys_tune("min_free_kbytes");
224 if (memfree < tune) {
    [all...]
  /packages/apps/TV/tests/common/src/com/android/tv/input/
TunerHelper.java 28 * A class to manage fake tuners for the tune and the recording.
60 public boolean tune(@Nullable Uri channelUri, boolean forRecording) { method in class:TunerHelper
86 * Releases the tuner which was being used for the tune.
98 // A tuner which is used both for the tune and recording is the candidate.
101 // Remove the tuner which is used only for the tune.
102 if (DEBUG) Log.d(TAG, "Removed tuner for tune");
127 // A tuner which is used both for the tune and recording is the candidate.
  /packages/apps/TV/tests/unit/src/com/android/tv/
BaseMainActivityTestCase.java 70 * Tune to {@code channel}.
72 * @param channel the channel to tune to.
96 * Tune to the channel with {@code name}.
106 * Tune to channel.
113 * Update the channel state to {@code data} then tune to that channel.
116 * @param channel the channel to tune to
  /hardware/interfaces/broadcastradio/1.0/
ITuner.hal 25 * Automatically cancels pending scan, step or tune.
47 * Automatically cancels pending scan, step or tune.
63 * Automatically cancels pending scan, step or tune.
77 * Tune to specified channel.
79 * Automatically cancels pending scan, step or tune.
83 * @param channel Channel to tune to. A frequency in kHz for AM/FM/HD Radio
92 tune(uint32_t channel, uint32_t subChannel) generates(Result result);
95 * Cancel a scan, step or tune operation.
96 * Shall be called only while a scan, step or tune operation is pending.
ITunerCallback.hal 40 * following a step(), scan() or tune() command.
41 * @param result OK if tune succeeded or TIMEOUT in case of time out.
  /hardware/libhardware/modules/radio/
radio_hal_tool.c 72 void tune(radio_hw_device_t *device, int band_number) { function
107 // Stub tuner implementation will regard this magic channel as a valid channel to tune.
108 ret = hal_tuner->tune(hal_tuner, 87916, 0);
110 printf("Err: tune returned: %d\n", ret);
113 // In the stub implementation it takes ~100ms to tune to the channel and the
190 // Tune. Takes a tuner number (see bands obtainaed by list_properties).
220 tune(dev, band_number);
224 printf("Please pass -t <band_number> to tune to a valid station to get metadata.");
  /hardware/libhardware/include/hardware/
radio.h 71 * - event RADIO_EVENT_TUNED: tune locked on new station/frequency following scan(),
72 * step(), tune() or auto AF switching. The event status is 0 (no error) if in tune,
98 * Automatically cancels pending scan, step or tune.
133 * Automatically cancels pending scan, step or tune.
157 * Automatically cancels pending scan, step or tune.
167 * Tune to specified frequency.
171 * - channel: channel to tune to. A frequency in kHz for AM/FM/HD Radio bands.
175 * 0 if tune successfully started
180 * Automatically cancels pending scan, step or tune
186 int (*tune)(const struct radio_tuner *tuner, member in struct:radio_tuner
    [all...]
  /external/llvm/test/DebugInfo/Generic/
2010-04-19-FramePtr.ll 1 ; RUN: %llc_dwarf -debugger-tune=lldb -asm-verbose -O1 -o - < %s | FileCheck %s
2 ; RUN: %llc_dwarf -debugger-tune=gdb -asm-verbose -O1 -o - < %s | FileCheck %s --check-prefix=DISABLE
3 ; RUN: %llc_dwarf -disable-fp-elim -debugger-tune=lldb -asm-verbose -O1 -o - < %s | FileCheck %s --check-prefix=DISABLE
  /packages/apps/TV/jni/
DvbManager.h 70 // Flag for pending tune request. Used for canceling the current tune operation.
81 int tune(JNIEnv *env, jobject thiz,
  /external/llvm/test/DebugInfo/X86/
debugger-tune.ll 13 ; RUN: llc -mtriple=x86_64-scei-ps4 -filetype=obj -debugger-tune=gdb < %s | llvm-readobj -sections - | FileCheck --check-prefix=GDB %s
14 ; RUN: llc -mtriple=x86_64-pc-linux -filetype=obj -debugger-tune=lldb < %s | llvm-readobj -sections - | FileCheck --check-prefix=LLDB %s
15 ; RUN: llc -mtriple=x86_64-apple-darwin12 -filetype=obj -debugger-tune=sce < %s | llvm-readobj -sections - | FileCheck --check-prefix=SCE %s
37 !1 = !DIFile(filename: "debugger-tune.cpp", directory: "/home/probinson/projects/scratch")
  /external/skia/src/core/
SkColorSpaceXform_A2B.h 43 SkArenaAlloc fAlloc{128}; // TODO: tune?
  /device/google/muskie/
init-common.rc 2 # boot time fs tune
12 # end boot time fs tune
  /device/google/taimen/
init-taimen.rc 2 # boot time fs tune
17 # end boot time fs tune
  /frameworks/base/core/java/android/hardware/radio/
TunerAdapter.java 145 public int tune(int channel, int subChannel) { method in class:TunerAdapter
147 mTuner.tune(ProgramSelector.createAmFmSelector(mBand, channel, subChannel));
149 Log.e(TAG, "Can't tune", e);
152 Log.e(TAG, "Can't tune", e);
162 public void tune(@NonNull ProgramSelector selector) { method in class:TunerAdapter
164 mTuner.tune(selector);
  /frameworks/base/media/java/android/media/tv/
TvRecordingClient.java 70 * Tunes to a given channel for TV program recording. The first tune request will create a new
79 * {@link RecordingCallback#onTuned(Uri)} if the tune request was fulfilled, or
86 public void tune(String inputId, Uri channelUri) { method in class:TvRecordingClient
87 tune(inputId, channelUri, null); method
91 * Tunes to a given channel for TV program recording. The first tune request will create a new
101 * {@link RecordingCallback#onTuned(Uri)} if the tune request was fulfilled, or
106 * @param params Domain-specific data for this tune request. Keys <em>must</em> be a scoped
111 public void tune(String inputId, Uri channelUri, Bundle params) { method in class:TvRecordingClient
112 if (DEBUG) Log.d(TAG, "tune(" + channelUri + ")");
117 throw new IllegalStateException("tune failed - recording already started")
    [all...]
  /packages/apps/TV/tests/func/src/com/android/tv/tests/ui/
LiveChannelsTestCase.java 85 * <p>Usually this will tune to the given channel.
94 * Update the channel state to {@code data} then tune to that channel.
97 * @param channel the channel to tune to
  /packages/apps/Car/Radio/src/com/android/car/radio/
ManualTunerFragment.java 29 * A fragment that allows the user to manually input a radio station to tune to.
41 * Interface for a class that will notified on completion of a manual tune.
  /packages/apps/TV/src/com/android/tv/tuner/tvinput/
TunerRecordingSession.java 50 Log.d(TAG, "Requesting recording session tune: " + channelUri);
52 mSessionWorker.tune(channelUri);
  /device/google/marlin/sepolicy/
perfd.te 23 # tune the power/cpu settings.
  /external/mesa3d/include/HaikuGL/
GLRenderer.h 66 ulong fOptions; // Keep that tune in memory
  /external/mockito/src/test/java/org/mockitousage/annotation/
InjectionOfInlinedMockDeclarationTest.java 61 public boolean tune() { return true; } method in class:InjectionOfInlinedMockDeclarationTest.Receiver
  /frameworks/opt/photoviewer/src/com/android/ex/photo/
ActionBarInterface.java 16 * this to tune auto-hiding behavior for the action bar or pause/resume video playback,
  /packages/apps/TV/tests/jank/src/com/android/tv/tests/jank/
Utils.java 29 * Presses channel number to tune to {@code channel}.

Completed in 2302 milliseconds

1 2 3 4 5 6 7 8 91011>>