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

1 2

  /external/tensorflow/tensorflow/contrib/learn/python/learn/
learn_runner.py 221 def tune(experiment_fn, tuner): function
222 """Tune an experiment with hyper-parameters.
241 learn_runner.tune(experiment_fn=_create_my_experiment, tuner)
  /packages/apps/TV/tests/tunerscripts/
usbtuner-test.sh 34 # 2) When started, TV app should tune to one of the channels provided by the USB input
49 function tune { function
58 sleep 10 # Tune and watch the channel for a while
138 tune $2
  /external/mockito/src/test/java/org/mockitousage/annotation/
InjectionOfInlinedMockDeclarationTest.java 61 public boolean tune() { return true; } method in class:InjectionOfInlinedMockDeclarationTest.Receiver
  /external/ltp/testcases/kernel/mem/tunable/
min_free_kbytes.c 18 * The tune is used to control free memory, and system always
21 * Since the tune is not too large or too little, which will
89 unsigned long tune, memfree, memtotal; local
104 tune = memfree / 20;
105 if (tune > (memtotal / 50))
106 tune = memtotal / 50;
108 set_sys_tune("min_free_kbytes", tune, 1);
187 unsigned long tune; local
192 tune = get_sys_tune("min_free_kbytes");
194 if (memfree < tune) {
    [all...]
  /hardware/interfaces/broadcastradio/1.0/default/
Tuner.cpp 151 Return<Result> Tuner::tune(uint32_t channel, uint32_t subChannel) { function in class:android::hardware::broadcastradio::V1_0::implementation::Tuner
155 int rc = mHalTuner->tune(mHalTuner, channel, subChannel);
  /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...]
  /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.");
  /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...]
ITvInputSessionWrapper.java 148 mTvInputRecordingSessionImpl.tune((Uri) args.arg1, (Bundle) args.arg2);
150 mTvInputSessionImpl.tune((Uri) args.arg1, (Bundle) args.arg2);
236 throw new RuntimeException("Too much time to handle tune request. (" + durationMs
238 + "Consider handling the tune request in a separate thread.");
277 public void tune(Uri channelUri, Bundle params) { method in class:ITvInputSessionWrapper
278 // Clear the pending tune requests.
TvView.java 63 * <p>Once the application supplies the URI for a specific TV channel to {@link #tune}
294 public void tune(@NonNull String inputId, Uri channelUri) { method in class:TvView
295 tune(inputId, channelUri, null); method
304 * @param params Domain-specific data for this tune request. Keys <em>must</em> be a scoped
308 public void tune(String inputId, Uri channelUri, Bundle params) { method in class:TvView
309 if (DEBUG) Log.d(TAG, "tune(" + channelUri + ")");
320 mSession.tune(channelUri, params);
324 // the new ones and tune later in onSessionCreated(). It is not necessary to create
348 * <p>This method is primarily used to un-tune the current TvView.
    [all...]
  /hardware/interfaces/broadcastradio/1.1/default/
Tuner.cpp 58 milliseconds tune = 150ms; member in struct:android::hardware::broadcastradio::V1_1::implementation::__anon48007
272 Return<Result> Tuner::tune(uint32_t channel, uint32_t subChannel) { function in class:android::hardware::broadcastradio::V1_1::implementation::Tuner
314 mThread.schedule(task, gDefaultDelay.tune);
  /hardware/interfaces/broadcastradio/2.0/default/
TunerSession.cpp 47 static constexpr auto tune = 150ms; member in namespace:android::hardware::broadcastradio::V2_0::implementation::delay
95 Return<Result> TunerSession::tune(const ProgramSelector& sel) { function in class:android::hardware::broadcastradio::V2_0::implementation::TunerSession
117 mThread.schedule(task, delay::tune);
307 ALOGW("tune operation in process");
  /packages/apps/TV/tests/common/src/com/android/tv/input/
TunerHelper.java 26 /** A class to manage fake tuners for the tune and the recording. */
55 public boolean tune(@Nullable Uri channelUri, boolean forRecording) { method in class:TunerHelper
80 /** Releases the tuner which was being used for the tune. */
91 // A tuner which is used both for the tune and recording is the candidate.
94 // Remove the tuner which is used only for the tune.
95 if (DEBUG) Log.d(TAG, "Removed tuner for tune");
118 // A tuner which is used both for the tune and recording is the candidate.
  /frameworks/base/core/java/android/hardware/radio/
RadioTuner.java 163 * Tune to a specific frequency.
165 * onProgramInfoChanged() will be called when tune completes or
167 * @param channel the specific channel or frequency to tune to.
168 * @param subChannel the specific sub-channel to tune to. N/A if the selected configuration
180 * @deprecated Use {@link tune(ProgramSelector)} instead.
183 public abstract int tune(int channel, int subChannel); method in class:RadioTuner
186 * Tune to a program.
189 * when tune completes or onError() when cancelled or on timeout.
193 public abstract void tune(@NonNull ProgramSelector selector); method in class:RadioTuner
196 * Cancel a pending scan or tune operation
    [all...]
TunerAdapter.java 155 public int tune(int channel, int subChannel) { method in class:TunerAdapter
157 mTuner.tune(ProgramSelector.createAmFmSelector(mBand, channel, subChannel));
159 Log.e(TAG, "Can't tune", e);
162 Log.e(TAG, "Can't tune", e);
172 public void tune(@NonNull ProgramSelector selector) { method in class:TunerAdapter
174 mTuner.tune(selector);
  /frameworks/base/services/core/java/com/android/server/broadcastradio/hal2/
TunerSession.java 133 public void tune(ProgramSelector selector) throws RemoteException { method in class:TunerSession
136 int halResult = mHwSession.tune(Convert.programSelectorToHal(selector));
137 Convert.throwOnError("tune", halResult);
  /packages/apps/TV/jni/
DvbManager.cpp 85 int DvbManager::tune(JNIEnv *env, jobject thiz, function in class:DvbManager
208 // tune request. And the frontend setting could be successful.
  /packages/apps/TV/src/com/android/tv/
InputSessionManager.java 282 public void tune(String inputId, Uri channelUri) { method in class:InputSessionManager.TvViewSession
284 Log.d(TAG, "warm-up tune: {input=" + inputId + ", channelUri=" + channelUri + "}");
290 mTvView.tune(inputId, channelUri);
295 public void tune(Channel channel, Bundle params, OnTuneListener listener) { method in class:InputSessionManager.TvViewSession
299 "tune: {session="
325 Log.d(TAG, "No more tuners to tune for input: " + input);
335 mTvView.tune(mInputId, mChannelUri, params);
441 public void tune(String inputId, Uri channelUri) { method in class:InputSessionManager.RecordingSession
478 mClient.tune(inputId, channelUri);
  /frameworks/base/services/core/java/com/android/server/broadcastradio/hal1/
Tuner.java 191 public void tune(ProgramSelector selector) { method in class:Tuner
  /hardware/interfaces/broadcastradio/2.0/vts/functional/
VtsHalBroadcastradioV2_0TargetTest.cpp 65 static constexpr auto tune = 30s; member in namespace:android::hardware::broadcastradio::V2_0::vts::timeout
412 * - after a successful tune call, onCurrentProgramInfoChanged callback is
422 /* TODO(b/69958777): there is a race condition between tune() and onCurrentProgramInfoChanged
437 auto result = mSession->tune(sel);
447 EXPECT_TIMEOUT_CALL_WAIT(*mCallback, onCurrentProgramInfoChanged_, timeout::tune);
451 // it should tune exactly to what was requested
478 auto result = mSession->tune(sel);
492 * - tune fails with NOT_SUPPORTED when program selector is not initialized.
499 auto result = mSession->tune(sel);
508 * - the program info is changed within timeout::tune;
    [all...]
  /packages/apps/TV/tuner/src/com/android/tv/tuner/
TunerHal.java 218 * @param frequency a frequency of the channel to tune to
219 * @param modulation a modulation method of the channel to tune to
221 * use channelNumber instead of frequency for tune.
224 public synchronized boolean tune( method in class:TunerHal
298 * the tuner ready to accept another tune request.
323 * This method must be called after {@link TunerHal#tune} and before {@link TunerHal#stopTune}.
  /external/ltp/testcases/kernel/mem/lib/
mem.c 850 void set_sys_tune(char *sys_file, long tune, int check)
855 tst_res(TINFO, "set %s to %ld", sys_file, tune);
858 SAFE_FILE_PRINTF(path, "%ld", tune);
862 if (val != tune)
864 sys_file, val, tune);
871 long tune; local
874 SAFE_FILE_SCANF(path, "%ld", &tune);
876 return tune;
  /packages/apps/Car/Radio/src/com/android/car/radio/
RadioController.java 272 public void tune(ProgramSelector sel) { method in class:RadioController
276 mRadioManager.tune(sel);
278 Log.e(TAG, "Failed to tune", ex);
  /packages/apps/TV/src/com/android/tv/dvr/recorder/
RecordingTask.java 334 mRecordingSession.tune(inputId, mChannel.getUri());
  /toolchain/binutils/binutils-2.27/gas/config/
tc-i386.h 261 enum processor_type tune; member in struct:i386_tc_frag_data
266 the isa/tune settings at the time the .align was assembled. */
274 (FRAGP)->tc_frag_data.tune = cpu_arch_tune; \

Completed in 304 milliseconds

1 2